making boost build generic library names (without -mgw45-mt-1_46_1)?
Hi, I wonder how can one make the boost build process create libraries with generic boost library names (like libboost_math_c99f.a) on Windows using mingw / gcc, as opposed to library names like libboost_math_c99f-mgw45-mt-1_46_1.a? Although I understand this makes sense in some contexts, a lot of times this is not convenient. For example, I'd have to update my dependencies every time I change the boost version, or the underlying gcc version changes. moreover, on other platforms (Linux, MacOS), the libraries built have the generic name (libboost_math_c99f.a) How to achieve the same effect on Windows? Akos
Hi Ákos, On Tuesday, 28. June 2011 09:12:09 Ákos Maróy wrote:
Hi,
I wonder how can one make the boost build process create libraries with generic boost library names (like libboost_math_c99f.a) on Windows using mingw / gcc, as opposed to library names like libboost_math_c99f-mgw45-mt-1_46_1.a?
How to achieve the same effect on Windows?
type "bjam --help" and look for --layout=<layout> Determines whether to choose library names and header locations such that multiple versions of Boost or multiple compilers can be used on the same system. And take a closer look http://www.boost.org/doc/libs/1_46_1/more/getting_started/windows.html for more information. Yours, Jürgen -- * Dipl.-Math. Jürgen Hunold ! Ingenieurgesellschaft für * voice: ++49 511 262926 57 ! Verkehrs- und Eisenbahnwesen mbH * fax : ++49 511 262926 99 ! Lister Straße 15 * juergen.hunold@ivembh.de ! www.ivembh.de * * Geschäftsführer: ! Sitz des Unternehmens: Hannover * Prof. Dr.-Ing. Thomas Siefer ! Amtsgericht Hannover, HRB 56965 * PD Dr.-Ing. Alfons Radtke !
Jurgen,
type "bjam --help"
and look for
--layout=<layout> Determines whether to choose library names and header locations such that multiple versions of Boost or multiple compilers can be used on the same system.
And take a closer look
http://www.boost.org/doc/libs/1_46_1/more/getting_started/windows.html
thank you - now I know :) sorry for not reading the documentation more carefully.. Akos
participants (2)
-
Jürgen Hunold
-
Ákos Maróy