$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Paul Floyd (paul.floyd_at_[hidden])
Date: 2006-02-13 17:08:19
Locatelli Jérôme wrote:
> I found that I can't use static boost lib with my dylib program
> library. I test with all dylib (boost libraries and my libraries) or
> all static libraries, it runs in the two cases !!!
"can't use" for what reason - which symbol is not found?
I've never used Darwin, but are you mixing PIC (dylib) code with non-PIC
code (static libs)? As a rule, this is a no-no. Try compiling your
static libs with the PIC option (-kPIC ?).
A+
Paul