Skip to content

Commit 28722d1

Browse files
committed
Add Windows ARM64 support
Fixes issue : boostorg/boost#1070 Related to PR: boostorg/boost#1077
1 parent 8fed94c commit 28722d1

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

build/Jamfile.v2

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,15 @@ alias asm_sources
189189
<toolset>gcc
190190
;
191191

192-
# ARM64/AAPCS/PE
192+
# ARM64/AAPCS/PE — also allow <abi>ms for Windows on ARM64 (MSVC)
193+
# <abi>ms only applies when
194+
# <architecture>arm <address-model>64 <binary-format>pe,
195+
# so x86/x64 MSVC builds are unaffected.
193196
alias asm_sources
194197
: asm/make_arm64_aapcs_pe_armasm.asm
195198
asm/jump_arm64_aapcs_pe_armasm.asm
196199
asm/ontop_arm64_aapcs_pe_armasm.asm
197-
: <abi>aapcs
200+
: <abi>aapcs,<abi>ms
198201
<address-model>64
199202
<architecture>arm
200203
<binary-format>pe

0 commit comments

Comments
 (0)