Re: [v8-users] Install v8 ubuntu 14.04 make - error

2015-12-30 Thread Jakob Kummerow
I think this is the error you get when you try to run V8's bundled toolchain, which is built for x64, on a 32-bit system. So you have two options: (1) Build on an x64 machine. (2) Or disable usage of the bundled toolchain and fall back to your system toolchain: make GYPFLAGS="-Dclang=0" ... On

Re: [v8-users] Recreate solution files on Windows.

2015-12-30 Thread Jakob Kummerow
We have this note in the build instructions : If you switch between ia32 and x64 targets, you may have to manually delete > the generated .vcproj/.sln files before regenerating them. Patches are most welcome if you figure out how

Re: [v8-users] Recreate solution files on Windows.

2015-12-30 Thread Ben Noordhuis
On Tue, Dec 29, 2015 at 9:47 PM, Jane Chen wrote: > Once the .sln and .vcxproj files are generated through python, how is one > supposed to re-generate them with different gyp flags? When I run: > > python build/gyp_v8 -Dtarget_arch=x64 -Dv8_use_external_startup_data=0 > >