diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-09-13 22:09:47 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-09-26 10:51:48 +1300 |
commit | 40c83f1074443a76643d02b1c2d91d0bf4dbc1fa (patch) | |
tree | 6b4544796bee969af9b44c3ac4cb6e039373a0cd /samples | |
parent | 9d9bee0414e2be38c1a3432b87d40f9512b8d0ce (diff) | |
download | crosstool-ng-40c83f1074443a76643d02b1c2d91d0bf4dbc1fa.tar.gz crosstool-ng-40c83f1074443a76643d02b1c2d91d0bf4dbc1fa.tar.bz2 crosstool-ng-40c83f1074443a76643d02b1c2d91d0bf4dbc1fa.zip |
samples: Disable CC_GCC_ENABLE_DEFAULT_PIE with older glibc
glibc versions prior to 2.23 don't compile successfully with
--enable-default-pie. While it would be nice to automatically prevent
this from being selectable the simplest thing is to update the sample
configs that use the older glibc versions to avoid the problem.
Fixes #1819
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/i686-ubuntu14.04-linux-gnu/crosstool.config | 1 | ||||
-rw-r--r-- | samples/x86_64-centos7-linux-gnu/crosstool.config | 1 | ||||
-rw-r--r-- | samples/x86_64-ubuntu14.04-linux-gnu/crosstool.config | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/samples/i686-ubuntu14.04-linux-gnu/crosstool.config b/samples/i686-ubuntu14.04-linux-gnu/crosstool.config index 4a5bb925..cfe9c65d 100644 --- a/samples/i686-ubuntu14.04-linux-gnu/crosstool.config +++ b/samples/i686-ubuntu14.04-linux-gnu/crosstool.config @@ -7,4 +7,5 @@ CT_KERNEL_LINUX=y CT_LINUX_V_3_13=y # CT_KERNEL_LINUX_INSTALL_CHECK is not set CT_GLIBC_V_2_19=y +# CT_CC_GCC_ENABLE_DEFAULT_PIE is not set CT_CC_LANG_CXX=y diff --git a/samples/x86_64-centos7-linux-gnu/crosstool.config b/samples/x86_64-centos7-linux-gnu/crosstool.config index cfe8fa42..d018119a 100644 --- a/samples/x86_64-centos7-linux-gnu/crosstool.config +++ b/samples/x86_64-centos7-linux-gnu/crosstool.config @@ -7,4 +7,5 @@ CT_KERNEL_LINUX=y CT_LINUX_V_3_10=y # CT_KERNEL_LINUX_INSTALL_CHECK is not set CT_GLIBC_V_2_17=y +# CT_CC_GCC_ENABLE_DEFAULT_PIE is not set CT_CC_LANG_CXX=y diff --git a/samples/x86_64-ubuntu14.04-linux-gnu/crosstool.config b/samples/x86_64-ubuntu14.04-linux-gnu/crosstool.config index 15380f0d..ece4ef6f 100644 --- a/samples/x86_64-ubuntu14.04-linux-gnu/crosstool.config +++ b/samples/x86_64-ubuntu14.04-linux-gnu/crosstool.config @@ -7,4 +7,5 @@ CT_KERNEL_LINUX=y CT_LINUX_V_3_13=y # CT_KERNEL_LINUX_INSTALL_CHECK is not set CT_GLIBC_V_2_19=y +# CT_CC_GCC_ENABLE_DEFAULT_PIE is not set CT_CC_LANG_CXX=y |