Skip to content

Instantly share code, notes, and snippets.

@tmslnz
Created July 12, 2015 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmslnz/2b9587a1882ac39df649 to your computer and use it in GitHub Desktop.
Save tmslnz/2b9587a1882ac39df649 to your computer and use it in GitHub Desktop.
Compile Node.js on Raspberry Pi
export CC='gcc -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=neon'
export CXX='g++ -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=neon'
./configure --without-snapshot
make -j4
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment