mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +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++"
|
||||
gcc {
|
||||
message("Detected compiler type gcc")
|
||||
equals(QMAKE_CXX, g++) {
|
||||
message("Detected compiler g++")
|
||||
greaterThan(COMPILER_MAJOR, 10) : {
|
||||
QMAKE_CFLAGS += -Wno-error=stringop-overread
|
||||
QMAKE_CXXFLAGS += -Wno-error=stringop-overread
|
||||
message("Making stringop-overread a non-error")
|
||||
}
|
||||
}
|
||||
clang {
|
||||
message("Detected comiler type clang")
|
||||
equals(QMAKE_CXX, clang++) {
|
||||
message("Detected compiler clang++")
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user