diff options
| author | Teddy Wing | 2016-12-02 17:46:34 -0500 |
|---|---|---|
| committer | Teddy Wing | 2016-12-02 17:46:34 -0500 |
| commit | 94234d693bea653d31cfa3afca6f2233a23ffa2d (patch) | |
| tree | 3517793e4e6faa75ccfe4dcba19b217f3d43ae3b | |
| parent | aa9116d7a6a361edccb4db8d8b6db0e0c9786a29 (diff) | |
| download | MASShortcut-Low-Battery-Yup.tar.bz2 | |
MASShortcut.xcodeproj: Force build architecture to 64-bitLow-Battery-Yup
Otherwise I get an error:
error: -fobjc-arc is not supported with fragile abi
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
failed with exit code 1
| -rw-r--r-- | MASShortcut.xcodeproj/project.pbxproj | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MASShortcut.xcodeproj/project.pbxproj b/MASShortcut.xcodeproj/project.pbxproj index c9f4014..898eee6 100644 --- a/MASShortcut.xcodeproj/project.pbxproj +++ b/MASShortcut.xcodeproj/project.pbxproj @@ -548,6 +548,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.8; + ONLY_ACTIVE_ARCH = NO; SDKROOT = macosx; }; name = Release; @@ -555,7 +556,7 @@ 0D827CFC1990D4420010B8EF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; COMBINE_HIDPI_IMAGES = YES; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; @@ -578,7 +579,7 @@ 0D827CFD1990D4420010B8EF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; COMBINE_HIDPI_IMAGES = YES; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; |
