On Sun, 2007-09-02 at 11:53 +0200, Roman Rumisek wrote:
> Exists easy way to build multi option libraries (for example: with/without
> debug feature) into different library names (for example:
> liba_d.so and liba.so)?

The easiest way is to build a package multiple times (once per variant),
with different paths and CFLAGS.

e.g.

configure --libdir=/usr/lib/debug CFLAGS=-g
...
configure --libdir=/usr/lib CFLAGS=....
...

Ralf




_______________________________________________
Autoconf mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to