mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 13:35:00 +00:00
fix deduction of architecture and address-model
This commit is contained in:
parent
064f557086
commit
a2b06de074
1 changed files with 20 additions and 11 deletions
31
boostcpp.jam
31
boostcpp.jam
|
@ -620,15 +620,18 @@ rule deduce-address-model ( properties * )
|
|||
: /boost/architecture//64 "64-bit" ] ;
|
||||
result = $(names[$(idx)]) ;
|
||||
|
||||
if $(result)
|
||||
local am = [ property.select <address-model> : $(properties) ] ;
|
||||
if ! $(am)
|
||||
{
|
||||
# Normally, returning composite feature here is equivalent to forcing
|
||||
# constituent properties as well. But we only want to indicate toolset
|
||||
# deduced default, so also pick whatever address-model is explicitly
|
||||
# specified, if any.
|
||||
result = <deduced-address-model>$(result) [ property.select <address-model> : $(properties) ] ;
|
||||
return <deduced-address-model>$(result) ;
|
||||
}
|
||||
return $(result) ;
|
||||
|
||||
if $(am:G=) = $(result)
|
||||
{
|
||||
return <deduced-address-model>$(result) $(am) ;
|
||||
}
|
||||
|
||||
return ;
|
||||
}
|
||||
|
||||
rule address-model ( )
|
||||
|
@ -660,12 +663,18 @@ rule deduce-architecture ( properties * )
|
|||
: /boost/architecture//combined ] ;
|
||||
result = $(names[$(idx)]) ;
|
||||
|
||||
if $(result)
|
||||
local arch = [ property.select <architecture> : $(properties) ] ;
|
||||
if ! $(arch)
|
||||
{
|
||||
# See comment in deduce-address-model.
|
||||
result = <deduced-architecture>$(result) [ property.select <architecture> : $(properties) ] ;
|
||||
return <deduced-architecture>$(result) ;
|
||||
}
|
||||
return $(result) ;
|
||||
|
||||
if $(arch:G=) = $(result)
|
||||
{
|
||||
return <deduced-architecture>$(result) $(arch) ;
|
||||
}
|
||||
|
||||
return ;
|
||||
}
|
||||
|
||||
rule architecture ( )
|
||||
|
|
Loading…
Add table
Reference in a new issue