| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-09-30 | Merge remote-tracking branch 'origin/master' into llvm13 | Andrew Kelley | |
| 2021-09-24 | Spelling corrections (#9833) | Josh Soref | |
| Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Co-authored-by: Josh Soref <jsoref@users.noreply.github.com> | |||
| 2021-08-15 | update clang tools to 13 rc1 | Andrew Kelley | |
| 2021-07-10 | Fix argument forwarding to LLVM on Windows | Martin Wickham | |
| 2021-05-29 | zig ar: workaround for LLVM bug | Andrew Kelley | |
| In this file is copy+pasted WindowsSupport.h from LLVM 12.0.1-rc1. This is so that we can patch it. The upstream sources are incorrectly including "llvm/Config/config.h" which is a private header and thus not available in the include files distributed with LLVM. The patch here changes it to include "llvm/Config/config.h" instead. Patch submitted upstream: https://reviews.llvm.org/D103370 | |||
| 2021-05-28 | stage2: add `zig ar` subcommand | Andrew Kelley | |
| The same entrypoint supports the following commands: * ar * ranlib * dlltool * lib For now, our strategy is to bundle the (renamed) `main()` function of llvm-ar, same as our strategy for `zig clang`. However, as Zig matures, a goal will be to replace the dependency on LLVM with our own implementation of this tool, so that it is available in builds of zig that do not have LLVM extensions enabled. This commit also categorizes the subcommands into categories in the --help menu. | |||
| 2021-05-28 | add llvm-ar.cpp from llvm 12.0.1-rc1 | Andrew Kelley | |
