CI/Flatpak: Disable SDK CFLAGS

It's setting _GLIBCXX_ASSERTIONS in release builds, which has a
performance hit.
This commit is contained in:
Stenzek 2024-04-25 18:15:37 +10:00
parent f7238a85b5
commit 26917f14c5
No known key found for this signature in database

View file

@ -29,6 +29,10 @@
"build-options": {
"strip": false,
"no-debuginfo": true,
"cflags": "",
"cflags-override": true,
"cxxflags": "",
"cxxflags-override": true,
"config-opts": [
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON",