Last active
August 29, 2015 14:08
-
-
Save lodejard/c4260f246b1b0182466c to your computer and use it in GitHub Desktop.
libuv builder
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
wget http://dist.libuv.org/dist/v1.4.2/libuv-v1.4.2.tar.gz | |
tar -xvf libuv-v1.4.2.tar.gz | |
cd libuv-v1.4.2/ | |
./gyp_uv.py -f make -Duv_library=shared_library | |
make -C out | |
sudo cp out/Debug/lib.target/libuv.so /usr/lib/libuv.so.1.4.2 | |
sudo ln -sf libuv.so.1.4.2 /usr/lib/libuv.so.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't forget to install
gyp
before running itsudo apt-get install gyp