Support additional tagging of binaries by Python version.

This commit is contained in:
Vladimir Prus 2016-10-28 11:30:41 +03:00 committed by Rene Rivera
parent df4be667f0
commit 235330995e
2 changed files with 18 additions and 0 deletions

View file

@ -182,6 +182,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

View file

@ -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) ] ;
}
################################################################################
#