On Sun, Jun 14, 2015 at 10:50 PM, treck <[email protected]> wrote: > Thanks, it was problem with version of my Python. > I tried compile it using my Visual Studio 2012 and it failed so I used MinGW > to compile v8 but it failed too... i get such error (i replaced some parts > of paths with (...) ) : > $ make ia32.release -j8 > PYTHONPATH="/e/(...)/v8/tools/generate_shim_headers:/e/(...)/v8/build::/e/(...)/v8/build > /gyp/pylib:" \ > GYP_GENERATORS=make \ > build/gyp/gyp --generator-output="out" build/all.gyp \ > -Ibuild/standalone.gypi --depth=. \ > -Dv8_target_arch=ia32 \ > \ > \ > -S.ia32.release -Dv8_enable_backtrace=1 > -Darm_fpu=default > -Darm_float_abi=default > make[1]: Entering directory `/e/(...)/v8/out' > make[1]: *** No rule to make target `../tools\parser-shell.gyp', needed by > `Make > file.ia32.release'. Stop. > make[1]: Leaving directory `/e/(...)/v8/out' > make: *** [ia32.release] Error 2
You need VS 2013, V8 is a C++11 project. VS 2015 should work as well, I think, but MinGW is not supported. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
