8000
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 9ffa5fb commit 209b353Copy full SHA for 209b353
tools/v8_gypfiles/v8.gyp
@@ -2536,16 +2536,24 @@
2536
},
2537
}],
2538
['OS=="aix"', {
2539
+ 'variables': {
2540
+ # Used to differentiate `AIX` and `OS400`(IBM i).
2541
+ 'aix_variant_name': '<!(uname -s)',
2542
+ },
2543
'sources': [
2544
'<(V8_ROOT)/src/base/debug/stack_trace_posix.cc',
2545
'<(V8_ROOT)/src/base/platform/platform-aix.cc',
2546
],
- 'link_settings': {
- 'libraries': [
- '-ldl',
- '-lrt'
2547
- ],
2548
- },
+ 'conditions': [
+ [ '"<(aix_variant_name)"=="AIX"', { # It is `AIX`
2549
+ 'link_settings': {
2550
+ 'libraries': [
2551
+ '-ldl',
2552
+ '-lrt'
2553
+ ],
2554
2555
+ }],
2556
2557
2558
['is_android', {
2559