diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-08-10 14:24:46 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-08-24 10:01:29 -0300 |
commit | d48813227b63a0d92ea357ea0733229ed74e31ab (patch) | |
tree | 472a32b42a47977ef38e525ed644b3ec805ba48d /sysdeps/unix | |
parent | 4dad97e2a2e510c6b53a0add29a2188714fcf4ab (diff) | |
download | glibc-d48813227b63a0d92ea357ea0733229ed74e31ab.tar glibc-d48813227b63a0d92ea357ea0733229ed74e31ab.tar.gz glibc-d48813227b63a0d92ea357ea0733229ed74e31ab.tar.bz2 glibc-d48813227b63a0d92ea357ea0733229ed74e31ab.zip |
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)
Diffstat (limited to 'sysdeps/unix')
-rwxr-xr-x | sysdeps/unix/sysv/linux/tst-mount-consts.py | 5 |
1 files changed, 5 insertions, 0 deletions
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 |