On Thu, Jul 17, 2003 at 09:48:03AM -0600, David Thompson wrote:
> It is possible to write programs that know nothing about the binary
> executive. I could write my own program that does my own memory
> management but uses the algorithms with libDX or others. Since this
> is a full toolkit of algorithms as well as the binary--most of us
> always include full libraries as well. Another reason to include them
> is if a user decides to build inboard or outboard modules. These
> types of modules do not link into the runtime, but actually use the
> libraries.
Thanks a lot for the explanation. In this case I'm required to provide
shared versions of the libs as well. Aiee, that doubles the build time
for me. Btw. the workaround for the long zclipQ.c build times only works
for the static case. Maybe you can adjust it to something like
(untested):
zclipQ.lo: ${srcdir}/zclipQ.c
CFLAGS="`echo $(CFLAGS) | sed -e 's/-O[2-9]/-O1/g'`" \
$(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
Regards,
Daniel.