[v8-users] Re: undefined reference to symbol pthread_condattr_setclock

2015-03-29 Thread roiber
I use Eclipse and found no easy way to specify the linker options. After all it works now. Am Sonntag, 29. März 2015 14:52:20 UTC+2 schrieb roiber: > > I compiled v8 on ubuntu 14.10 x64 with gcc. When i try to embed it in my > application the linker says pthread_condattr_setclock is missing. Thi

[v8-users] V8 build problem -- Unterminated quoted string ?

2015-03-29 Thread 'Isaac Gouy' via v8-users
Linux x86 3.13.0-48-generic #80-Ubuntu SMP Thu Mar 12 11:16:18 UTC 2015 i686 i686 i686 GNU/Linux gclient.py 0.7 ~$ cd /usr/local/src/v8 $ make native make[1]: Entering directory `/usr/local/src/v8/out' CXX(target) /usr/local/src/v8/out/native/obj.target/v8_base/src/accessors.o /usr/local/sr

Re: [v8-users] clang vs gcc

2015-03-29 Thread Ben Noordhuis
On Sun, Mar 29, 2015 at 2:46 PM, roiber wrote: > Hello, > > the default compiler for v8 is clang. Does that mean that i have to compile > my project where i embed v8 in also has to be compiled with clang? > > thanks > roiber Embedders don't have to build with clang. You will need at least g++ 4.

[v8-users] Re: undefined reference to symbol pthread_condattr_setclock

2015-03-29 Thread roiber
ok, it seems to be the order of the -l arguments to the linker. But now i get many defined references from v8 libraries. what is the required link oder for these? Am Sonntag, 29. März 2015 14:52:20 UTC+2 schrieb roiber: > > I compiled v8 on ubuntu 14.10 x64 with gcc. When i try to embed it in m

[v8-users] libplatform library not included ?

2015-03-29 Thread Maximilian Tschirschnitz
Hi Together, Sorry for my beginner question but gets the libplatform binary not atached to the libv8.so when i compile the whole thing from scratch (with components=shared_library) ? So if not which .o whiles do i need to give to g++ as parameters to compile my own code ? Thanks in advance !

[v8-users] undefined reference to symbol pthread_condattr_setclock

2015-03-29 Thread roiber
I compiled v8 on ubuntu 14.10 x64 with gcc. When i try to embed it in my application the linker says pthread_condattr_setclock is missing. This seems to be an optional feature of the POSIX pthread implementation. Could it be that it is missing in glibc? getconf GNU_LIBPTHREAD_VERSION gives NPTL

[v8-users] Re: clang vs gcc

2015-03-29 Thread roiber
the platform is is ubuntu 14.10 x64 Am Sonntag, 29. März 2015 14:46:24 UTC+2 schrieb roiber: > > Hello, > > the default compiler for v8 is clang. Does that mean that i have to > compile my project where i embed v8 in also has to be compiled with clang? > > thanks > roiber > -- -- v8-users mail

[v8-users] clang vs gcc

2015-03-29 Thread roiber
Hello, the default compiler for v8 is clang. Does that mean that i have to compile my project where i embed v8 in also has to be compiled with clang? thanks roiber -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message beca

Re: [v8-users] Re: Move V8 Context from one Isolate to another

2015-03-29 Thread Ivan Pizhenko
Thank you for the good idea. This approach with JSON sounds like what I need to accomplish my task. 2015-03-05 23:44 GMT+02:00 Flying Jester : > What exactly are you trying to accomplish with this? > > Copying a context would be a huge operation, if it's possible at all (I > don't think it is). >

Re: [v8-users] Problems building on ubuntu x86

2015-03-29 Thread Vedran Jukic
It is mandatory when you need to croscompile for ARM on 32 bit system where CXX and LINK are already pointing to the ARM compiler. So making the right 32bit clang executable for CXX(host) is mandatory - at least for those who lost faith not being able to compile for ARM on the 32 bit linux. On