diff options
author | konablend <[email protected]> | 2013-10-01 01:38:19 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2013-10-01 01:38:19 +0000 |
commit | e65a09acd28ebe7e105d527c283100e1dbd2bf79 (patch) | |
tree | 8d52f7bd483a5d1d7529c8edb2676feec94f87e4 /macosx | |
parent | 3e407aca4aad62fe7d7dea63065c0019ec9abe93 (diff) |
BuildSystem: fix Xcode when building w/ clang targeting 10.6
When using clang (the new project default compiler), disable
implicit objc-runtime linking for 10.6 only.
Before fix, the following error is produced:
Undefined symbols for architecture x86_64:
"_objc_retain", referenced from:
___ARCLite__load in libarclite_macosx.a(arclite.o)
(maybe you meant: _objc_retainedObject)
ld: symbol(s) not found for architecture x86_64
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5819 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/xcconfig/base/os.osx106.xcconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/xcconfig/base/os.osx106.xcconfig b/macosx/xcconfig/base/os.osx106.xcconfig index c7f502a57..978cae0d6 100644 --- a/macosx/xcconfig/base/os.osx106.xcconfig +++ b/macosx/xcconfig/base/os.osx106.xcconfig @@ -1,2 +1,3 @@ SDKROOT = macosx10.6 MACOSX_DEPLOYMENT_TARGET = 10.6 +CLANG_LINK_OBJC_RUNTIME = NO |