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 a837659 commit 3fbb8b7Copy full SHA for 3fbb8b7
1 file changed
tools/v8_gypfiles/v8.gyp
@@ -1429,6 +1429,15 @@
1429
'ExceptionHandling': 1,
1430
},
1431
1432
+ # Reduce optimisation of one file on AIX - it causes torque
1433
+ # to segfault if you build node with "--shared"
1434
+ 'conditions': [
1435
+ ['OS=="aix" and node_shared=="true"', {
1436
+ 'cflags': ['-O1'],
1437
+ 'cflags!': ['-O3'],
1438
+ 'sources': ['<(V8_ROOT)/src/torque/implementation-visitor.cc'],
1439
+ }],
1440
+ ],
1441
}, # torque_base
1442
{
1443
'target_name': 'torque_ls_base',
0 commit comments