Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Chong Kw
*MAKE INSTALL* [centos@ip-172-31-16-47 plv8-2.3.8]$ sudo make install cd build/v8 ; env CXXFLAGS=-fPIC CFLAGS=-fPIC ninja -C out.gn/x64.release d8 ninja: Entering directory `out.gn/x64.release' ninja: no work to do. mkdir -p upgrade ./generate_upgrade.sh 2.3.8 sed -e 's/^#undef

Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Chong Kw
But the regression test result is failed. Btw thanks for the information. > On 8 Aug 2019, at 6:56 PM, Jakob Kummerow wrote: > > All the "-Wsomething" in there are compiler/linker flags, i.e. they're part > of the command, not part of the output. There's no error there. > >> On Thu, Aug 8,

Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Jakob Kummerow
All the "-Wsomething" in there are compiler/linker flags, i.e. they're part of the command, not part of the output. There's no error there. On Thu, Aug 8, 2019 at 12:49 PM Chong Kw wrote: > Because of the word WMissing-Prototypes > > Sent from my iPhone > > On 8 Aug 2019, at 6:29 PM, Jakob

Re: [v8-users] jitless mode broken on ARM64

2019-08-08 Thread 'Santiago Aboy Solanes' via v8-users
Your error seems to be the same as https://bugs.chromium.org/p/v8/issues/detail?id=9588 We are looking into it. -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups

Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Chong Kw
Because of the word WMissing-Prototypes Sent from my iPhone > On 8 Aug 2019, at 6:29 PM, Jakob Kummerow wrote: > > I don't see an error. Why do you think there's an error? > >> On Thu, Aug 8, 2019 at 11:42 AM Chong Kw wrote: >> The line that i high lighted is an error ? >> >> >> >>> On

Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Jakob Kummerow
I don't see an error. Why do you think there's an error? On Thu, Aug 8, 2019 at 11:42 AM Chong Kw wrote: > The line that i high lighted is an error ? > > > > On Thursday, 8 August 2019 17:37:23 UTC+8, Jakob Kummerow wrote: >> >> I see no error in that screenshot, only compiler output. >> >> Pro

Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Chong Kw
The line that i high lighted is an error ? On Thursday, 8 August 2019 17:37:23 UTC+8, Jakob Kummerow wrote: > > I see no error in that screenshot, only compiler output. > > Pro tip: you can copy-paste from terminals, no need to take screenshots. > > All that said, chances are nobody on this

Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Chong Kw
[centos@ip-172-31-16-47 plv8-2.3.8]$ make mkdir -p build cd build; git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git Cloning into 'depot_tools'... remote: Sending approximately 25.82 MiB ... remote: Counting objects: 10, done remote: Finding sources: 100% (10/10)

Re: [v8-users] Installing plv8 in CENTOS

2019-08-08 Thread Jakob Kummerow
I see no error in that screenshot, only compiler output. Pro tip: you can copy-paste from terminals, no need to take screenshots. All that said, chances are nobody on this list knows what plv8 is or how it needs to be set up, so you'll probably find more help in that project's

Re: [v8-users] jitless mode broken on ARM64

2019-08-08 Thread Jakob Gruber
The CL you pointed to experimentally enables it for arm64 (so also iOS). I don't know what the cause is but yes, pointer compression should work in jitless mode. On Thu, Aug 8, 2019 at 8:13 AM Darin Dimitrov wrote: > Thanks for the quick tip. Shouldn't pointer compression be disabled by >

Re: [v8-users] jitless mode broken on ARM64

2019-08-08 Thread Darin Dimitrov
Thanks for the quick tip. Shouldn't pointer compression be disabled by default when target_os="ios"? Or is it just some issue that will be fixed and we will be able to use pointer compression in jitless mode in the future? On Thursday, August 8, 2019 at 7:49:16 AM UTC+3, Jakob Gruber wrote: >