Skip to content

Commit

Permalink
fix ios ccache 1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Sep 24, 2024
1 parent 5169075 commit a3feadd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/apple-ios.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ifdef CCACHE
endif

OS := iphoneos
cc := ${pfxcc} $(shell xcrun --sdk iphoneos -f gcc 2>/dev/null)
cc := $(shell xcrun --sdk iphoneos -f gcc 2>/dev/null)
ar := $(shell xcrun --sdk iphoneos -f ar 2>/dev/null)
ld := $(shell xcrun --sdk iphoneos -f ld 2>/dev/null)
ranlib := $(shell xcrun --sdk iphoneos -f ranlib 2>/dev/null)
Expand All @@ -17,9 +17,9 @@ cflags += -DLIBCMALLOC
lua_cflags += -DLUA_USE_IOS
ldflags := -lm
platform := ios
quantum_proof_cc := ${cc}
ed25519_cc := ${cc}
libcc_cc := ${cc}
quantum_proof_cc := ${pfxcc} ${cc}
ed25519_cc := ${pfxcc} ${cc}
libcc_cc := ${pfxcc} ${cc}

ios-armv7: cflags += -arch armv7 -isysroot $(shell xcrun --sdk iphoneos --show-sdk-path 2>/dev/null)
ios-armv7: ${BUILD_DEPS} ${ZEN_SOURCES}
Expand Down

0 comments on commit a3feadd

Please sign in to comment.