Created
September 11, 2015 23:56
-
-
Save No9/65545eb68de014e65855 to your computer and use it in GitHub Desktop.
Install node on a base illumOS install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/sh | |
pkgin in git | |
pkgin in gcc49 | |
pkgin in gmake | |
export PATH=$PATH:/opt/local/gcc49/bin | |
git clone https://github.com/nodejs/node.git | |
cd node | |
#Make sure to change version | |
git checkout v4.0.0 | |
./configure --with-dtrace | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment