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

[SoupChef] Fix build with Xcode 12.2 #409

Merged
merged 1 commit into from
Oct 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ios12/SoupChef/OrderSoupIntentStaticLib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ TARGET=OrderSoupIntentStaticLib

all: bind

lib$(TARGET)-i386.a:
lib$(TARGET)-simulator.a:
$(XBUILD) -project $(PROJECT) -target $(TARGET) -sdk iphonesimulator -configuration Release clean build
-mv $(PROJECT_ROOT)/build/Release-iphonesimulator/lib$(TARGET).a $@

lib$(TARGET)-arm64.a:
lib$(TARGET)-device.a:
$(XBUILD) -project $(PROJECT) -target $(TARGET) -sdk iphoneos -arch arm64 -configuration Release clean build
-mv $(PROJECT_ROOT)/build/Release-iphoneos/lib$(TARGET).a $@

lib$(TARGET).a: lib$(TARGET)-i386.a lib$(TARGET)-arm64.a
lib$(TARGET).a: lib$(TARGET)-simulator.a lib$(TARGET)-device.a
xcrun -sdk iphoneos lipo -create -output $@ $^

bind: lib$(TARGET).a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@
730228B6210A498000D68C70 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = x86_64;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 9VWFS9Q2KQ;
OTHER_LDFLAGS = "-ObjC";
Expand All @@ -270,6 +271,7 @@
730228B7210A498000D68C70 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = x86_64;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 9VWFS9Q2KQ;
OTHER_LDFLAGS = "-ObjC";
Expand Down