2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-21 02:52:12 +00:00

Support for MinGW-2.0

[SVN r15719]
This commit is contained in:
Dave Abrahams
2002-10-04 21:34:32 +00:00
parent a89955db06
commit 2e60f1b10c
2 changed files with 4 additions and 2 deletions

View File

@@ -25,6 +25,7 @@ local RUN_PATH = $(RUN_PATH) ;
# Decide which toolsets should be treated like an ordinary (unix) GCC installation
gcc-compilers = [ MATCH ^(gcc.*)$ : $(TOOLS) ] ;
mingw-compilers = [ MATCH ^(mingw.*)$ : $(TOOLS) ] ;
gcc-compilers = [ difference $(gcc-compilers) : gcc-nocygwin ] ;
if $(NT)
@@ -106,7 +107,7 @@ rule select-python-library ( toolset variant : properties * )
{
if $(NT)
{
if $(toolset) = mingw
if $(toolset) in $(mingw-compilers)
{
local lib = python$(PYTHON_VERSION_NODOT) ;
if <define>BOOST_DEBUG_PYTHON in $(properties)