Skip to content

Commit 2e00bbc

Browse files
author
bors-servo
authored
Auto merge of #184 - servo:jdm-patch-10, r=asajeffrey
Pass correct targets for arm64 windows builds. <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/mozjs/184) <!-- Reviewable:end -->
2 parents fe5c6c7 + 3ce67f1 commit 2e00bbc

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)