2
0
mirror of https://github.com/boostorg/context.git synced 2026-01-19 04:02:17 +00:00

architecture flag for Apple's combined ha changed to 'arm+x86'

This commit is contained in:
Oliver Kowalke
2022-12-23 11:14:10 +01:00
parent 984f7893ce
commit 5bcc1ab155
2 changed files with 3 additions and 3 deletions

View File

@@ -853,7 +853,7 @@ alias asm_sources
asm/jump_combined_sysv_macho_gas.S
asm/ontop_combined_sysv_macho_gas.S
: <abi>sysv
<architecture>combined
<architecture>arm+x86
<binary-format>mach-o
;

View File

@@ -83,9 +83,9 @@ rule deduce-architecture ( properties * )
{
return <architecture>x86 ;
}
else if [ configure.builds /boost/architecture//combined : $(properties) : combined ]
else if [ configure.builds /boost/architecture//arm+x86 : $(properties) : arm+x86 ]
{
return <architecture>combined ;
return <architecture>arm+x86 ;
}
}
}