Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tools/v8_gypfiles/v8.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -1429,6 +1429,15 @@
'ExceptionHandling': 1,
},
},
# Reduce optimisation of one file on AIX - it causes torque
# to segfault if you build node with "--shared"
'conditions': [
['OS=="aix" and node_shared=="true"', {
'cflags': ['-O1'],
'cflags!': ['-O3'],
'sources': ['<(V8_ROOT)/src/torque/implementation-visitor.cc'],
}],
],
}, # torque_base
{
'target_name': 'torque_ls_base',
Expand Down
Loading