Cross-platform asynchronous I/O
Go to file
Ben Noordhuis 8d3d4a4244 Revert 9518ab65: Allow user to specify CC env var (CC=clang make)
Conditional assignment (assign if not set) to CC and AR never works
because their default values with GNU make are `cc` and `ar` respectively.
Build with `make AR=your-ar CC=your-cc` if you want to override them.

Fixes #89.
2011-07-10 17:22:32 +02:00
doc src/ and include/ directories 2011-07-07 07:52:57 -07:00
include Named pipes implementation for Windows 2011-07-09 21:41:04 +02:00
msvs Change msvc projects, more sanity in ares build config on windows 2011-07-07 18:07:53 +02:00
src Fix alloc-after-close error, properly disarm uv_tcp_t handle. 2011-07-10 16:50:28 +02:00
test Named pipes implementation for Windows 2011-07-09 21:41:04 +02:00
.gitignore c-ares unix 2011-06-15 14:23:46 +02:00
AUTHORS Add Matt to the authors 2011-06-28 14:11:47 +02:00
config-mingw.mk Revert 9518ab65: Allow user to specify CC env var (CC=clang make) 2011-07-10 17:22:32 +02:00
config-unix.mk Revert 9518ab65: Allow user to specify CC env var (CC=clang make) 2011-07-10 17:22:32 +02:00
LICENSE unix: Include libeio 2011-06-30 11:43:17 -07:00
Makefile Clean target missing prefix for object files 2011-07-07 21:39:07 -07:00
README Add doc on desired-api 2011-05-28 01:47:47 -07:00

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/

(This was previously called liboio)

Supported Platforms:

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

Linux 2.6 and MacOS using the GCC toolchain.

Solaris 121 and later using GCC toolchain.