Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Linker] Make repeated passes over archive members (#440) | Derek Schuff | 2016-05-05 | 1 | -3/+21 |
| | | | | | | | | | An archive member can depend on any other archive member, so adding a member to the link can introduce new undefined references that must be satisfied. The linker must continue to iterate over the members until nothing new is added to the link. | ||||
* | [Linker] Handle archive files | Derek Schuff | 2016-05-05 | 1 | -0/+55 |
Add a class to parse archive files. Support linking archive files, with archive semantics (i.e. an archive member is linked in if it satisfies an undefined reference). Archive files must be gnu-format archives containing .s files. Add tests for linking semantics. |