Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
build: use proper -arch for target_arch on OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate authored and bnoordhuis committed Feb 20, 2012
1 parent af4a96c commit 546870e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions common.gypi
Expand Up @@ -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']},
}],
],
}],
],
}
Expand Down

0 comments on commit 546870e

Please sign in to comment.