forked from OSchip/llvm-project
a721db24c0
The darwin linker operates differently than the gnu linker with respect to libraries. The darwin linker first links in all object files from the command line, then to resolve any remaining undefines, it repeatedly iterates over libraries on the command line until either all undefines are resolved or no undefines were resolved in the last pass. When Shankar made the InputGraph model, the plan for darwin was for the darwin driver to place all libraries in a group at the end of the InputGraph. Thus making the darwin model a subset of the gnu model. But it turns out that does not work because the driver cannot tell if a file is an object or library until it has been loaded, which happens later. This solution is to subclass InputGraph for darwin and just iterate the graph the way darwin linker needs. llvm-svn: 220330 |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
DefinedAtom.cpp | ||
Error.cpp | ||
File.cpp | ||
InputGraph.cpp | ||
LinkingContext.cpp | ||
Makefile | ||
Resolver.cpp | ||
SymbolTable.cpp | ||
TODO.txt |