diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2020-04-18 20:00:35 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2020-04-18 21:06:45 +0200 |
commit | a2cf87a7b1fa1566e2f8f6e2916b098339c19f71 (patch) | |
tree | 71110f116466b7f595b9273892149f246aa42b87 /toolchain/glibc/common.mk | |
parent | 02c5019a35655560ad1e50dbcb0b02ecae9df3b0 (diff) | |
download | upstream-a2cf87a7b1fa1566e2f8f6e2916b098339c19f71.tar.gz upstream-a2cf87a7b1fa1566e2f8f6e2916b098339c19f71.tar.bz2 upstream-a2cf87a7b1fa1566e2f8f6e2916b098339c19f71.zip |
toolchain: glibc: Define minimum support kernel version as 4.14
This will compile glibc in a way that it will only support kernel 4.14
and later. Compatibility code for older kernel versions will be removed.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'toolchain/glibc/common.mk')
-rw-r--r-- | toolchain/glibc/common.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolchain/glibc/common.mk b/toolchain/glibc/common.mk index 99be398d3f..060fb2849e 100644 --- a/toolchain/glibc/common.mk +++ b/toolchain/glibc/common.mk @@ -60,7 +60,8 @@ GLIBC_CONFIGURE:= \ --without-gd \ --without-cvs \ --enable-add-ons \ - --$(if $(CONFIG_SOFT_FLOAT),without,with)-fp + --$(if $(CONFIG_SOFT_FLOAT),without,with)-fp \ + --enable-kernel=4.14.0 export libc_cv_ssp=no export libc_cv_ssp_strong=no |