mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 12:42:11 +00:00
Make toolchain check work if version is provided.
[SVN r52437]
This commit is contained in:
@@ -5,7 +5,7 @@ local dll-suffix = so ;
|
||||
local prefix = "" ;
|
||||
if [ modules.peek : OS ] in CYGWIN NT
|
||||
{
|
||||
if $toolset = gcc
|
||||
if [ MATCH ^(gcc) : $toolset ]
|
||||
{
|
||||
dll-suffix = dll ;
|
||||
}
|
||||
@@ -18,7 +18,7 @@ else
|
||||
{
|
||||
prefix = "lib" ;
|
||||
}
|
||||
if $toolset = darwin
|
||||
if [ MATCH ^(darwin) : $toolset ]
|
||||
{
|
||||
dll-suffix = dylib ;
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ local dll-suffix = so ;
|
||||
local prefix = "" ;
|
||||
if [ modules.peek : OS ] in CYGWIN NT
|
||||
{
|
||||
if $toolset = gcc
|
||||
if [ MATCH ^(gcc) : $toolset ]
|
||||
{
|
||||
dll-suffix = dll ;
|
||||
}
|
||||
@@ -22,7 +22,7 @@ else
|
||||
{
|
||||
prefix = "lib" ;
|
||||
}
|
||||
if $toolset = darwin
|
||||
if [ MATCH ^(darwin) : $toolset ]
|
||||
{
|
||||
dll-suffix = dylib ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user