Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions boost-context-features.jam
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ rule default_abi ( properties * )

if <target-os>windows in $(properties) { tmp = ms ; }
else if <target-os>cygwin in $(properties) { tmp = ms ; }
else if [ os.name ] = "NT" { tmp = ms ; }
else if [ os.name ] = "CYGWIN" { tmp = ms ; }
else if $(arch)
{
if <architecture>arm in $(properties) { tmp = aapcs ; }
Expand All @@ -74,7 +72,9 @@ rule default_abi ( properties * )
# Avoid using "in" operator here: it returns true if its left
# part is empty, which happens e.g. with os.platform on
# some uncommon architectures.
if [ os.platform ] = "ARM" { tmp = aapcs ; }
if [ os.name ] = "NT" { tmp = ms ; }
else if [ os.name ] = "CYGWIN" { tmp = ms ; }
else if [ os.platform ] = "ARM" { tmp = aapcs ; }
else if [ os.platform ] = "ARM64" { tmp = aapcs ; }
else if [ os.platform ] = "MIPS32" { tmp = o32 ; }
else if [ os.platform ] = "MIPS64" { tmp = n64 ; }
Expand Down
Loading