Skip to content

Commit b1a11c6

Browse files
authored
Fix for building and deploying arm64e to devices (#226)
1 parent e8b564b commit b1a11c6

File tree

3 files changed

+149
-340
lines changed

3 files changed

+149
-340
lines changed

RNTester/RNTester.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3715,6 +3715,10 @@
37153715
13B07F941A680F5B00A75B9A /* Debug */ = {
37163716
isa = XCBuildConfiguration;
37173717
buildSettings = {
3718+
ARCHS = (
3719+
"$(ARCHS_STANDARD)",
3720+
arm64e,
3721+
);
37183722
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
37193723
BUNDLE_CONFIG = "$(SRCROOT)/../metro.config.js";
37203724
DEVELOPMENT_TEAM = VYK7DLU38Z;
@@ -3742,6 +3746,10 @@
37423746
13B07F951A680F5B00A75B9A /* Release */ = {
37433747
isa = XCBuildConfiguration;
37443748
buildSettings = {
3749+
ARCHS = (
3750+
"$(ARCHS_STANDARD)",
3751+
arm64e,
3752+
);
37453753
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
37463754
BUNDLE_CONFIG = "$(SRCROOT)/../metro.config.js";
37473755
DEVELOPMENT_TEAM = VYK7DLU38Z;

React/React.xcodeproj/project.pbxproj

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7559,6 +7559,10 @@
75597559
isa = XCBuildConfiguration;
75607560
baseConfigurationReference = 3D788F841EBD2D240063D616 /* third-party.xcconfig */;
75617561
buildSettings = {
7562+
ARCHS = (
7563+
"$(ARCHS_STANDARD)",
7564+
arm64e,
7565+
);
75627566
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
75637567
CLANG_STATIC_ANALYZER_MODE = deep;
75647568
CLANG_WARN_COMMA = NO;
@@ -7574,6 +7578,10 @@
75747578
isa = XCBuildConfiguration;
75757579
baseConfigurationReference = 3D788F841EBD2D240063D616 /* third-party.xcconfig */;
75767580
buildSettings = {
7581+
ARCHS = (
7582+
"$(ARCHS_STANDARD)",
7583+
arm64e,
7584+
);
75777585
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
75787586
CLANG_STATIC_ANALYZER_MODE = deep;
75797587
CLANG_WARN_COMMA = NO;
@@ -7590,6 +7598,10 @@
75907598
isa = XCBuildConfiguration;
75917599
baseConfigurationReference = 3D788F841EBD2D240063D616 /* third-party.xcconfig */;
75927600
buildSettings = {
7601+
ARCHS = (
7602+
"$(ARCHS_STANDARD)",
7603+
arm64e,
7604+
);
75937605
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
75947606
CLANG_STATIC_ANALYZER_MODE = deep;
75957607
CLANG_WARN_COMMA = NO;
@@ -7605,6 +7617,10 @@
76057617
isa = XCBuildConfiguration;
76067618
baseConfigurationReference = 3D788F841EBD2D240063D616 /* third-party.xcconfig */;
76077619
buildSettings = {
7620+
ARCHS = (
7621+
"$(ARCHS_STANDARD)",
7622+
arm64e,
7623+
);
76087624
CLANG_CXX_LANGUAGE_STANDARD = "c++14";
76097625
CLANG_STATIC_ANALYZER_MODE = deep;
76107626
CLANG_WARN_COMMA = NO;

0 commit comments

Comments
 (0)