porting ios build from old repo + macos target for makefile #16

Merged
sarah merged 7 commits from ios_build into trunk 2021-08-16 19:53:10 +00:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit c395153ad8 - Show all commits

View File

@ -31,13 +31,17 @@ ios-arm64:
CGO_ENABLED=1 \
GOOS=darwin \
GOARCH=arm64 \
SDK=iphoneos \
CGO_CFLAGS="-fembed-bitcode" \
CC=$(PWD)/clangwrap.sh \
go build -buildmode=c-archive -tags ios -o $(IOS_OUT)/arm64.a .
ios-x86_64:
CGO_ENABLED=1 \
GOOS=darwin \
GOARCH=amd64 \
SDK=iphonesimulator \
CC=$(PWD)/clangwrap.sh \
go build -buildmode=c-archive -tags ios -o $(IOS_OUT)/x86_64.a .
ios: ios-arm64 ios-x86_64