Skip to content

Commit 3ce67f1

Browse files
authored
Pass correct targets for arm64 windows builds.
1 parent fe5c6c7 commit 3ce67f1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

makefile.cargo

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ ifeq ($(findstring x86_64,$(TARGET)),x86_64)
121121
else ifeq ($(findstring i686,$(TARGET)),i686)
122122
# This is the correct target for MSVC builds
123123
CONFIGURE_FLAGS += --target=i686-pc-mingw32 --host=x86_64-pc-mingw32
124+
else ifeq ($(findstring aarch64,$(TARGET)),aarch64)
125+
# This is the correct target for MSVC builds
126+
CONFIGURE_FLAGS += --target=aarch64-windows-mingw32 --host=x86_64-pc-mingw32
124127
endif
125128
MOZ_TOOLS=/
126129

0 commit comments

Comments
 (0)