about summary refs log tree commit diff
path: root/tests/run-make/compressed-debuginfo
AgeCommit message (Collapse)AuthorLines
2024-08-10remove unused imports from rmake testsRémy Rakic-1/+1
2024-07-01Rollup merge of #127201 - GuillaumeGomez:improve-run-make-support, r=KobzolGuillaume Gomez-2/+2
Improve run-make-support API I think I'll slowly continue this work. Makes things a bit nicer for contributors, so why not. :D r? ``@Kobzol``
2024-07-01Improve `run-make-support` API for `assert*` functionsGuillaume Gomez-2/+2
2024-06-29Refactor `compressed-debuginfo` to use `llvm_readobj`Jerry Wang-3/+2
2024-06-18Migrate `run-make/compressed-debuginfo` to `rmake.rs`Guillaume Gomez-14/+36
2023-11-21Update the minimum external LLVM to 16.Dario Nieuwenhuis-1/+0
2023-09-08tests: use warning output from rustc to catch missing compressionAugie Fackler-4/+2
Using `ld.lld` may have been clever, but that was getting the /system/ ld.lld, not one we may have built as part of building llvm. By using the warning message coming directly from rustc we now correctly skip the zlib and zstd tests when the support is missing.
2023-09-08debuginfo: add compiler option to allow compressed debuginfo sectionsAugie Fackler-0/+20
LLVM already supports emitting compressed debuginfo. In debuginfo=full builds, the debug section is often a large amount of data, and it typically compresses very well (3x is not unreasonable.) We add a new knob to allow debuginfo to be compressed when the matching LLVM functionality is present. Like clang, if a known-but-disabled compression mechanism is requested, we disable compression and emit uncompressed debuginfo sections. The API is different enough on older LLVMs we just pretend the support is missing on LLVM older than 16.