Created
July 12, 2015 10:49
-
-
Save tmslnz/2b9587a1882ac39df649 to your computer and use it in GitHub Desktop.
Compile Node.js on Raspberry Pi
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
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