Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 474 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 474 Bytes

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