diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2022-11-08 13:27:40 -0800 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-11-09 20:36:04 +1300 |
commit | 9e3c574ec679f1468cdb8cc55fab441a86123b11 (patch) | |
tree | 8983d15a3aa307f58cbba4798d7bfed2ca980a3e /packages/glibc/2.36/0003-Use-compile_c_snippet-to-check-linux_mount.h.patch | |
parent | 20e33c9ec9f2442ddf8c89fee4069c546a863e2e (diff) | |
download | crosstool-ng-9e3c574ec679f1468cdb8cc55fab441a86123b11.tar.gz crosstool-ng-9e3c574ec679f1468cdb8cc55fab441a86123b11.tar.bz2 crosstool-ng-9e3c574ec679f1468cdb8cc55fab441a86123b11.zip |
Backport fixes for glibc and gcc to fix interactions with kernel headers
Reported-by: milkylainen (IRC)
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'packages/glibc/2.36/0003-Use-compile_c_snippet-to-check-linux_mount.h.patch')
-rw-r--r-- | packages/glibc/2.36/0003-Use-compile_c_snippet-to-check-linux_mount.h.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/glibc/2.36/0003-Use-compile_c_snippet-to-check-linux_mount.h.patch b/packages/glibc/2.36/0003-Use-compile_c_snippet-to-check-linux_mount.h.patch new file mode 100644 index 00000000..498d176e --- /dev/null +++ b/packages/glibc/2.36/0003-Use-compile_c_snippet-to-check-linux_mount.h.patch @@ -0,0 +1,32 @@ +From d48813227b63a0d92ea357ea0733229ed74e31ab Mon Sep 17 00:00:00 2001 +From: Adhemerval Zanella <adhemerval.zanella@linaro.org> +Date: Wed, 10 Aug 2022 14:24:46 -0300 +Subject: [PATCH] linux: Use compile_c_snippet to check linux/mount.h + availability + +Checked on x86_64-linux-gnu. + +Reviewed-by: Florian Weimer <fweimer@redhat.com> +(cherry picked from commit e1226cdc6b209539a92d32d5b620ba53fd35abf3) +--- + sysdeps/unix/sysv/linux/tst-mount-consts.py | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/sysdeps/unix/sysv/linux/tst-mount-consts.py b/sysdeps/unix/sysv/linux/tst-mount-consts.py +index a62f803123..be2ef2daf1 100755 +--- a/sysdeps/unix/sysv/linux/tst-mount-consts.py ++++ b/sysdeps/unix/sysv/linux/tst-mount-consts.py +@@ -33,6 +33,11 @@ def main(): + help='C compiler (including options) to use') + args = parser.parse_args() + ++ if glibcextract.compile_c_snippet( ++ '#include <linux/mount.h>', ++ args.cc).returncode != 0: ++ sys.exit (77) ++ + linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc) + # Constants in glibc were updated to match Linux v5.16. When glibc + # constants are updated this value should be updated to match the +-- +2.31.1 |