node/deps/uv
Ryan Dahl d750927b36 Upgrade libuv to 75a088e 2011-09-16 16:19:33 -07:00
..
include Upgrade libuv to 4b9b692 2011-09-14 08:43:27 -07:00
src Upgrade libuv to 75a088e 2011-09-16 16:19:33 -07:00
test Upgrade libuv to 75a088e 2011-09-16 16:19:33 -07:00
.gitignore Upgrade libuv to 65f71a2 2011-08-12 01:14:46 -07:00
.mailmap Upgrade libuv to 836cc20 2011-08-31 15:59:36 -07:00
AUTHORS Upgrade libuv to 5b567b2 2011-09-08 14:29:12 -07:00
LICENSE upgrade libuv to a6ed175 2011-08-30 01:35:54 -07:00
Makefile uv: upgrade to 6422a14 2011-09-04 02:31:12 +02:00
README Upgrade libuv to cbbb254 2011-08-29 15:23:20 -07:00
common.gypi Upgrade libuv to 142a702 2011-09-04 16:17:00 -07:00
config-mingw.mk uv: upgrade to 6422a14 2011-09-04 02:31:12 +02:00
config-unix.mk Upgrade libuv to e7eeacb 2011-09-12 15:09:26 -07:00
gyp_uv Upgrade libuv to joyent/libuv@ce20791 2011-08-22 14:52:28 -07:00
uv.gyp Upgrade libuv to 4b9b692 2011-09-14 08:43:27 -07:00
vcbuild.bat uv: upgrade to 835782a 2011-08-26 18:10:35 +02:00

README

This is the new networking layer for Node. Its purpose is to abstract
IOCP on windows and libev on Unix systems. We intend to eventually contain
all platform differences in this library.

http://nodejs.org/

= Build Instructions

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.

To build via Makefile simply execute:

    make

To build with Visual Studio run the vcbuilds.bat file which will
checkout the GYP code into build/gyp and generate the uv.sln and
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:

    svn co http://gyp.googlecode.com/svn/trunk build/gyp

Unix users run

    ./gyp_uv -f make
    make

Macintosh users run

    ./gyp_uv -f xcode
    xcodebuild -project uv.xcodeproj -configuration Release -target All


= Supported Platforms

Microsoft Windows operating systems since Windows XP SP2. It can be built
with either Visual Studio or MinGW.

Linux 2.6 using the GCC toolchain.

MacOS using the GCC or XCode toolchain.

Solaris 121 and later using GCC toolchain.