Skip to content

Commit

Permalink
build: add /opt/freeware/... to AIX library path
Browse files Browse the repository at this point in the history
To ease the use of the AIX binaries, add
/opt/freeware/lib/pthread{/ppc64} into the search path encoded into the
library, so that any version the user has installed from the common download
locations will work out of the box without having to explicitly set LIBPATH
in their environment.
  • Loading branch information
Stewart X Addison committed Dec 15, 2016
1 parent 4fffe32 commit 024a4bf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions node.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,16 @@
}, {
'type': 'executable',
}],
['target_arch=="ppc64"', {
'ldflags': [
'-Wl,-blibpath:/usr/lib:/lib:/opt/freeware/lib/pthread/ppc64'
],
}],
['target_arch=="ppc"', {
'ldflags': [
'-Wl,-blibpath:/usr/lib:/lib:/opt/freeware/lib/pthread'
],
}]
],
'dependencies': ['<(node_core_target_name)', 'node_exp'],

Expand Down

0 comments on commit 024a4bf

Please sign in to comment.