Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert a use of Config->Static. | Rafael Espindola | 2018-02-06 | 1 | -1/+5 |
| | | | | | | | | | | In lld this was the only use of Config->Static where it meant anything else other than "use .a instead of .so". If a program turns out to not use any dynamic libraries, we should produce the same result with and without -static. llvm-svn: 324421 | ||||
* | [lld] Allow rel iplt symbols with dynamic symbol table | Shoaib Meenai | 2017-08-05 | 1 | -0/+19 |
Emit these symbols as long as we're building in a static configuration, even if we're emitting a dynamic symbol table. This is consistent with both bfd and gold. Ordinarily, the combination of -static and -export-dynamic wouldn't make much sense. Unfortunately, cmake versions prior to 3.4 forcefully injected -rdynamic [1], so it seems worthwhile to support. [1] https://cmake.org/cmake/help/v3.4/policy/CMP0065.html Differential Revision: https://reviews.llvm.org/D36350 llvm-svn: 310168 |