Add libuv upgrade instructions to src/etc/gyp-uv

This commit is contained in:
Erick Tryzelaar 2011-09-23 16:47:04 -07:00
parent 5f066e06b9
commit 6164de90e2
1 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,18 @@
#!/bin/sh
# This script generates rust compatible makefiles from libuv. When upgrading
# libuv, do:
#
# cd $LIBUV_DIR
# git archive --prefix libuv/ $REVISION > libuv.tar.gz
# cd $RUST_DIR/src/rt
# rm -r libuv
# tar -xvf $LIBUV_DIR/libuv.tar.gz
# mkdir -p libuv/build
# svn co http://gyp.googlecode.com/svn build/gyp
# cd ../..
# ./etc/src/gyp_uv
set -e
cd `dirname $0`