From 708298cb2f20ce7846f708d04fe4dbc6baba58c1 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 16 Jun 2006 21:52:54 +0000 Subject: [PATCH] Add compiler specific bin dir to lib paths, as it contains important runtime dynamic libraries, for example for mingw. [SVN r34319] --- src/tools/gcc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/gcc.jam b/src/tools/gcc.jam index b297af9d4..c6d182bc9 100644 --- a/src/tools/gcc.jam +++ b/src/tools/gcc.jam @@ -90,7 +90,7 @@ rule init ( version ? : command * : options * ) # will pick the right onces. # Note that we don't provide a clean way to build 32-bit binary # with 64-bit compiler, but user can always pass -m32 manually. - local lib_path = $(root)/lib $(root)/lib32 $(root)/lib64 ; + local lib_path = $(root)/bin $(root)/lib $(root)/lib32 $(root)/lib64 ; if $(.debug-configuration) { ECHO notice: using gcc libraries :: $(condition) :: $(lib_path) ;