diff --git a/intel-win32-stlport-tools.jam b/intel-win32-stlport-tools.jam new file mode 100644 index 000000000..80f48ca2d --- /dev/null +++ b/intel-win32-stlport-tools.jam @@ -0,0 +1,28 @@ +# Intel Compiler on Windows, using the STLPort Standard Library + +# (C) Copyright David Abrahams 2002. 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. + +# The following #// line will be used by the regression test table generation +# program as the column heading for HTML tables. Must not include version number. +#//Intel
C++

STLport +{ + local INTEL_BASE_MSVC_TOOLSET = msvc-stlport ; + extends-toolset intel-win32 ; + + # Intel's compiler doesn't seem to encode the path to the STLPort + # library in shared libs. This path setting works for the Python + # tests, and seems to be unneeded for the regression tests, but it + # is a slight hack. + local root = [ get-stlport-root ] ; + if ! $(root)/lib in $(PATH) + { + # Stick it at the front of the path because Windows only seems + # to be willing to look so far, then quits! + PATH = $(root)/lib $(PATH) ; + } +} + \ No newline at end of file diff --git a/v1/intel-win32-stlport-tools.jam b/v1/intel-win32-stlport-tools.jam new file mode 100644 index 000000000..80f48ca2d --- /dev/null +++ b/v1/intel-win32-stlport-tools.jam @@ -0,0 +1,28 @@ +# Intel Compiler on Windows, using the STLPort Standard Library + +# (C) Copyright David Abrahams 2002. 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. + +# The following #// line will be used by the regression test table generation +# program as the column heading for HTML tables. Must not include version number. +#//Intel
C++

STLport +{ + local INTEL_BASE_MSVC_TOOLSET = msvc-stlport ; + extends-toolset intel-win32 ; + + # Intel's compiler doesn't seem to encode the path to the STLPort + # library in shared libs. This path setting works for the Python + # tests, and seems to be unneeded for the regression tests, but it + # is a slight hack. + local root = [ get-stlport-root ] ; + if ! $(root)/lib in $(PATH) + { + # Stick it at the front of the path because Windows only seems + # to be willing to look so far, then quits! + PATH = $(root)/lib $(PATH) ; + } +} + \ No newline at end of file