GNU Compiler Collection: Difference between revisions
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
==Static Linking== | ==Static Linking== | ||
[https://stackoverflow.com/questions/6578484/telling-gcc-directly-to-link-a-library-statically stackoverflow] | [https://stackoverflow.com/questions/6578484/telling-gcc-directly-to-link-a-library-statically stackoverflow] | ||
* Use <code>-l:libblah.a</code> instead of <code>- | * Use <code>-static</code> or; | ||
* Use <code>-l:libblah.a</code> instead of <code>-lblah</code> |