Skip to content

Commit

Permalink
set ZOS to create .so libraries (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanuary authored and mattcolegate committed Nov 5, 2018
1 parent 958e928 commit 7c325a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"portdir": "osx"
}],
['OS in "os390 zos"', {
"portdir": "zos"
"portdir": "zos",
"SHARED_LIB_SUFFIX": ".so"
}],
['OS=="win"', {
"portdir": "windows"
Expand All @@ -38,6 +39,9 @@
'product_extension': 'a',
},{
}],
['OS in "os390 zos"', {
'product_extension': 'so',
}],
],
}],
],
Expand Down

0 comments on commit 7c325a5

Please sign in to comment.