mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Separate branches for g++ and clang++
This commit is contained in:
parent
8c9d3362c5
commit
4e1c8a2f52
@ -537,16 +537,16 @@ gcc | clang {
|
|||||||
}
|
}
|
||||||
|
|
||||||
## equals($$QMAKE_CXX, "gcc") : { // guess what! the name is really "g++"
|
## equals($$QMAKE_CXX, "gcc") : { // guess what! the name is really "g++"
|
||||||
gcc {
|
equals(QMAKE_CXX, g++) {
|
||||||
message("Detected compiler type gcc")
|
message("Detected compiler g++")
|
||||||
greaterThan(COMPILER_MAJOR, 10) : {
|
greaterThan(COMPILER_MAJOR, 10) : {
|
||||||
QMAKE_CFLAGS += -Wno-error=stringop-overread
|
QMAKE_CFLAGS += -Wno-error=stringop-overread
|
||||||
QMAKE_CXXFLAGS += -Wno-error=stringop-overread
|
QMAKE_CXXFLAGS += -Wno-error=stringop-overread
|
||||||
message("Making stringop-overread a non-error")
|
message("Making stringop-overread a non-error")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
clang {
|
equals(QMAKE_CXX, clang++) {
|
||||||
message("Detected comiler type clang")
|
message("Detected compiler clang++")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user