Skip to content

Commit 09ad8a4

Browse files
committed
actually support bitcode
1 parent db04a37 commit 09ad8a4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

FirebaseUI.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,6 +1538,7 @@
15381538
isa = XCBuildConfiguration;
15391539
buildSettings = {
15401540
ALWAYS_SEARCH_USER_PATHS = NO;
1541+
BITCODE_GENERATION_MODE = marker;
15411542
CLANG_ANALYZER_NONNULL = YES;
15421543
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
15431544
CLANG_CXX_LIBRARY = "libc++";
@@ -1575,6 +1576,7 @@
15751576
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
15761577
MTL_ENABLE_DEBUG_INFO = YES;
15771578
ONLY_ACTIVE_ARCH = YES;
1579+
OTHER_CFLAGS = "";
15781580
SDKROOT = iphoneos;
15791581
TARGETED_DEVICE_FAMILY = "1,2";
15801582
VERSIONING_SYSTEM = "apple-generic";
@@ -1586,6 +1588,7 @@
15861588
isa = XCBuildConfiguration;
15871589
buildSettings = {
15881590
ALWAYS_SEARCH_USER_PATHS = NO;
1591+
BITCODE_GENERATION_MODE = bitcode;
15891592
CLANG_ANALYZER_NONNULL = YES;
15901593
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
15911594
CLANG_CXX_LIBRARY = "libc++";
@@ -1616,6 +1619,7 @@
16161619
GCC_WARN_UNUSED_VARIABLE = YES;
16171620
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
16181621
MTL_ENABLE_DEBUG_INFO = NO;
1622+
OTHER_CFLAGS = "";
16191623
SDKROOT = iphoneos;
16201624
TARGETED_DEVICE_FAMILY = "1,2";
16211625
VALIDATE_PRODUCT = YES;

build.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ let builds = sdks.flatMap { sdk in
114114
"-scheme" : scheme,
115115
"-configuration" : "Release",
116116
"-sdk" : sdk,
117-
"-derivedDataPath": DerivedDataDir
117+
"-derivedDataPath": DerivedDataDir,
118118
])
119119
}
120120
}

0 commit comments

Comments
 (0)