summaryrefslogtreecommitdiff
path: root/test/linker/main.c
Commit message (Collapse)AuthorAgeFilesLines
* Clang-format c/cpp files in test directory (#4192)Heejin Ahn2021-09-291-3/+1
| | | | | | | | | This clang-formats c/cpp files in test/ directory, and updates clang-format-diff.sh so that it does not ignore test/ directory anymore. bigswitch.cpp is excluded from formatting, because there are big commented-out code blocks, and apparently clang-format messes up formatting in them. Also to make matters worse, different clang-format versions do different things on those commented-out code blocks.
* [Linker] Handle archive filesDerek Schuff2016-05-051-0/+10
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.