mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 13:35:00 +00:00
Support additional tagging of binaries by Python version.
This commit is contained in:
parent
129d40c71a
commit
14ea095970
2 changed files with 18 additions and 0 deletions
5
Jamroot
5
Jamroot
|
@ -186,6 +186,11 @@ rule tag ( name : type ? : property-set )
|
|||
return [ boostcpp.tag $(name) : $(type) : $(property-set) ] ;
|
||||
}
|
||||
|
||||
rule python-tag ( name : type ? : property-set )
|
||||
{
|
||||
return [ boostcpp.python-tag $(name) : $(type) : $(property-set) ] ;
|
||||
}
|
||||
|
||||
rule handle-static-runtime ( properties * )
|
||||
{
|
||||
# Using static runtime with shared libraries is impossible on Linux, and
|
||||
|
|
13
boostcpp.jam
13
boostcpp.jam
|
@ -163,6 +163,19 @@ rule tag ( name : type ? : property-set )
|
|||
}
|
||||
}
|
||||
|
||||
# Specialized tag function to use for libraries linking to Python.
|
||||
# Appends value of --python-buildid if provided.
|
||||
rule python-tag ( name : type ? : property-set )
|
||||
{
|
||||
local result = $(name) ;
|
||||
if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB && $(PYTHON_ID)
|
||||
{
|
||||
result = $(result)-$(PYTHON_ID) ;
|
||||
}
|
||||
|
||||
# forward to the boost tagging rule
|
||||
return [ tag $(result) : $(type) : $(property-set) ] ;
|
||||
}
|
||||
|
||||
################################################################################
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue