1 dnl Copyright (C) 2000-2022 Free Software Foundation, Inc.
3 dnl GCC is free software; you can redistribute it and/or modify
4 dnl it under the terms of the GNU General Public License as published by
5 dnl the Free Software Foundation; either version 3, or (at your option)
8 dnl GCC is distributed in the hope that it will be useful,
9 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
10 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 dnl GNU General Public License for more details.
13 dnl You should have received a copy of the GNU General Public License
14 dnl along with GCC; see the file COPYING3. If not see
15 dnl <http://www.gnu.org/licenses/>.
17 dnl See whether strncmp reads past the end of its string parameters.
18 dnl On some versions of SunOS4 at least, strncmp reads a word at a time
19 dnl but erroneously reads past the end of strings. This can cause
20 dnl a SEGV in some cases.
21 AC_DEFUN([libiberty_AC_FUNC_STRNCMP],
22 [AC_REQUIRE([AC_FUNC_MMAP])
23 AC_CACHE_CHECK([for working strncmp], ac_cv_func_strncmp_works,
25 /* Test by Jim Wilson and Kaveh Ghazi.
26 Check whether strncmp reads past the end of its string parameters. */
27 #include <sys/types.h>
33 #ifdef HAVE_SYS_MMAN_H
39 #define MAP_ANON MAP_ANONYMOUS
41 #define MAP_ANON MAP_FILE
52 #define MAP_LEN 0x10000
56 #if defined(HAVE_MMAP) || defined(HAVE_MMAP_ANYWHERE)
60 dev_zero = open ("/dev/zero", O_RDONLY);
64 p = (char *) mmap (0, MAP_LEN, PROT_READ|PROT_WRITE,
65 MAP_ANON|MAP_PRIVATE, dev_zero, 0);
67 p = (char *) mmap (0, MAP_LEN, PROT_READ|PROT_WRITE,
68 MAP_ANON|MAP_PRIVATE, -1, 0);
73 char *string = "__si_type_info";
74 char *q = (char *) p + MAP_LEN - strlen (string) - 2;
75 char *r = (char *) p + 0xe;
81 #endif /* HAVE_MMAP || HAVE_MMAP_ANYWHERE */
84 ], ac_cv_func_strncmp_works=yes, ac_cv_func_strncmp_works=no,
85 ac_cv_func_strncmp_works=yes)
86 rm -f core core.* *.core])
87 if test $ac_cv_func_strncmp_works = no ; then
92 dnl See if errno must be declared even when <errno.h> is included.
93 AC_DEFUN([libiberty_AC_DECLARE_ERRNO],
94 [AC_CACHE_CHECK(whether errno must be declared, libiberty_cv_declare_errno,
98 libiberty_cv_declare_errno=no,
99 libiberty_cv_declare_errno=yes)])
100 if test $libiberty_cv_declare_errno = yes
101 then AC_DEFINE(NEED_DECLARATION_ERRNO, 1,
102 [Define if errno must be declared even when <errno.h> is included.])
106 dnl See whether we need a declaration for a function.
107 AC_DEFUN([libiberty_NEED_DECLARATION],
108 [AC_MSG_CHECKING([whether $1 must be declared])
109 AC_CACHE_VAL(libiberty_cv_decl_needed_$1,
111 #include "confdefs.h"
116 #ifdef HAVE_STRINGS_H
126 [char *(*pfn) = (char *(*)) $1],
127 libiberty_cv_decl_needed_$1=no, libiberty_cv_decl_needed_$1=yes)])
128 AC_MSG_RESULT($libiberty_cv_decl_needed_$1)
129 if test $libiberty_cv_decl_needed_$1 = yes; then
130 AC_DEFINE([NEED_DECLARATION_]translit($1, [a-z], [A-Z]), 1,
131 [Define if $1 is not declared in system header files.])
135 # We always want a C version of alloca() compiled into libiberty,
136 # because native-compiler support for the real alloca is so !@#$%
137 # unreliable that GCC has decided to use it only when being compiled
138 # by GCC. This is the part of AC_FUNC_ALLOCA that calculates the
139 # information alloca.c needs.
140 AC_DEFUN([libiberty_AC_FUNC_C_ALLOCA],
141 [AC_CACHE_CHECK(whether alloca needs Cray hooks, ac_cv_os_cray,
142 [AC_EGREP_CPP(webecray,
143 [#if defined(CRAY) && ! defined(CRAY2)
148 ], ac_cv_os_cray=yes, ac_cv_os_cray=no)])
149 if test $ac_cv_os_cray = yes; then
150 for ac_func in _getb67 GETB67 getb67; do
151 AC_CHECK_FUNC($ac_func,
152 [AC_DEFINE_UNQUOTED(CRAY_STACKSEG_END, $ac_func,
153 [Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP
154 systems. This function is required for alloca.c support on those
159 AC_CACHE_CHECK(stack direction for C alloca, ac_cv_c_stack_direction,
160 [AC_TRY_RUN([find_stack_direction ()
162 static char *addr = 0;
167 return find_stack_direction ();
170 return (&dummy > addr) ? 1 : -1;
174 exit (find_stack_direction() < 0);
176 ac_cv_c_stack_direction=1,
177 ac_cv_c_stack_direction=-1,
178 ac_cv_c_stack_direction=0)])
179 AC_DEFINE_UNQUOTED(STACK_DIRECTION, $ac_cv_c_stack_direction,
180 [Define if you know the direction of stack growth for your system;
181 otherwise it will be automatically deduced at run-time.
182 STACK_DIRECTION > 0 => grows toward higher addresses
183 STACK_DIRECTION < 0 => grows toward lower addresses
184 STACK_DIRECTION = 0 => direction of growth unknown])