0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/uv
Ben Noordhuis 7494c84fe6 uv: upgrade to v0.11.13
This commit changes src/tcp_wrap.cc and src/udp_wrap.cc just enough to
get by (i.e. to compile and function correctly.)

The new libuv API allows for more cleanup and deduplication but I'm
saving that for another day.
2013-09-04 18:11:32 +02:00
..
include uv: upgrade to v0.11.13 2013-09-04 18:11:32 +02:00
m4 uv: Upgrade to v0.11.7 2013-08-06 14:35:33 -07:00
src uv: upgrade to v0.11.13 2013-09-04 18:11:32 +02:00
test uv: upgrade to v0.11.13 2013-09-04 18:11:32 +02:00
.gitignore deps: upgrade libuv to joyent/libuv@4bdb7d8 2013-07-30 23:33:45 +02:00
.mailmap uv: upgrade to v0.11.11 2013-08-29 15:38:32 +02:00
android-configure
AUTHORS uv: upgrade to v0.11.13 2013-09-04 18:11:32 +02:00
autogen.sh uv: Upgrade to v0.11.8 2013-08-21 11:15:21 -07:00
ChangeLog uv: upgrade to v0.11.13 2013-09-04 18:11:32 +02:00
checksparse.sh deps: upgrade libuv to 3ee4d3f 2013-07-20 12:04:35 +02:00
common.gypi deps: upgrade libuv to 3ee4d3f 2013-07-20 12:04:35 +02:00
configure.ac uv: upgrade to v0.11.13 2013-09-04 18:11:32 +02:00
gyp_uv uv: Upgrade to v0.10.12 2013-07-09 13:20:38 -07:00
LICENSE
Makefile.am uv: upgrade to v0.11.13 2013-09-04 18:11:32 +02:00
Makefile.mingw uv: upgrade to v0.11.11 2013-08-29 15:38:32 +02:00
README.md uv: upgrade to v0.11.11 2013-08-29 15:38:32 +02:00
uv.gyp uv: upgrade to v0.11.11 2013-08-29 15:38:32 +02:00
vcbuild.bat

libuv

libuv is a platform layer for node.js. Its purpose is to abstract IOCP on Windows and epoll/kqueue/event ports/etc. on Unix systems. We intend to eventually contain all platform differences in this library.

Features

  • Non-blocking TCP sockets

  • Non-blocking named pipes

  • UDP

  • Timers

  • Child process spawning

  • Asynchronous DNS via uv_getaddrinfo.

  • Asynchronous file system APIs uv_fs_*

  • High resolution time uv_hrtime

  • Current executable path look up uv_exepath

  • Thread pool scheduling uv_queue_work

  • ANSI escape code controlled TTY uv_tty_t

  • File system events using inotify, kqueue, event ports, FSEvents and ReadDirectoryChangesW

  • IPC and socket sharing between processes uv_write2

Community

Documentation

Build Instructions

For GCC there are two methods building: via autotools 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.

To build with autotools:

$ sh autogen.sh
$ ./configure
$ make
$ make check
$ make install

To build with Visual Studio run the vcbuild.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 the command line using msbuild. This is done by running vcbuild.bat from Visual Studio command prompt.

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
$ git clone https://git.chromium.org/external/gyp.git build/gyp

Unix users run:

$ ./gyp_uv -f make
$ make -C out

Macintosh users run:

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

To build for android:

$ source ./android-configure NDK_PATH gyp
$ make -C out

Note for UNIX users: compile your project with -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64. GYP builds take care of that automatically.

Supported Platforms

Microsoft Windows operating systems since Windows XP SP2. It can be built with either Visual Studio or MinGW. Consider using Visual Studio Express 2010 or later if you do not have a full Visual Studio license.

Linux using the GCC toolchain.

MacOS using the GCC or XCode toolchain.

Solaris 121 and later using GCC toolchain.