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

Changes static lib suffix to "lib" on NT. Use "a" for gcc on all

platforms.


[SVN r16830]
This commit is contained in:
Vladimir Prus
2003-01-09 14:51:45 +00:00
parent fb591ad7bd
commit e1fc0d24d6
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ feature.subfeature toolset gcc : version : : optional ;
# Make the "o" suffix used for gcc toolset on all
# platforms
type.set-generated-target-suffix OBJ : <toolset>gcc : o ;
type.set-generated-target-suffix STATIC_LIB : <toolset>gcc : a ;
# Initializes the gcc toolset

View File

@@ -198,7 +198,7 @@ local rule declare-type ( os * : type : suffixes * : base-type ? : main ? )
declare-type NT : OBJ : obj : : main ;
declare-type : OBJ : o : : main ;
declare-type NT : STATIC_LIB : a : LIB : main ; # this is a lie, should be lib.
declare-type NT : STATIC_LIB : lib : LIB : main ;
declare-type : STATIC_LIB : a : LIB : main ;
declare-type NT CYGWIN : SHARED_LIB : dll : LIB : main ;