[v8-users] Re: building v8 fails on bytecode-peephole-table.cc because libv8_libbase.dylib not found

2016-10-17 Thread Zac Hansen
manually copying the file into /usr/local/lib works. Someone said it might have to do with the "install_name" being /usr/local/lib, but I don't really understand what this means. Also, it seems broken that copying a file into /usr/local is required for part of the build. --Zac On Monday,

[v8-users] building v8 fails on bytecode-peephole-table.cc because libv8_libbase.dylib not found

2016-10-17 Thread Zac Hansen
I've been successfully building v8 for quite a while and recently pulled a new version and am getting the following error on os x el capitan: make library=shared snapshot=off x64.debug -j2 ACTION src_v8_gyp_v8_base_target_run_mkpeephole

[v8-users] Re: V8 JSON Debugging Protocol, Breakpoints not being set

2016-10-17 Thread 'WIlliam Taylor' via v8-users
Hi Thanks for that, I already have something like that in my C++ application, basically I print incoming json from VSCode and also outgoing json from V8. When I

Re: [v8-users] Building v8

2016-10-17 Thread Travis Sharp
I had to manually create the .a file. I will see if I can dig up the script I used to generate it. On Mon, Oct 17, 2016 at 7:19 AM, Temuri Imnaishvili wrote: > I've tried that. > > What I need in order to compile v8js is libv8_libplatform.a alongside its > .so. > > I can

[v8-users] fetch v8 error,The remote end hung up unexpectedly

2016-10-17 Thread Zuheng Song
log`s here.how can i fix this system$fetch v8 Running: gclient root Running: gclient config --spec 'solutions = [ { "managed": False, "name": "v8", "url": "https://chromium.googlesource.com/v8/v8.git;, "custom_deps": {}, "deps_file": "DEPS", "safesync_url": "",

[v8-users] 18n support flags with gn build

2016-10-17 Thread Temuri Imnaishvili
Hi, There's this page: https://github.com/v8/v8/wiki/i18n%20support. What's the equivalent of use_system_icu=1 flag for gn builds? Thanks! -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed

[v8-users] Re: How do I build V8 with gn to be able to compile PHP extension v8js?

2016-10-17 Thread Temuri Imnaishvili
ok, I finally managed to do it. http://stackoverflow.com/questions/40091987/compiling-v8js-extension-after-v8-was-built-with-gn-build-as-opposed-to-gyp Hope this helps. On Saturday, 15 October 2016 13:58:18 UTC-4, Temuri Imnaishvili wrote: > > Hi all, > > I've successfully compiled V8 with gn

Re: [v8-users] Building v8

2016-10-17 Thread Temuri Imnaishvili
I've tried that. What I need in order to compile v8js is libv8_libplatform.a alongside its .so. I can still get everything I need if I compile off 5.1.x branch with gyp. Then I'd do this and all would be fine: echo -e "create /usr/lib/libv8_libplatform.a\naddlib

Re: [v8-users] How do I build V8 with gn to be able to compile PHP extension v8js?

2016-10-17 Thread Temuri Imnaishvili
I tried that. That does produce *.so files. However, v8js compilation also requires libv8_libplatform.a which was created from out/native/obj.target/tools/gyp/libv8_libplatform.a, which is no longer created during compilation. On Monday, 17 October 2016 05:02:54 UTC-4, Ben Noordhuis wrote: > >

Re: [v8-users] Building v8

2016-10-17 Thread Jochen Eisinger
support for compiling libplatform as a shared library landed a few days ago. If you compile with the gn flag is_component_build = true, you should get a shared library On Sat, Oct 15, 2016 at 10:06 PM Temuri Imnaishvili wrote: > Jochen, > > Facing the same problem. Can you

Re: [v8-users] How do I build V8 with gn to be able to compile PHP extension v8js?

2016-10-17 Thread Ben Noordhuis
On Sat, Oct 15, 2016 at 7:58 PM, Temuri Imnaishvili wrote: > Hi all, > > I've successfully compiled V8 with gn following instructions at > https://github.com/v8/v8/wiki/Building%20with%20GN (using tools/dev/v8gen.py > x64.release) > > However, I cannot find v8 .so files