Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 4688ed4

Browse files
committed
build all
1 parent de9a6cb commit 4688ed4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ ios/$(arxc): $(wildcard src/*)
99

1010
$(arxcz): ios/$(arxc)
1111
cd ios && \
12-
zip -r ../$(arxcz) $(arxc) && \
12+
( cd $(arxc) && zip -r ../../$(arxcz) . ) && \
1313
swift package compute-checksum ../$(arxcz)

ios/build_xcf.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
MODE=release
44
XCFRAMEWORK_ARGS=""
5-
# aarch64-apple-ios
6-
for arch in x86_64-apple-ios ; do
5+
for arch in x86_64-apple-ios aarch64-apple-ios; do
76
cargo build --target $arch --$MODE
87
tdir=../target/$arch/$MODE
98
mkdir -p $tdir/headers

0 commit comments

Comments
 (0)