2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

Allow for toolset chaining

[SVN r15814]
This commit is contained in:
Dave Abrahams
2002-10-09 02:50:58 +00:00
parent 9e696814a3
commit e7a8a10df9
2 changed files with 14 additions and 0 deletions

View File

@@ -8,6 +8,13 @@
set-as-singleton MINGW_ROOT_DIRECTORY MINGW_BIN_DIRECTORY MINGW_INCLUDE_DIRECTORY MINGW_STDLIB_DIRECTORY ;
# compute directories for invoking MINGW
# Get these variable set on the targets so that we can re-use the
# build actions for other toolsets using this one as a base.
flags mingw MINGW_BIN_DIRECTORY ;
flags mingw MINGW_INCLUDE_DIRECTORY ;
flags mingw MINGW_STDLIB_DIRECTORY ;
MINGW_BIN_DIRECTORY ?= $(MINGW_ROOT_DIRECTORY)$(SLASH)bin$(SLASH) ;
MINGW_BIN_DIRECTORY ?= "" ; # Don't clobber tool names if MINGW_ROOT_DIRECTORY not set
MINGW_INCLUDE_DIRECTORY ?= $(MINGW_ROOT_DIRECTORY)$(SLASH)include ;

View File

@@ -8,6 +8,13 @@
set-as-singleton MINGW_ROOT_DIRECTORY MINGW_BIN_DIRECTORY MINGW_INCLUDE_DIRECTORY MINGW_STDLIB_DIRECTORY ;
# compute directories for invoking MINGW
# Get these variable set on the targets so that we can re-use the
# build actions for other toolsets using this one as a base.
flags mingw MINGW_BIN_DIRECTORY ;
flags mingw MINGW_INCLUDE_DIRECTORY ;
flags mingw MINGW_STDLIB_DIRECTORY ;
MINGW_BIN_DIRECTORY ?= $(MINGW_ROOT_DIRECTORY)$(SLASH)bin$(SLASH) ;
MINGW_BIN_DIRECTORY ?= "" ; # Don't clobber tool names if MINGW_ROOT_DIRECTORY not set
MINGW_INCLUDE_DIRECTORY ?= $(MINGW_ROOT_DIRECTORY)$(SLASH)include ;