v8/build
jkummerow@chromium.org ec9a9ac103 Fix broken pipe caused by commands in toolchain.gypi.
I sometimes observe broken pipe errors when I run gyp, which causes the gyp
process to fail. This seems to happen if gyp is executed under heavy I/O
pressure.

This change removes the pipes by replacing "echo |" with "< /dev/null".
Technically these are not the same, because "echo |" prints a newline while
"< /dev/null" doesn't, but this difference is not significant in the context of
the commands in toolchain.gypi.

BUG=
R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/73623002

Patch from Yuta Kitamura <yutak@chromium.org>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17836 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2013-11-18 14:32:30 +00:00
..
all.gyp Fix shared library build after r17692. 2013-11-13 12:59:49 +00:00
android.gypi Use -O2 instead -O3 for Android build. 2013-06-12 08:05:43 +00:00
features.gypi Revert r17152 - "Revert r17018 - "Turn on handle zapping for release builds"" 2013-11-06 12:13:01 +00:00
gyp_v8 Fix gyp_v8 to work with use_system_icu=1 2013-07-15 15:41:21 +00:00
README.txt Fix outdated build/README.txt 2013-04-22 13:32:40 +00:00
shim_headers.gypi Add dependency to ICU 4.6 2013-07-01 08:32:41 +00:00
standalone.gypi Move v8_optimized_debug default value to standalone.gypi 2013-10-14 13:07:41 +00:00
toolchain.gypi Fix broken pipe caused by commands in toolchain.gypi. 2013-11-18 14:32:30 +00:00

For build instructions, please refer to:

https://code.google.com/p/v8/wiki/BuildingWithGYP

TL;DR version on *nix:
$ make dependencies        # Only needed once.
$ make ia32.release -j8
$ make ia32.release.check  # Optionally: run tests.