summaryrefslogtreecommitdiff
path: root/src/support/archive.h
Commit message (Collapse)AuthorAgeFilesLines
* Apply format changes from #2048 (#2059)Alon Zakai2019-04-261-6/+6
| | | Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048
* Code style improvements (#1868)Alon Zakai2019-01-151-1/+1
| | | | * Use modern T p = v; notation to initialize class fields * Use modern X() = default; notation for empty class constructors
* Build fixes/workarounds to support Visual Studio 2013 build, which has ↵juj2016-06-211-2/+2
| | | | trouble with some new C++11 constructs. (#581)
* [Linker] Handle archive filesDerek Schuff2016-05-051-0/+105
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.