summaryrefslogtreecommitdiff
path: root/deps/uv/README.md
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-01-22 16:21:25 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2013-01-22 16:21:25 +0100
commit814bdf0f51fd3219063a44f919dfcdb6e51951f7 (patch)
tree90116f4843a754e6e6cffa63ddd16c015ee1fd1c /deps/uv/README.md
parentd5a590134655c9a59cfcab72217442ac4c795fd7 (diff)
downloadandroid-node-v8-814bdf0f51fd3219063a44f919dfcdb6e51951f7.tar.gz
android-node-v8-814bdf0f51fd3219063a44f919dfcdb6e51951f7.tar.bz2
android-node-v8-814bdf0f51fd3219063a44f919dfcdb6e51951f7.zip
deps: upgrade libuv to 7841f77
Diffstat (limited to 'deps/uv/README.md')
-rw-r--r--deps/uv/README.md15
1 files changed, 11 insertions, 4 deletions
diff --git a/deps/uv/README.md b/deps/uv/README.md
index 2d8b4367c0..e37b962fcc 100644
--- a/deps/uv/README.md
+++ b/deps/uv/README.md
@@ -56,7 +56,7 @@ http://nodejs.org/
For GCC (including MinGW) there are two methods building: via normal
makefiles or via GYP. GYP is a meta-build system which can generate MSVS,
Makefile, and XCode backends. It is best used for integration into other
-projects. The old (more stable) system is using Makefiles.
+projects. The old system is using plain GNU Makefiles.
To build via Makefile simply execute:
@@ -69,15 +69,22 @@ related files.
Windows users can also build from cmd-line using msbuild. This is
done by running vcbuild.bat from Visual Studio command prompt.
-To have GYP generate build script for another system you will need to
-checkout GYP into the project tree manually:
+To have GYP generate build script for another system, make sure that
+you have Python 2.6 or 2.7 installed, then checkout GYP into the
+project tree manually:
+ mkdir -p build
svn co http://gyp.googlecode.com/svn/trunk build/gyp
+Or:
+
+ mkdir -p build
+ git clone https://git.chromium.org/external/gyp.git build/gyp
+
Unix users run
./gyp_uv -f make
- make
+ make -C out
Macintosh users run