Re: [Boost-users] Compilation errors 1.39, 1.41
Hello again, I just found out that the issue with double targets only occurs when I build debug and release at once (as I usually do): bjam debug release stage I also found out, that with version 1.41 the math libraries correctly detect missing support for long double on my platform, so I guess the issue was solved. Thanks, -- Christian Pfligersdorffer Software Engineering http://www.eos.info
Pfligersdorffer, Christian wrote:
Hello again,
I just found out that the issue with double targets only occurs when I build debug and release at once (as I usually do):
bjam debug release stage
You need to either build a single variant at a time, or pass either --layout=tagged or --layout=versioned. The default naming in 1.41 is 'system' (the same naming you can see in /usr/lib) and it does not permit debug+release. - Volodya
boost-users-bounces@lists.boost.org on :
Pfligersdorffer, Christian wrote:
Hello again,
I just found out that the issue with double targets only occurs when I build debug and release at once (as I usually do):
bjam debug release stage
You need to either build a single variant at a time, or pass either --layout=tagged or --layout=versioned.
The default naming in 1.41 is 'system' (the same naming you can see in /usr/lib) and it does not permit debug+release.
Well, I noticed the altered library names and should have guessed that on my own... Thanks for still telling me! Regards, -- Christian Pfligersdorffer Software Engineering http://www.eos.info
participants (2)
-
Pfligersdorffer, Christian
-
Vladimir Prus