/v8-mingw64

The V8 JavaScript engine, build using MinGW-w64

Primary LanguageC++BSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

V8 JavaScript engine using CMake build system and GCC mingw-w64

fork from v8-cmake

build

To build the library and the d8 shell:

$ mkdir build && cd build
$ cmake /path/to/v8-mingw64
$ mingw32-make -j8 2>NUL

If CMake complains about python being incompatible or too old:

$ cmake -DPYTHON_EXECUTABLE=/usr/bin/python3 /path/to/v8-cmake