2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

Add compiler specific bin dir to lib paths, as it contains important runtime dynamic libraries, for example for mingw.

[SVN r34319]
This commit is contained in:
Rene Rivera
2006-06-16 21:52:54 +00:00
parent 6398c56973
commit 708298cb2f

View File

@@ -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) ;