mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-11 15:00:08 +08:00
11 lines
488 B
Plaintext
11 lines
488 B
Plaintext
|
This is GNU modular hell, an example package that uses GNU libtool with an
|
||
|
Automake-generated environment to build two simple libraries and programs.
|
||
|
|
||
|
It demonstrates how to build both dynamic and static libraries
|
||
|
that can be dlopened. You need a wrapper (ltdl.c and ltdls.c)
|
||
|
for your dlopen functions. For static libraries we prefix all
|
||
|
non-static symbols with libname___ using the LTEXP(symbol) macro.
|
||
|
When dlopening these static libraries, we cut the prefix off to
|
||
|
get the real name.
|
||
|
|