We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c7dd69 commit 6923e09Copy full SHA for 6923e09
1 file changed
tools/v8_gypfiles/v8.gyp
@@ -1413,6 +1413,15 @@
1413
'ExceptionHandling': 1,
1414
},
1415
1416
+ # Reduce optimisation of one file on AIX - it causes torque
1417
+ # to segfault if you build node with "--shared"
1418
+ 'conditions': [
1419
+ ['OS=="aix" and node_shared=="true"', {
1420
+ 'cflags': ['-O1'],
1421
+ 'cflags!': ['-O3'],
1422
+ 'sources': ['<(V8_ROOT)/src/torque/implementation-visitor.cc'],
1423
+ }],
1424
+ ],
1425
}, # torque_base
1426
{
1427
'target_name': 'torque_ls_base',
0 commit comments