Skip to content

Commit

Permalink
v8.gyp: fix mkpeephole on Windows for Node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored and ofrobots committed Aug 25, 2016
1 parent 24822cd commit c0d6d98
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions deps/v8/src/v8.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -401,15 +401,6 @@
'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'],
'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc' ],
'process_outputs_as_sources': 1,
'conditions': [
['want_separate_host_toolset_mkpeephole==1', {
'dependencies': ['mkpeephole#host'],
'toolsets': ['host'],
}, {
'dependencies': ['mkpeephole'],
'toolsets': ['target'],
}],
],
}],
'sources': [ ### gcmole(all) ###
'../include/v8-debug.h',
Expand Down Expand Up @@ -1279,6 +1270,13 @@
}, {
'toolsets': ['target'],
}],
['want_separate_host_toolset_mkpeephole==1', {
'toolsets': ['host', 'target'],
'dependencies': ['mkpeephole#host'],
}, {
'toolsets': ['target'],
'dependencies': ['mkpeephole'],
}],
['v8_target_arch=="arm"', {
'sources': [ ### gcmole(arch:arm) ###
'arm/assembler-arm-inl.h',
Expand Down

0 comments on commit c0d6d98

Please sign in to comment.