Merge pull request #113 from robdaemon/fix-gcc-15

Fixes build problems on gcc 15
This commit is contained in:
Norayr Chilingarian 2026-02-04 12:51:31 +04:00 committed by GitHub
commit 65baeb77a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,7 @@ void determineOS() {
#define optimize "" // " -O1" #define optimize "" // " -O1"
// FIXME ignoring warning floods that possibly are problems // FIXME ignoring warning floods that possibly are problems
#define ignore_gcc_warning_flood " -Wno-stringop-overflow" #define ignore_gcc_warning_flood " -Wno-stringop-overflow -std=gnu11"
#define ignore_clang_warning_flood " -Wno-deprecated-non-prototype" #define ignore_clang_warning_flood " -Wno-deprecated-non-prototype"
void determineCCompiler() { void determineCCompiler() {