-
configure: define "arm_fpu" and "arm_neon" for ARM
TooTallNate committedJan 11, 2013 v8's common.gypi file expects them to be defined now. Closes #4534.
-
windows: improve Visual Studio Express build support
* Moved generated files to a clearer directory. * Improved detection logic for ctrpp.exe tool. Closes #4482
-
build: Add hyphen to custom build tags
isaacs committedDec 27, 2012 so that ./configure --tag=foo makes a version number like v0.9.5-foo instead of v0.9.5foo
-
build: allow to specify custom tags
When building custom `node` versions (e.g., floating features/fixes from different versions) it's often useful to specify a custom tag which easily identifies build when invoking `node -v`. Introduce a way to specify this tag in `node_version.h` file or by running `./configure --tag="<tag>"`. Insert it right after the patch version (and before `-pre`, if build is not a release). Closes #4452.
-
build: make python executable configurable
bnoordhuis committedNov 20, 2012 Upstreamed in https://codereview.chromium.org/11418101/ Fixes #4287.
-
build: fix default dtrace flag on Linux
DTrace on Linux should not be enabled by default because not all systems will have the proper headers installed. Only enable when --with-dtrace is passed to the configure script.
-
build: add --systemtap-includes configure switch
bnoordhuis committedNov 1, 2012
-
Merge remote-tracking branch 'origin/v0.8'
bnoordhuis committedOct 25, 2012 Conflicts: configure deps/v8/build/common.gypi
-
build: add --unsafe-optimizations configure switch
bnoordhuis committedOct 24, 2012 Turns on -O3 and other optimizations that may produce buggy code with some toolchains. Use at your own risk.
-
build: re-enable gdbjit, honor --gdb again
bnoordhuis committedOct 23, 2012 Note that you need to start node with --gdbjit for it to become effective.
-
configure: turn on VFPv3 on ARMv7
bnoordhuis committedSep 19, 2012
-
configure: turn on VFPv3 on ARMv7
bnoordhuis committedSep 19, 2012 Fixes a V8 build error caused by missing arm_fpu and arm_neon settings.
-
configure: always use shlex instead of split
Use shlex module instead of builtin string split to parse CC.
-
Merge remote-tracking branch 'ry/v0.8' into master
isaacs committedSep 12, 2012 Conflicts: ChangeLog src/node_version.h test/simple/test-util-inspect.js
-
configure: add a "--dest-os" option to force a gyp "flavor"
TooTallNate committedSep 9, 2012 This makes cross-compiling easier. i.e. from my mac: ./configure --dest-cpu=arm --dest-os=linux
-
build: add ninja support to Makefile
bnoordhuis committedSep 4, 2012
-
Merge remote-tracking branch 'origin/v0.8'
bnoordhuis committedAug 17, 2012 Conflicts: ChangeLog src/node_version.h test/message/stdin_messages.out tools/install.py
-
build: Don't set gcc_version for Windows
isaacs committedAug 15, 2012
-
addon: remove node-waf, superseded by node-gyp
bnoordhuis committedAug 14, 2012
-
build: compile with -fno-tree-vrp when gcc >= 4.0
bnoordhuis committedAug 13, 2012
-
build: fix mksnapshot crash on sunos
bnoordhuis committedJul 18, 2012 Unconditionally compile V8 with -fno-strict-aliasing on all platforms. gcc 4.5.2 on sunos generates bad code when -fstrict-aliasing is enabled, which undoubtedly means that there are more buggy versions of gcc out there. -fstrict-aliasing does not give a significant performance boost so let's just disable it. Fixes #3736.
-
build: partially fix configure on ARM
bnoordhuis committedJul 12, 2012 V8 on ARM requires that armv7 is set. We don't have a good way to detect the CPU model right now so we pick a default and hope that it works okay for the majority of people. Non-scientific sampling - the ARM hardware I have lying around the house - suggests that ARMv5 and ARMv6 are still most common so armv7=0 it is. This obviously needs to be revisited sometime in the future.
-
build: disable unsafe optimizations
bnoordhuis committedJul 12, 2012 Compile at -O2 and disable optimizations that trigger gcc bugs. Some people still reported mksnapshot crashes after commit b40f813 ("build: fix spurious mksnapshot crashes for good" - so much for that). Average performance of the -O2 binary is on par with the -O3 binary. Variance on the http_simple bytes/8 benchmark appears to be slightly greater but small enough that the possibly of it being noise cannot be excluded. The new binary very slightly but consistently outperforms the -O3 binary (by about 0.5%) on the mostly CPU-bound bytes/102400 benchmark. That could be an artifact of the system I benchmarked it on, a Core 2 Duo with a puny 32 kB of L1 instruction cache. The smaller binary seems to play nicer with the cache.
-
build: fix spurious mksnapshot crashes for good
bnoordhuis committedJul 11, 2012 A variety of gcc bugs made mksnapshot crash with either a segmentation fault or a 'pure virtual method callled' run-time error. After much wailing and gnashing of teeth I managed to deduce that the bugs show up when: 1. gcc 4.5.2 for i386-pc-solaris2.11 is used and -fstrict-aliasing is enabled, or 2. gcc version 4.4.6 for x86_64-redhat-linux is used and -ffunction-sections -finline-functions at -O2 or higher is enabled Therefore, disable -ffunction-sections and -fdata-sections unconditionally and disable -fstrict-aliasing only on Solaris. The -ffunction-sections and -fdata-sections switches were nonsense anyway because we don't link with -Wl,--gc-sections.
-
piscisaureus committed
Jul 7, 2012