summaryrefslogtreecommitdiffstats
path: root/configure.pri
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2017-02-07 13:45:20 -0800
committerThiago Macieira <thiago.macieira@intel.com>2017-02-08 05:28:01 +0000
commitb6bf2a33f4c33a212da7b58a049b3b5b20b3f327 (patch)
tree1dfea42a30e69a011bfdd2d34e8d29dd1d74581f /configure.pri
parent8798d03e7ef917ae345a673da9abfee4f0a65795 (diff)
Remove outdated check for Apple Clang 2.x and 3.x
The minimum version of Xcode that we support is 5.1 (based on Clang 3.4) Change-Id: I536c32a88bff44dab37afffd14a11f709fb25169 Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'configure.pri')
-rw-r--r--configure.pri12
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.pri b/configure.pri
index 74eef36667..a5e77411ee 100644
--- a/configure.pri
+++ b/configure.pri
@@ -274,18 +274,6 @@ defineTest(qtConfTest_architecture) {
return(true)
}
-defineTest(qtConfTest_avx_test_apple_clang) {
- !*g++*:!*-clang*: return(true)
-
- qtRunLoggedCommand("$$QMAKE_CXX --version", compiler)|return(false)
- contains(compiler, "Apple clang version [23]") {
- # Some clang versions produce internal compiler errors compiling Qt AVX code
- return(false)
- } else {
- return(true)
- }
-}
-
defineTest(qtConfTest_gnumake) {
make = $$qtConfFindInPath("gmake")
isEmpty(make): make = $$qtConfFindInPath("make")