The solution recommended by libtool docs is to use static linking during development, as I described: Building a libtool application with static binding to local components
To do this, use the --disable-shared option ./configure script.
For example:
./configure --enable-debug --disable-shared
Now the generated executable is a directly executable binary, not a libtool script.
This has the added benefit of reducing assembly time by about half.
nobar
source share