This repo is no longer maintained and its use is discouraged. Now nodejs binaries work find with external libraries build with C++11 support and visual studio 2013 as per mapnik/node-mapnik#758. So this repo and builds are no longer needed: use the standard node.exe from https://nodejs.org/en/download/releases/
v0.10.33
v0.10.40
v0.11.14
v0.12.0
v0.12.2
v0.12.7
v0.10.33
v0.10.40
v0.11.14
v0.12.0
v0.12.2
v0.12.7
- x64: https://mapbox.s3.amazonaws.com/windows-builds/visual-studio-runtimes/vcredist-VS2015/vcredist_x64.exe
- x86: https://mapbox.s3.amazonaws.com/windows-builds/visual-studio-runtimes/vcredist-VS2015/vcredist_x86.exe
v0.10.33
- x64: https://mapbox.s3.amazonaws.com/node-cpp11/v0.10.33/x64/node.exe
- x86: https://mapbox.s3.amazonaws.com/node-cpp11/v0.10.33/node.exe
v0.10.40
- x64: https://mapbox.s3.amazonaws.com/node-cpp11/v0.10.40/x64/node.exe
- x86: https://mapbox.s3.amazonaws.com/node-cpp11/v0.10.40/node.exe
v0.12.0
- x64: https://mapbox.s3.amazonaws.com/node-cpp11/v0.12.0/x64/node.exe
- x86: https://mapbox.s3.amazonaws.com/node-cpp11/v0.12.0/node.exe
v0.12.2
- x64: https://mapbox.s3.amazonaws.com/node-cpp11/v0.12.2/x64/node.exe
- x86: https://mapbox.s3.amazonaws.com/node-cpp11/v0.12.2/node.exe
v0.12.7
- x64: https://mapbox.s3.amazonaws.com/node-cpp11/v0.12.7/x64/node.exe
- x86: https://mapbox.s3.amazonaws.com/node-cpp11/v0.12.7/node.exe
- head over to https://github.com/mapbox/node
- clone, add remote, port patches forward:
NODE_VERSION=0.12.7
git clone git@github.com:mapbox/node.git
cd node
git remote add joyent git@github.com:joyent/node.git
git fetch joyent
git checkout v${NODE_VERSION}-release
git push origin v${NODE_VERSION}-release
git branch v${NODE_VERSION}-nodecpp11
git checkout v${NODE_VERSION}-nodecpp11
# diff out latest version ported
git diff joyent/v0.12.2-release origin/v0.12.2-nodecpp11 > v12.diff
- manually integrate the
v12.diff
patch (very unlikely thatgit apply v12.diff
will work) - then commit:
git commit -a -m "apply c++11 patches"
git push origin v0.12.7-nodecpp11
- Optional: create a pull request (AGAINST mapbox/node) with the fixes so we have something to link to (like mapbox/node#7)
- Optional: Test that it builds locally on a windows machine (to save time debugging if it will not yet build)
- Add it to the versions that automatically get built by this repo: https://github.com/mapbox/node-cpp11/blob/master/.travis.yml#L10-L14
- Commit to this repo like:
git commit -m "[publish]"