From 93976ee33a1373a2509aa08070672f94ebcbb4f7 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 20 Nov 2009 13:25:25 +0000 Subject: [PATCH] Use libwhatever.a naming for static libraries on mingw, as that matches how all libraries shipped with mingw are named. Further, we previously used libwhatever.lib, and the linker never searched for this spelling. [SVN r57816] --- src/tools/types/lib.jam | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/types/lib.jam b/src/tools/types/lib.jam index 345385f85..2810f9436 100644 --- a/src/tools/types/lib.jam +++ b/src/tools/types/lib.jam @@ -16,6 +16,7 @@ type.set-generated-target-prefix LIB : cygwin : "cyg" ; type.register STATIC_LIB : a lib : LIB ; type.set-generated-target-suffix STATIC_LIB : windows : lib ; +type.set-generated-target-suffix STATIC_LIB : gcc windows : a ; type.set-generated-target-suffix STATIC_LIB : cygwin : lib ; type.set-generated-target-prefix STATIC_LIB : : lib ;