-
-
Save zzzhc/f30383dc3462026a5631 to your computer and use it in GitHub Desktop.
Building node.js for Raspberry Pi 2 (with Armv7 and Neon support)
This file contains 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