Re: [v8-users] Error graph-builder-tester.h:172:56: error: no matching function for call to 'v8::internal::compiler::SimplifiedOperatorBuilder::ChangeFloat64ToTagged()' when trying to build V8 with GC

2017-08-06 Thread Georgi Sotirov
> > GCC 4.8 is what ships in Ubuntu Trusty, which is still our main > development platform. Usually ensuring that older toolchains are still > supported is more difficult (and hence more important) than supporting > newer toolchains. > Most people build with the bundled clang; GCC support is

Re: [v8-users] Error graph-builder-tester.h:172:56: error: no matching function for call to 'v8::internal::compiler::SimplifiedOperatorBuilder::ChangeFloat64ToTagged()' when trying to build V8 with GC

2017-08-02 Thread Georgi Sotirov
> Feel free to delete the offending function > (in test/cctest/compiler/graph-builder-tester.h:171-173), it doesn't seem > to be used (which is presumably why clang doesn't complain here). > Sure, I did it and build continues, but isn't this supposed to be fixed upstream? I though V8 is

[v8-users] Error graph-builder-tester.h:172:56: error: no matching function for call to 'v8::internal::compiler::SimplifiedOperatorBuilder::ChangeFloat64ToTagged()' when trying to build V8 with GCC 7.

2017-08-01 Thread Georgi Sotirov
Hello, I'm trying to build V8 with the following command: time make V=1 ia32.release GYPFLAGS='-Dclang=0 -Dwerror= -Dcomponent=shared_library' with GCC 7.1.0, but I'm stuck with the following error: g++ '-DV8_GYP_BUILD' '-DCR_CLANG_REVISION=308728-3' '-DV8_TARGET_ARCH_IA32'

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

[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=