diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2014-11-22 20:53:36 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2014-11-22 20:53:36 +0000 |
commit | 2d3a20632b8bbd0b80d2bbaba6d93032c0fb909b (patch) | |
tree | 53e17c2fe4cf83e296c689afa4ca907520223d09 /gcc/configure | |
parent | c1b4f9c6ecf054ce3a2aa3c9e3c1f4fdfd8f10fd (diff) | |
download | gcc-2d3a20632b8bbd0b80d2bbaba6d93032c0fb909b.zip gcc-2d3a20632b8bbd0b80d2bbaba6d93032c0fb909b.tar.gz gcc-2d3a20632b8bbd0b80d2bbaba6d93032c0fb909b.tar.bz2 |
re PR other/63694 (Build error compiling asan.c: strtoull undeclared)
PR other/63694
* libiberty/configure.ac: Check for strtol, strtoul, strtoll and strtoull
declarations.
* libiberty/configure: Regenerated.
* gcc/configure.ac: Check for strtol, strtoul, strtoll and strtoull
declarations.
* gcc/configure: Regenerated.
* gcc/config.in: Regenerated.
From-SVN: r217972
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure index 66c6a18..4f9d1df 100755 --- a/gcc/configure +++ b/gcc/configure @@ -10623,6 +10623,7 @@ saved_CXXFLAGS="$CXXFLAGS" CXXFLAGS="$CXXFLAGS -I${srcdir} -I${srcdir}/../include $GMPINC" for ac_func in getenv atol asprintf sbrk abort atof getcwd getwd \ stpcpy strnlen strsignal strstr strverscmp \ + strtol strtoul strtoll strtoull \ errno snprintf vsnprintf vasprintf malloc realloc calloc \ free basename getopt clock getpagesize ffs clearerr_unlocked feof_unlocked ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked putchar_unlocked putc_unlocked do @@ -18146,7 +18147,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 18149 "configure" +#line 18150 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -18252,7 +18253,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 18255 "configure" +#line 18256 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |