Trying to fix internal compiler error in GCC.
This commit is contained in:
parent
a85595ef3d
commit
cb4083fa17
|
@ -705,8 +705,14 @@ Module {
|
||||||
|
|
||||||
if (Utilities.versionCompare(cpp.compilerVersion, "11") >= 0) {
|
if (Utilities.versionCompare(cpp.compilerVersion, "11") >= 0) {
|
||||||
debugFlags.push(
|
debugFlags.push(
|
||||||
"-Wctad-maybe-unsupported",
|
"-Wctad-maybe-unsupported"
|
||||||
"-Wmismatched-tags" // bugged in gcc 10
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (qbs.targetOS.contains("unix") && !qbs.targetOS.contains("macos") &&
|
||||||
|
Utilities.versionCompare(cpp.compilerVersion, "10") >= 0) {
|
||||||
|
debugFlags.push(
|
||||||
|
"-Wno-mismatched-tags" // bugged in gcc
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user