Skip to content

Commit 734536f

Browse files
committed
only updates aarch64
1 parent af5ebca commit 734536f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

cmake/TransmuteCommon.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/output)
3535
set(CMAKE_INSTALL_PREFIX ${CMAKE_SOURCE_DIR}/build/output/release)
3636
set(TR_RELEASE_DEST unknown)
3737
if (APPLE)
38-
set(TR_RELEASE_DEST universal-apple-darwin)
38+
set(TR_RELEASE_DEST aarch64-apple-darwin)
3939
elseif (ANDROID)
4040
set(TR_RELEASE_DEST aarch64-linux-android)
4141
elseif (WIN32)
@@ -57,7 +57,7 @@ endif()
5757
# Set the Rust target
5858
set(TR_CRATE_TARGET unknown)
5959
if (APPLE)
60-
set(TR_CRATE_TARGET universal-apple-darwin)
60+
set(TR_CRATE_TARGET aarch64-apple-darwin)
6161
elseif (ANDROID)
6262
set(TR_CRATE_TARGET aarch64-linux-android)
6363
elseif (WIN32)

makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ jsbundle:
7676
darwin:
7777
@echo "Building for darwin(JOBS=${JOBS})..."
7878
@$(call build_crates,aarch64-apple-darwin)
79-
@$(call build_crates,x86_64-apple-darwin)
80-
@$(call create_universal_apple_binary)
8179
ifeq ($(CRATES_ONLY), no)
8280
$(MAKE) -C ./build darwin -j$(JOBS)
8381
endif

0 commit comments

Comments
 (0)