intel-win32-stlport-tools.jam

来自「boost库提供标准的C++ API 配合dev c++使用,功能更加强大」· JAM 代码 · 共 32 行

JAM
32
字号
# 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.
#//<a href="http://developer.intel.com/software/products/compilers/">Intel<br>C++</a><br><a href="http://www.stlport.org/">STLport</a>
{
    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 ! [ MATCH $(root)[\\\\/]lib : $(gTOOLSET_LIB_PATH) ]
    {
        # Stick it at the front of the path because Windows only seems
        # to be willing to look so far, then quits!
        gTOOLSET_LIB_PATH = $(root)/lib $(gTOOLSET_LIB_PATH) ;
    }
    if ! [ MATCH $(root)[\\\\/]lib : $(RUN_PATH) ]
    {
        RUN_PATH = $(root)/lib $(RUN_PATH) ;
    }
}
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?