Skip to content
Merged
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
build: aix: deoptimize implementation-visitor.cc with --shared
  • Loading branch information
sxa committed Jan 27, 2026
commit d341da8adffa6c6022295bea36c6906376fc7b5e
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