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 d381ec2 commit 13512d1Copy full SHA for 13512d1
.github/workflows/CI-unixish.yml
@@ -149,7 +149,8 @@ jobs:
149
rm -f 1.5.1.tar.gz
150
151
make clean
152
- make -j$(nproc) CXXOPTS="-O2 -g3" simplecpp
+ # TODO: we could also use -O3 but that causes a performance regression with GCC
153
+ make -j$(nproc) CXXOPTS="-O2 -g3 -flto" LDOPTS="-flto" simplecpp
154
VALGRIND_TOOL=callgrind SIMPLECPP_PATH=simplecpp-1.5.1 ./selfcheck.sh >callgrind.log || (cat callgrind.log && false)
155
cat callgrind.log
156
0 commit comments