| commit | 5be1024ea7518b8823fa97c00cbda7ea29b0a259 | [log] [tgz] |
|---|---|---|
| author | David Spickett <david.spickett@linaro.org> | Wed Oct 09 09:15:56 2024 +0100 |
| committer | GitHub <noreply@github.com> | Wed Oct 09 09:15:56 2024 +0100 |
| tree | aea0f8fd3beddcced9c114f0246379f0e4dae5cf | |
| parent | de4f2c976f9fa11173c71b2b070225c9be89ceef [diff] |
[ci] Use check-compiler-rt target for testing compiler-rt (#111515) Instead of "check-all" which leads to us running some tests twice if there are other "check-..." targets. For example on one of my PRs this script produced: ``` commands: - './.ci/monolithic-linux.sh "clang;clang;lld;clang-tools-extra;compiler-rt;llvm" "check-all check-clang check-clang-tools" "libcxx;libcxxabi;libunwind" "check-cxx check-cxxabi check-unwind"' commands: - 'C:\BuildTools\Common7\Tools\VsDevCmd.bat -arch=amd64 -host_arch=amd64' - 'bash .ci/monolithic-windows.sh "clang;clang-tools-extra;llvm" "check-clang check-clang-tools"' ``` Which meant that Linux ran the clang and clang-tools tests twice. These extra tests were about 24% of the test run and increased testing time (on my local machine) by 45%. This problem can also happen with other projects but there isn't a simple fix like this one at the moment. * pstl has a check-pstl target but it is not part of check-all and when I tried it locally I couldn't build it. * libclc has no check- target. I will deal with those projects later.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.