isaacs
ae5a209b11
npm: Upgrade to 1.1.37
12 years ago
isaacs
911b0fddd3
Upgrade npm to 1.1.26
13 years ago
isaacs
e5d3ea7771
Upgrade npm to 1.1.24
13 years ago
isaacs
b9e40fbaac
Upgrade npm to 1.1.24
13 years ago
isaacs
1ac05cc5ad
Upgrade npm to 1.1.18
13 years ago
isaacs
c8bbd13ea8
Upgrade npm to 1.1.17
13 years ago
isaacs
f631c1d73b
Update npm to 1.1.9
13 years ago
Ben Noordhuis
30b29d8f87
build: disable -fstrict-aliasing if gcc < 4.6.0
A compiler bug in older versions of gcc makes it do unsafe optimizations at -O1
and higher. This manifested itself with (at least) gcc 4.5.2 on SmartOS because
it made V8 hang in a busy loop.
See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45883
13 years ago
Shigeki Ohtsu
82ad1f87fa
Fix #2830 for the old gcc bug on SmartOS
13 years ago
Nathan Rajlich
3c68c85f18
build: use -pthreads (not -pthread) on Solaris
13 years ago
Shigeki Ohtsu
491ec171ec
build: change default BUILDTYPE of gyp to Release
13 years ago
Shigeki Ohtsu
58e5d69250
build: fix the case where config.gypi doesn't exist
13 years ago
Shigeki Ohtsu
680d75af34
build: make default_configuration consistent with BUILDTYPE
13 years ago
Nathan Rajlich
546870edd8
build: use proper `-arch` for target_arch on OS X
13 years ago
Dave Pacheco
7864bb9eb8
build: disable -fomit-frame-pointer on solaris
This "optimization" cripples debuggability and has dubious performance value,
so we want to disable it at least on SmartOS.
13 years ago
Nathan Rajlich
71e975669c
Default to static linking CRT on Windows.
13 years ago
Igor Zinkovsky
0a347559bf
enable x64 windows build
use "vcbuild x64" to do x64 build of node.exe
13 years ago
Bert Belder
2e2df04b35
Windows: disable RTTI and exceptions
13 years ago
Ben Noordhuis
03c4aa6aef
build: don't set -mmacosx-version-min
It sets __MAC_OS_X_VERSION_MIN_REQUIRED__, which is what we use for feature
detection.
13 years ago
Ben Noordhuis
6b5853794d
build: disable NDEBUG in release builds for now
assert() sanity checks are a good thing.
13 years ago
Shigeki Ohtsu
55c21970fd
build: compile without -fvisibility=hidden
Fixes symbol lookup errors when loading an addon module on Linux.
13 years ago
Ryan Dahl
7edfb02984
Remove visibility=hidden options from common.gypi
Not necessary and preventing addon loading.
13 years ago
Ryan Dahl
c65a91c96f
GYP: don't build V8 twice
13 years ago
Ben Noordhuis
bbd976b8c4
build: always compile with large file support
Fixes a nasty sizeof(struct stat) mismatch bug that caused random crashes and
silent memory corruption.
13 years ago
Ben Noordhuis
1cf13bca19
build: compile with -D__DARWIN_64_BIT_INO_T on OS X
Fixes a struct stat size mismatch on 64 bits machines that made Node crash with
a EXC_BAD_ACCESS on startup.
Fixes #2061 for gyp builds. Solution proposed by Paddy Byers.
13 years ago
Bert Belder
4a1efb2b9c
Support native extension loading on Windows
13 years ago
Peter Bright
766430c743
Windows: set executables to be console programs
closes #1644
13 years ago
Ryan Dahl
85f7b78e9b
gyp: Further fixes to target_defaults for mac
13 years ago
Evan Martin
8a29e5ea5b
gyp: Don't pass C++ flags to C compiler, and don't pass -ansi in OpenSSL builds.
13 years ago
Evan Martin
a916d888f2
common.gypi: don't nest "target_defaults" within "target_defaults"
The "conditions" block is already within a "target_defaults", so its
children amend target default settings already.
13 years ago
Ryan Dahl
b433c42a56
gyp: Support Linux
13 years ago
Ryan Dahl
25a5e90289
Fix GYP build on OSX
Broken due to DOS line endings.
./configure-gyp
make -f Makefile-gyp
13 years ago
Peter Bright
16788f461a
Rename gyp files to produce useful solution names.
Hoist common settings into common.gypi.
Restrict v8's common.gypi to v8 projects.
Ensure v8 doesn't use /MP in debug builds.
Add basic settings for other platforms.
Make uv import common.gypi properly.
Remove LTCG warning.
13 years ago