Browse Source

build: use proper `-arch` for target_arch on OS X

v0.9.1-release
Nathan Rajlich 13 years ago
committed by Ben Noordhuis
parent
commit
546870edd8
  1. 8
      common.gypi

8
common.gypi

@ -170,6 +170,14 @@
'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
}],
],
'conditions': [
['target_arch=="ia32"', {
'xcode_settings': {'ARCHS': ['i386']},
}],
['target_arch=="x64"', {
'xcode_settings': {'ARCHS': ['x86_64']},
}],
],
}],
],
}

Loading…
Cancel
Save