From d8053baead2b04bad28cb2ff9bb166e5dad379c9 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 2 Jul 2006 19:01:52 +0000 Subject: [PATCH] Make static non-import libs have the "lib" prefix to conform to the bbv1 and auto-link existing practice. [SVN r34446] --- v2/tools/types/lib.jam | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v2/tools/types/lib.jam b/v2/tools/types/lib.jam index 21fab6773..e47a0c6fe 100644 --- a/v2/tools/types/lib.jam +++ b/v2/tools/types/lib.jam @@ -15,9 +15,11 @@ if [ os.on-unix ] type STATIC_LIB : lib a : LIB : NT CYGWIN ; type STATIC_LIB : a : LIB : MACOSX ; type STATIC_LIB : a : LIB ; +type.set-generated-target-prefix STATIC_LIB : : lib ; type IMPORT_LIB : : STATIC_LIB ; type.set-generated-target-suffix IMPORT_LIB : : lib ; +type.set-generated-target-prefix IMPORT_LIB : : "" ; type SHARED_LIB : dll : LIB : NT CYGWIN ; type SHARED_LIB : dylib : LIB : MACOSX ;