Last active
November 23, 2015 10:49
-
-
Save rc1/69b2c49d0efaebeafd08 to your computer and use it in GitHub Desktop.
Building node.js for Raspberry Pi 2 (with Armv7 and Neon support)
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
@cs8425 thanks