Skip to content

Commit 36cd5fb

Browse files
bnoordhuischrisdickinson
authored andcommittedApr 28, 2015
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: #1232 Reviewed-By: Fedor Indutny <[email protected]>
1 parent b57cc51 commit 36cd5fb

File tree

975 files changed

+74587
-46087
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

975 files changed

+74587
-46087
lines changed
 

‎common.gypi

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@
2020
# Enable disassembler for `--print-code` v8 options
2121
'v8_enable_disassembler': 1,
2222

23+
# Disable support for postmortem debugging, continuously broken.
24+
'v8_postmortem_support%': 'false',
25+
2326
# Don't bake anything extra into the snapshot.
2427
'v8_use_external_startup_data%': 0,
2528

2629
'conditions': [
2730
['OS == "win"', {
2831
'os_posix': 0,
29-
'v8_postmortem_support%': 'false',
3032
}, {
3133
'os_posix': 1,
32-
'v8_postmortem_support%': 'true',
3334
}],
3435
['GENERATOR == "ninja" or OS== "mac"', {
3536
'OBJ_DIR': '<(PRODUCT_DIR)/obj',

‎deps/v8/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
.settings
3030
.*.sw?
3131
bsuite
32+
compile_commands.json
3233
d8
3334
d8_g
3435
gccauses

0 commit comments

Comments
 (0)
Please sign in to comment.