commit | ebdf2e06ffbf1cc0d41f159bf02a7f35947626ee | [log] [tgz] |
---|---|---|
author | Mikhail R. Gadelha <mikhail@igalia.com> | Sat May 03 18:10:13 2025 -0300 |
committer | GitHub <noreply@github.com> | Sat May 03 18:10:13 2025 -0300 |
tree | 4377c50596748de99a40dd277440ad285cd0d0d6 | |
parent | 8d8a3d9fdcbe823b94e2821b7beb8ead5288b14e [diff] |
[libc] Add missing dependency for test target (#138423) It seems we were missing a dependency when adding a new test target, e.g., test libc.test.src.math.sqrt_test.__unit__ would create a custom target in the form of: ``` add_custom_target( libc.test.src.__support.FPUtil.dyadic_float_test.__unit__ COMMAND ${LIBC_UNITTEST_ENV} ${CMAKE_CROSSCOMPILING_EMULATOR} libc.test.src.__support.FPUtil.dyadic_float_test.__unit__.__build__ COMMENT Running unit test libc.test.src.__support.FPUtil.dyadic_float_test.__unit__ ) ``` but it wouldn't set that it depends on libc.test.src.__support.FPUtil.dyadic_float_test.__unit__.__build__ being built. For some reason, it would break the rv32 buildbot, as it would try to run a test but the __build__ is nowhere to be found, since it wasn't built in the first place.
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.