Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Troubleshooting installation

kragen edited this page Mar 15, 2011 · 13 revisions

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:

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
Clone this wiki locally