diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2016-03-08 15:16:40 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2016-03-08 21:20:43 +0100 |
commit | 0b8dedd38f304d796b6b9b349428bea7f1f7065f (patch) | |
tree | d513af4be5a6cbc799617cebd8b27355d6f99a53 | |
parent | 2b35e48c0c547b3f6f81996ce7ad7d67e24c7329 (diff) | |
download | glibc-0b8dedd38f304d796b6b9b349428bea7f1f7065f.tar.gz |
Add sys/auxv.h wrapper to include/sys/
The GNU libc testsuite fails to build on powerpc/ppc64/ppc64le with the
following error:
../sysdeps/powerpc/test-get_hwcap.c:26:22: fatal error: sys/auxv.h: No such file or director
This is because test-get_hwcap.c includes <sys/auxv.h>, but we don't
provide a wrapper in include/sys. This patch adds one.
Changelog:
* include/sys/auxv.h: New file.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | include/sys/auxv.h | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2016-03-08 Aurelien Jarno <aurelien@aurel32.net> + + * include/sys/auxv.h: New file. + 2016-03-08 H.J. Lu <hongjiu.lu@intel.com> [BZ #19759] diff --git a/include/sys/auxv.h b/include/sys/auxv.h new file mode 100644 index 0000000000..dede2c36ac --- /dev/null +++ b/include/sys/auxv.h @@ -0,0 +1 @@ +#include <misc/sys/auxv.h> |