llvm with tablegen backend for capstone disassembler
Go to file
Nick Desaulniers dcdb4a36ae
[libc][cmake] append per obj compile options instead of prepending (#77126)
This allows individual object files to override the common compile
commands in
their local CMakeLists' add_object_library call.

For example, the common compile commands contain -Wall and -Wextra.
Before
this patch, the per object COMPILE_OPTIONS were prepended to these, so
that
builds of individual object files could not individually disable
specific
diagnostics from those groups explicitly.

After this patch, the per-object file compile objects are appended to
the list
of compiler flags, enabling this use case.

ARGN is a bit of cmake magic; let's be explicit in the APPEND that we're
appending the compile options.

Link: #77007
2024-01-05 13:31:35 -08:00
.ci [CI] Add check-mlir-python to MLIR pre-merge checks (#72847) 2023-11-25 09:55:32 +00:00
.github test-release.sh: Add a CMake cache file for 3-stage release builds (#75903) 2024-01-04 16:33:06 -08:00
bolt [BOLT] Don't split likely fallthrough in CDSplit (#76164) 2023-12-21 16:17:10 -05:00
clang [OpenMP] Change __tgt_device_image to point to the image (#77003) 2024-01-05 14:29:34 -06:00
clang-tools-extra [include-cleaner] Fix a race issue when editing multiple files. (#76960) 2024-01-05 10:13:33 +01:00
cmake [CMake] Switch the CMP0091 policy (MSVC_RUNTIME_LIBRARY) to the new behaviour 2023-07-17 09:59:05 +03:00
compiler-rt [InstrProf] No linkage prefixes in IRPGO names (#76994) 2024-01-04 16:13:57 -08:00
cross-project-tests [Dexter] Set ShouldBuild=false for Visual Studio solutions (#75045) 2023-12-11 15:19:40 +00:00
flang [mlir][Transforms] GreedyPatternRewriteDriver: Do not CSE constants during iterations (#75897) 2024-01-05 09:22:18 +01:00
libc [libc][cmake] append per obj compile options instead of prepending (#77126) 2024-01-05 13:31:35 -08:00
libclc [LIBCLC] Teach prepare-builtins how to handle text based IR (#66993) 2023-10-03 14:28:01 +02:00
libcxx "Reapply "[Sema] Fix crash on invalid code with parenthesized aggrega… (#76833) 2024-01-05 19:43:10 +01:00
libcxxabi [llvm-cxxfilt] Added the option --no-params (#75348) 2024-01-04 20:42:51 +04:00
libunwind [libunwind] Replace process_vm_readv with SYS_rt_sigprocmask (#74791) 2024-01-05 12:56:02 -08:00
lld [InstrProf] No linkage prefixes in IRPGO names (#76994) 2024-01-04 16:13:57 -08:00
lldb [lldb] Fix expressions that involve nested structs/classes/unions. (#77029) 2024-01-05 09:26:54 -08:00
llvm [AArch64] Add some extra tests for SelectOpt. NFC 2024-01-05 21:04:01 +00:00
llvm-libgcc [llvm-libgcc][CMake] Refactor llvm-libgcc (#65455) 2023-09-18 22:56:03 -07:00
mlir [mlir][mesh] In sharding attr use FlatSymbolRefAttr instead of SymbolRefAttr (#76886) 2024-01-05 07:14:07 -08:00
openmp [libomptarget][flang] Explicitly pass the OpenMP device libraries to tests (#76796) 2024-01-04 08:45:34 +01:00
polly Revert "[polly][ScheduleOptimizer] Fix long compile time(hang) reported in polly (#75141)" 2024-01-02 19:00:58 -08:00
pstl Clear release notes for 18.x 2023-07-25 13:58:49 +02:00
runtimes [CMake] Always define runtimes-test-depends (#73629) 2023-11-28 15:30:52 -08:00
third-party [System][z/OS] Fix per-thread timing error on z/OS (#76947) 2024-01-05 07:57:07 -05:00
utils [bazel][libc][math] Add missing nan(f|l) deps 2024-01-05 11:07:42 -08:00
.arcconfig
.arclint
.clang-format
.clang-tidy Add -misc-use-anonymous-namespace to .clang-tidy 2023-05-06 02:33:20 +03:00
.git-blame-ignore-revs [libc++] Add libc++ clang-formatting commit to git-blame-ignore-revs file 2023-12-18 14:04:41 -05:00
.gitattributes [libc++] Format the code base (#74334) 2023-12-18 14:01:33 -05:00
.gitignore Revert accidental .gitignore change from 9b7763821a 2023-09-07 22:42:05 -07:00
.mailmap .mailmap: add second entry for self 2023-12-19 11:13:19 +00:00
CODE_OF_CONDUCT.md [llvm] Add CODE_OF_CONDUCT.md (#65816) 2023-09-09 10:55:31 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md to remove the not about not accepting PR 2023-09-10 15:21:06 -07:00
LICENSE.TXT [docs] Add LICENSE.txt to the root of the mono-repo 2022-08-24 09:35:00 +02:00
README.md Add Scorecard Action (#69933) 2023-11-01 11:08:26 -07:00
SECURITY.md

The LLVM Compiler Infrastructure

OpenSSF Scorecard

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.

Getting the Source Code and Building LLVM

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.

Getting in touch

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.