We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
if you have trouble building with the directions given try this (mac & maybe linux/bsd)
in the root directory of the source code:
./configure make sudo make install
configure is currently broken for some versions of MacOS; for more details, see How to compile Node.js v0.4.2 on MacOS 10.5.8. The working approach cited there is as follows:
configure
export PATH=/Developer/usr/bin:$PATH ISYSROOT="-isysroot /Developer/SDKs/MacOSX10.5.sdk" export LINKFLAGS=$ISYSROOT CXXFLAGS=$ISYSROOT CFLAGS=$ISYSROOT ./configure --prefix=$HOME --without-ssl make