Update the default compilation options#15
Open
atrosinenko wants to merge 2 commits intoatrosinenko/fix-llvm-test-suite-cmake-examplefrom
Open
Update the default compilation options#15atrosinenko wants to merge 2 commits intoatrosinenko/fix-llvm-test-suite-cmake-examplefrom
atrosinenko wants to merge 2 commits intoatrosinenko/fix-llvm-test-suite-cmake-examplefrom
Conversation
atrosinenko
commented
Nov 21, 2025
5c748c2 to
e870cac
Compare
43c36c9 to
300e7f7
Compare
e870cac to
f0f15f1
Compare
300e7f7 to
e4dc75c
Compare
e4dc75c to
a381f17
Compare
a0b6c39 to
07d6641
Compare
Base automatically changed from
atrosinenko/docker-emergency-shell
to
master
February 28, 2026 10:47
Recent versions of Clang support `-fptrauth-elf-got` as a compiler driver option, thus do not use `-Xclang ...` anymore. Passing this option through the Clang driver makes it possible to override it by `-fno-ptrauth-elf-got` without modifying the *.cfg files. Additionally, enable more assertions by default: * Build LLVM with LLVM_ENABLE_ASSERTIONS * Check MachineInstr produced by the backend
a381f17 to
aacf545
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Recent versions of Clang support
-fptrauth-elf-gotas a compiler driver option, thus do not use-Xclang ...anymore. Passing this option through the Clang driver makes it possible to override it by-fno-ptrauth-elf-gotwithout modifying the *.cfg files.Additionally, build LLVM with LLVM_ENABLE_ASSERTIONS by default and introduce EXTRA_FLAGS_COMMON variable for convenience.