
- gcc-stlport-tools.jam; now use the common stlport.jam. - gcc-tools.jam; use STDLIBPATH instead of GCC_LIB* to set LD_LIBRARY_PATH, as it works on a per target basis. - stlport.jam; minor changes for backward compat, automatic setting of the toolset, and various options that used to be in gcc-stlport.jam. [SVN r15957]
24 lines
711 B
Plaintext
24 lines
711 B
Plaintext
# (C) Copyright David Abrahams and Carlos Pinto Coelho 2001. Permission
|
|
# to copy, use, modify, sell and distribute this software is granted
|
|
# provided this copyright notice appears in all copies. This software is
|
|
# provided "as is" without express or implied warranty, and with no
|
|
# claim as to its suitability for any purpose.
|
|
|
|
# this is simply an extension to the gcc toolset.
|
|
extends-toolset gcc ;
|
|
|
|
if $(NT)
|
|
{
|
|
STLPORT_LIB_BASE_NAME = stlport_cygwin ;
|
|
}
|
|
else
|
|
{
|
|
STLPORT_LIB_BASE_NAME = stlport_gcc ;
|
|
}
|
|
|
|
SEARCH on stlport.jam = $(BOOST_BUILD_PATH) ;
|
|
include stlport.jam ;
|
|
|
|
# pthread is always needed when using the library (i.e. iostreams).
|
|
flags gcc-stlport FINDLIBS <stlport-iostream>on : pthread ;
|