summaryrefslogtreecommitdiffstats
path: root/configure.pri
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2019-05-27 14:44:42 +0200
committerMichal Klocek <michal.klocek@qt.io>2019-05-27 14:56:30 +0200
commit6363ba8e5113af7336357ef2832fe1bce4fbdb84 (patch)
treec3c2ce8810fc530c3535621476769dc86c559284 /configure.pri
parent4a488678219267cde4694ae3f3f7dbf390be4140 (diff)
Pump up glibc required version
We need glibc wrappers for PTRACE_GET_THREAD_AREA system calls, which were added in b05cb613e7a of glibc. Change-Id: Ifee2b0eb9f4e0f85e990f3d78354804ec859795c Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'configure.pri')
-rw-r--r--configure.pri4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.pri b/configure.pri
index d03d3c8e0..58899b9ef 100644
--- a/configure.pri
+++ b/configure.pri
@@ -96,10 +96,10 @@ defineTest(qtConfTest_detectGlibc) {
qtLog("Found libc version: $$version")
version = $$split(version,'.')
version = $$member(version, 1)
- greaterThan(version, 16) {
+ greaterThan(version, 26) {
return(true)
}
- qtLog("Detected too old version of glibc. Required min 2.17.")
+ qtLog("Detected too old version of glibc. Required min 2.27.")
return(false)
}
qtLog("No ldd found. Assuming right version of glibc.")