Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Jenkins: Try building debug builds with optimizations
This should reduce the number of timeouts we see in CI while still retaining all the useful TCG debug assertions. Ideally we would use -Og, but that does not work with the Clang 10 compiler installed on the CI nodes as it is too old. Using -O1 (which is equivalent to -Og) results in a false-positive qemu_build_not_reached() with clang10 so we use -O2 for now.
- Loading branch information