diff options
author | brobecke <brobecke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-06 21:37:49 +0000 |
---|---|---|
committer | brobecke <brobecke@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-06 21:37:49 +0000 |
commit | 2ed4d1b7a5f4cb2b174b0f3048bc7c930d24a0d7 (patch) | |
tree | 87f6ebd7720d3b31abfe3c7134571641ebf1b831 /libiberty/configure.ac | |
parent | 7821c1b5d2dc5c65eeca7f5a662b1e3aca8ff7ff (diff) | |
download | gcc-2ed4d1b7a5f4cb2b174b0f3048bc7c930d24a0d7.tar.gz |
Do not use libiberty's getpagesize on Android
libiberty/ChangeLog:
* configure.ac: Set AC_CV_FUNC_GETPAGESIZE to "yes" on
Android hosts.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229893 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/configure.ac')
-rw-r--r-- | libiberty/configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libiberty/configure.ac b/libiberty/configure.ac index 868be8e72d1..e21e3aa5809 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -600,6 +600,12 @@ if test -z "${setobjs}"; then case "${host}" in + *-*-android*) + # On android, getpagesize is defined in unistd.h as a static inline + # function, which AC_CHECK_FUNCS does not handle properly. + ac_cv_func_getpagesize=yes + ;; + *-*-mingw32*) # Under mingw32, sys_nerr and sys_errlist exist, but they are # macros, so the test below won't find them. |