Skip to content

Commit

Permalink
Merge pull request #235 from warmenhoven/warmenhoven/pr/ios
Browse files Browse the repository at this point in the history
Fix iOS build
  • Loading branch information
LibretroAdmin authored Oct 6, 2024
2 parents eb94de7 + c39afe6 commit fc72a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.libretro
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ else ifneq (,$(findstring ios,$(platform)))
ifeq ($(platform),ios-arm64)
CC = clang -arch arm64 -isysroot $(IOSSDK)
CXX = clang++ -arch arm64 -isysroot $(IOSSDK)
CFLAGS += -marm -DARM -D__aarch64__=1
CFLAGS += -DARM -D__aarch64__=1
else
CC = clang -arch armv7 -isysroot $(IOSSDK)
CXX = clang++ -arch armv7 -isysroot $(IOSSDK)
Expand Down Expand Up @@ -177,7 +177,7 @@ else ifeq ($(platform), tvos-arm64)
CC_AS = perl ./tools/gas-preprocessor.pl $(CC)
CC = cc -arch arm64 -isysroot $(IOSSDK)
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
CFLAGS += -DARM -D__aarch64__=1
CFLAGS += -DARM -D__aarch64__=1
CFLAGS += -DIOS

# Lightweight PS3 Homebrew SDK
Expand Down

0 comments on commit fc72a81

Please sign in to comment.