From 36cd5fb9d27b830320e57213f5b8829ffbb93324 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 27 Mar 2015 12:04:12 +0100 Subject: deps: upgrade v8 to 4.2.77.13 This commit applies some secondary changes in order to make `make test` pass cleanly: * disable broken postmortem debugging in common.gypi * drop obsolete strict mode test in parallel/test-repl * drop obsolete test parallel/test-v8-features PR-URL: https://github.com/iojs/io.js/pull/1232 Reviewed-By: Fedor Indutny --- deps/v8/src/flags.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'deps/v8/src/flags.cc') diff --git a/deps/v8/src/flags.cc b/deps/v8/src/flags.cc index 5e33bdaeec..d498c28240 100644 --- a/deps/v8/src/flags.cc +++ b/deps/v8/src/flags.cc @@ -553,6 +553,9 @@ void FlagList::EnforceFlagImplications() { uint32_t FlagList::Hash() { std::ostringstream modified_args_as_string; +#ifdef DEBUG + modified_args_as_string << "debug"; +#endif // DEBUG for (size_t i = 0; i < num_flags; ++i) { Flag* current = &flags[i]; if (!current->IsDefault()) { -- cgit v1.2.1