We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd15495 commit 754b2bcCopy full SHA for 754b2bc
.github/workflows/CI-unixish.yml
@@ -146,7 +146,8 @@ jobs:
146
wget https://github.com/danmar/simplecpp/archive/refs/tags/1.5.1.tar.gz
147
tar xvf 1.5.1.tar.gz
148
make clean
149
- make -j$(nproc) CXXOPTS="-O2 -g3"
+ # TODO: we could also use -O3 but that causes a performance regression with GCC
150
+ make -j$(nproc) CXXOPTS="-O2 -g3 -flto" LDOPTS="-flto"
151
VALGRIND_TOOL=callgrind SIMPLECPP_PATH=simplecpp-1.5.1 ./selfcheck.sh >callgrind.log || (cat callgrind.log && false)
152
cat callgrind.log
153
for f in callgrind.out.*;
0 commit comments