From: Mikko Rasa Date: Sun, 8 Jul 2018 14:47:49 +0000 (+0300) Subject: Use build info to store static library dependencies X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=42d80b43a463627e0e7edf6df3be9bd4b976d74c;hp=42d80b43a463627e0e7edf6df3be9bd4b976d74c;p=builder.git Use build info to store static library dependencies In some cases it's desirable to link a particular library statically but use dynamic linking for its dependencies. In particular, libpng and libvorbis depend on libm, which is considered a part of libc and must be linked in the same way. Now all libraries are looked up according to libmode, making such linking possible. ---