Re: [v8-users] Build V8 on linux with GCC and system headers

2017-07-31 Thread Jakob Kummerow
On Mon, Jul 31, 2017 at 11:24 AM, Georgi Sotirov wrote: > Arg... Any way to disable turning of warnings to errors? >> > > Found it myself :-) > > make ia32.release GYPFLAGS='-Dclang=0 -Dwerror=' > > ...or simply: make ia32.release werror=no are these flags described

Re: [v8-users] Build V8 on linux with GCC and system headers

2017-07-31 Thread Georgi Sotirov
> > Arg... Any way to disable turning of warnings to errors? > Found it myself :-) make ia32.release GYPFLAGS='-Dclang=0 -Dwerror=' -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to

Re: [v8-users] Build V8 on linux with GCC and system headers

2017-07-31 Thread Georgi Sotirov
Arg... Any way to disable turning of warnings to errors? g++ '-DV8_GYP_BUILD' '-DCR_CLANG_REVISION=308728-3' '-DV8_TARGET_ARCH_IA32' '-DENABLE_GDB_JIT_INTERFACE' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-DV8_INTL_SUPPORT' '-DV8_USE_EXTERNAL_STARTUP_DATA'

Re: [v8-users] Build V8 on linux with GCC and system headers

2017-07-31 Thread Georgi Sotirov
> > To use the system compiler, try: > > $ make ia32.release GYPFLAGS=-Dclang=0 > > I don't know whether it will also use system headers though. > > Thanks! It works and build is in progress... are these flags described somewhere? > (Also note that the make/GYP-based build is deprecated. The

Re: [v8-users] Build V8 on linux with GCC and system headers

2017-07-31 Thread Jakob Kummerow
To use the system compiler, try: $ make ia32.release GYPFLAGS=-Dclang=0 I don't know whether it will also use system headers though. (Also note that the make/GYP-based build is deprecated. The new hotness is "gn"; see the wiki for instructions.

[v8-users] Build V8 on linux with GCC and system headers

2017-07-31 Thread Georgi Sotirov
Is there a way to build V8 natively on linux with system's compiler (GCC), library and headers? How to make the build use GCC, system headers from /usr/include, instead of /usr/src/v8/build/linux/debian_jessie_i386-sysroot/ usr/? $ time make ia32.release PYTHONPATH=