/node-cpp11

cpp11-enabled node builds (windows vs2014)

Primary LanguageShell

DEPRECATED

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/

C++11 enabled builds of node

Build Status

Downloads:

OS X

v0.10.33

v0.10.40

v0.11.14

v0.12.0

v0.12.2

v0.12.7

Linux

v0.10.33

v0.10.40

v0.11.14

v0.12.0

v0.12.2

v0.12.7

Windows

Redistributable Visual Studio 2015 installers:

Node for Windows / Visual Studio 2015

v0.10.33

v0.10.40

v0.12.0

v0.12.2

v0.12.7

Adding new node version

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 that git apply v12.diff will work)
  • then commit:
git commit -a -m "apply c++11 patches"
git push origin v0.12.7-nodecpp11
git commit -m "[publish]"