Nathan Rajlich
028043dd02
build: map i686 to ia32
13 years ago
Nathan Rajlich
af4a96ce6e
build: test `uname -m` first, then `uname -p`
Prevent false i386 on 64-bit OS X.
13 years ago
Karl Skomski
09ccbef3bb
build: detect host_arch better
13 years ago
Ben Noordhuis
74a8215a86
Revert support for isolates.
It was decided that the performance benefits that isolates offer (faster spin-up
times for worker processes, faster inter-worker communication, possibly a lower
memory footprint) are not actual bottlenecks for most people and do not outweigh
the potential stability issues and intrusive changes to the code base that
first-class support for isolates requires.
Hence, this commit backs out all isolates-related changes.
Good bye, isolates. We hardly knew ye.
13 years ago
Ben Noordhuis
ad42a82df5
build: remove node_debug from config.gypi
13 years ago
Ben Noordhuis
e493b29598
build: respect --debug configure switch
13 years ago
Fedor Indutny
6e76a7cb45
installer: install node-waf
* added --without-waf flag for configure script
13 years ago
Ben Noordhuis
93465d3051
build: support --dest-cpu configure switch again
13 years ago
Ben Noordhuis
472a72d27f
build: honour the PYTHON environment variable
Overrides the path to the python binary. Defaults to `python`.
13 years ago
Ben Noordhuis
b3d4938e3e
build: add --without-isolates configure switch
13 years ago
Ben Noordhuis
39e2c469db
build: add --without-isolates configure switch
13 years ago
Ryan Dahl
624f70e88f
GYP: rename options.gypi to config.gypi
Sounds more familiar to unix users used to config.h
13 years ago
jbergstroem
45605c9b39
gyp: switch json for pprint when generating config
13 years ago
Fedor Indutny
a9f2c4aa30
--without-npm option
Fixes #2353 .
13 years ago
Ryan Dahl
e61de70c96
gyp: use built-in openssl by default
13 years ago
Ben Noordhuis
a033261f39
build: DRY configure script
13 years ago
Ryan Dahl
48d21dd541
Force makefile generation in gyp
13 years ago
Ben Noordhuis
b9e1bb3d92
build: auto-run tools/gyp_node after ./configure
13 years ago
Ryan Dahl
14b04b06b4
Remove SCONS deprecate WAF
We keep around WAF for node-waf only.
We need great diligence by people over the next couple weeks to work out all
the kinks in the GYP build system. We realize that it is currently several
times slower than the WAF build. Please lend a hand.
Fixes #1504
Fixes #1500
13 years ago
Ben Noordhuis
790f13df9c
Fix typo in configure script
14 years ago
Ryan Dahl
9e5cd012e2
Revert "Unify configure scripts"
This reverts commit 71435ede81
.
14 years ago
Ryan Dahl
71435ede81
Unify configure scripts
14 years ago
Ryan Dahl
03b5831f90
Bring back old Makefile and configure script
GYP and WAF need to live in parallel for some time.
14 years ago
Ryan Dahl
f57d70d3c9
sketch out configure support
14 years ago
Ryan Dahl
97c9745063
Back to WAF
Too much instability right now. Hopefully we can revisit autoconf soon.
14 years ago
Ryan Dahl
ccdd979a69
Changes to compile on solaris
14 years ago
Ryan Dahl
5175864c0e
exec instead of sh a the configure.real script
14 years ago
Ryan Dahl
43022eabf7
more configure hackery
14 years ago
Ryan Dahl
5cf4ceff59
add configure
14 years ago
Ryan Dahl
15594eaf87
Replace WAF with make/autoconf
14 years ago
Ryan Dahl
f7ff548dd0
Quote variables in configure script
15 years ago
Ryan Dahl
90ab0794df
Use --jobs=1 with WAF
Some people were reporting waf erroring with
thread.error: can't start new thread
this seems to fix that problem.
15 years ago
Jan Lehnardt
9c1034b183
detect ccache and bail out since v8 doens't like to build with ccache
15 years ago
Ryan Dahl
861f28f37a
Don't unnecessarily output the makefile from the configure script.
15 years ago
Ryan Dahl
84d2966377
Use waf-light instead of waf
This way there won't be strange tools/.waf-12343 directories hanging about.
All that waf needs to run is inside the tools/wafadmin directory.
15 years ago
Ryan
d851bf9a66
Revert "Add xsl files to doc directory so people can build docs easily"
This reverts commit 412b4636c8
.
16 years ago
Ryan
412b4636c8
Add xsl files to doc directory so people can build docs easily
16 years ago
Ryan
68dda0a7d8
Man page generation.
16 years ago
Ryan
b5a1585470
Restyle website/api.html. Now looks like the front page.
Made a few other little corrections too.
16 years ago
Ryan
22e85cbc0b
Fix 'make test-debug'
16 years ago
Ryan
05d6319fa0
Add benchmark scripts.
To use the benchmarks:
node benchmarks/run.js
or:
make benchmark
The numbers reported are the elapsed milliseconds the script took to
complete. Currently only benching HTTP code and timers.
16 years ago
Ryan
a3d77ee4e7
Add new documentation (using asciidoc!)
16 years ago
Ryan
9615c93d2d
Add make test-all
16 years ago
Ryan
3fed1a0954
Use v8's test runner
16 years ago
Ryan
115c4942db
Create tools directory
Users will need to "make distclean" to recompile from scratch since I've
moved a lot of the core build tools around.
16 years ago
Ryan
40ee852425
Only run debug tests if the build debug was built
16 years ago
Ryan
9bcbcc4a7f
test default build too
16 years ago
Ryan
b9fedf0500
Add color PASS/FAIL statements. Use python for portability.
16 years ago
Ryan
baed9d514d
Inform V8 of external allocations.
This is sloppy: after each ObjectWrap allocation the user needs to
call ObjectWrap::InformV8ofAllocation(). In addition each class deriving
from ObjectWrap needs to implement the virtual method size() which should
return the size of the derived class. If I was better at C++ I could
possibly make this less ugly. For now this is how it is.
Memory usage looks much better after this commit.
16 years ago
Ryan
4b2cd6f305
Remove -n from echo in Makefile. (Doesn't work on OSX.)
16 years ago