Browse Source

build: fix ia32 sunos, elfwrap only needs -64

v0.11.5-release
Timothy J Fontaine 11 years ago
parent
commit
032373df7f
  1. 2
      node.gyp

2
node.gyp

@ -430,7 +430,7 @@
'outputs': [ '<(PRODUCT_DIR)/obj.target/node/src/node_mdb.o' ],
'conditions': [
[ 'target_arch=="ia32"', {
'action': [ 'elfwrap', '-32', '-o', '<@(_outputs)', '<@(_inputs)' ],
'action': [ 'elfwrap', '-o', '<@(_outputs)', '<@(_inputs)' ],
} ],
[ 'target_arch=="x64"', {
'action': [ 'elfwrap', '-64', '-o', '<@(_outputs)', '<@(_inputs)' ],

Loading…
Cancel
Save