$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] How do I add system library path to Jamfile which is already in the ld search path?
From: Steve Lorimer (steve.lorimer_at_[hidden])
Date: 2014-06-30 19:17:10
Thanks for your responses John and Vladimir
My apologies, I think the problem was due to my project defining
<link>static
project foo
: requirements
<link>static
...
;
krb5 is a shared library, and as such, I needed to override the
<link>static build property
The following therefore works:
lib krb5 : : <link>shared ;
Thanks
Steve