Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.33 KB

WINDOWS.md

File metadata and controls

46 lines (32 loc) · 1.33 KB

Building the Windows version of RethinkDB

Requirements

Build Instructions

From a Cygwin shell:

./configure
make -j

Will first download and build the libraries that RethinkDB needs, then build RethinkDB itself and place it in build\Release_x64\rethinkdb.exe

If make complains about missing files in mk/gen, run mkdir mk/gen manually. Then run make -j again.

On some systems, you might get permission errors like the ones described in npm/npm#10826 during the build from npm. Try running npm install -g JSONStream and then run make -j again to work around this issue.