V8 JavaScript Engine on Windows (MinGW) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:16:16Z http://stackoverflow.com/feeds/question/328718 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/328718/v8-javascript-engine-on-windows-mingw 1 V8 JavaScript Engine on Windows (MinGW) bhadra 2008-11-30T10:41:21Z 2009-07-19T17:55:51Z <p>The <a href="http://code.google.com/p/v8/wiki/BuildingOnWindows" rel="nofollow">build instructions of V8 JavaScript Engine</a> mention only Visual Studio 2005 and 2008. Has anybody been successful with <a href="http://mingw.org/" rel="nofollow">MinGW</a> on Windows XP/Vista?</p> http://stackoverflow.com/questions/328718/v8-javascript-engine-on-windows-mingw/641739#641739 0 Answer by kentaromiura for V8 JavaScript Engine on Windows (MinGW) kentaromiura 2009-03-13T07:15:17Z 2009-03-13T07:15:17Z <p>I've tried, but seems it automatically detect the WIN32 platform and tries to invoke the vc++ compiler, I tried to adding to the PATH the mingw-gcc compiler (I've not vc++ installed) and the build script correctly sees it, but doesn't compile out of the box.</p> <p>I suppose deleting the "WIN32 flag" will do the work, since for successfully compiling under mingw the compiler needs to thinks to be on unix enviroment, but then even if it compiles probably it will have some problems due to the different platform.</p> http://stackoverflow.com/questions/328718/v8-javascript-engine-on-windows-mingw/704516#704516 0 Answer by Stephan for V8 JavaScript Engine on Windows (MinGW) Stephan 2009-04-01T08:04:45Z 2009-04-01T08:04:45Z <p>V8 seems to use different parts of its code (especialy for the file system stuff) for different platforms. I made a build under Cygwin which puts out a beautiful linux lib, which runs on linux but doesn't on Win. I think partwise this will be the same with MinGW if you erase the WIN32 flag!</p> <p>At the moment I just can see 2 possibilities. One is simple: Use Visual Studio, it's free. The second is very hard: write a makefile :)</p> http://stackoverflow.com/questions/328718/v8-javascript-engine-on-windows-mingw/731758#731758 1 Answer by Ariya Hidayat for V8 JavaScript Engine on Windows (MinGW) Ariya Hidayat 2009-04-08T20:46:49Z 2009-04-08T20:46:49Z <p>There is a patch for MinGW support: <a href="http://codereview.chromium.org/18309" rel="nofollow">http://codereview.chromium.org/18309</a></p> <p>See also: <a href="http://code.google.com/p/v8/issues/detail?id=64" rel="nofollow">http://code.google.com/p/v8/issues/detail?id=64</a></p> http://stackoverflow.com/questions/328718/v8-javascript-engine-on-windows-mingw/1149334#1149334 0 Answer by the_drow for V8 JavaScript Engine on Windows (MinGW) the_drow 2009-07-19T06:12:06Z 2009-07-19T17:55:51Z <p>You just need to change Scons a bit.<br /> Take a look at C:\YourPythonFolder\Lib\site-packages\scons-YourSconsVersion\SCons\Script__ init__.py and go to line 560.<br /> Change the linker to gnulink, the c compiler to mingw and the c++ compiler to g++.<br /> Eventually it should look like this:</p> <pre><code>linkers = ['gnulink', 'mslink', 'ilink', 'linkloc', 'ilink32' ] c_compilers = ['mingw', 'msvc', 'gcc', 'intelc', 'icl', 'icc', 'cc', 'bcc32' ] cxx_compilers = ['g++', 'msvc', 'intelc', 'icc', 'c++', 'bcc32' ] </code></pre> <p>Now MingW is activated by default :)</p>