0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
Cross-platform JavaScript runtime environment https://nodejs.org/
Go to file
Ben Noordhuis 9f9a4cb928 Fix Math.pow crashes on machines without SSE2.
This is a back-port of r8577 from V8's upstream 3.1 branch.

Fixes #829.
2011-07-16 16:00:06 +02:00
benchmark
cmake
deps Fix Math.pow crashes on machines without SSE2. 2011-07-16 16:00:06 +02:00
doc Doc improvements 2011-07-16 09:45:43 +09:00
lib Fixes #1085. The agent end event may call detachSocket() after the socket is detached and destroyed by abort(). This patch avoids that behavior. 2011-07-15 00:33:28 +09:00
src Fix Buffer drops last null character in UTF-8 2011-07-14 02:21:56 +09:00
test Add tests for #1085 and #1304 2011-07-15 01:58:43 +09:00
tools
.gitignore
AUTHORS
ChangeLog
CMakeLists.txt
config.h.cmake
configure
CTestConfig.cmake
LICENSE
Makefile
Makefile.cmake
README.cmake
README.md
TODO
TODO.win32
wscript

Evented I/O for V8 javascript.

To build:

./configure
make
make install

To run the tests:

make test

To build the documentation:

make doc

To read the documentation:

man doc/node.1

Resources for Newcomers