public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/egallager/heads/autotools-tinkering)] run autoscan
@ 2022-05-25  4:11 Eric Gallager
  0 siblings, 0 replies; only message in thread
From: Eric Gallager @ 2022-05-25  4:11 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:5fc3b384addd284d037024e03a789bc2d022c0e9

commit 5fc3b384addd284d037024e03a789bc2d022c0e9
Author: Eric Gallager <egallager@gcc.gnu.org>
Date:   Wed May 25 00:11:44 2022 -0400

    run autoscan

Diff:
---
 .gitignore     |  1 +
 configure.ac   |  9 +++++++
 configure.scan | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 90 insertions(+)

diff --git a/.gitignore b/.gitignore
index 14ee0325176..e76131835ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,6 +21,7 @@
 .libs
 
 autom4te.cache
+autoscan.log
 config.cache
 config.h
 config.intl
diff --git a/configure.ac b/configure.ac
index 33d4d775419..1a805b17d85 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,6 +31,15 @@ m4_include([ltversion.m4])
 m4_include([lt~obsolete.m4])
 m4_include([config/isl.m4])
 
+dnl# FIXME: single-argument calls to AC\_INIT are deprecated, but updating this
+dnl# to the new 3-argument version is rather complicated for multiple reasons:
+dnl# 1. This configure script is share between binutils-gdb and gcc, so there isn't
+dnl#    a single simple FULL-PACKAGE-NAME to use
+dnl# 2. There's tooling in place to update the version number automatically as
+dnl#    part of the release process, so if we added a VERSION argument here, that
+dnl#    would have to get updated regularly, too
+dnl# 3. There's a --with-bugurl=URL flag, so we can't declare a BUG-REPORT-ADDRESS
+dnl#    argument here if we also want to respect that flag
 AC_INIT(move-if-change)
 AC_DISABLE_OPTION_CHECKING
 
diff --git a/configure.scan b/configure.scan
new file mode 100644
index 00000000000..2d7cff8e656
--- /dev/null
+++ b/configure.scan
@@ -0,0 +1,80 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ([2.69])
+AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
+AC_CONFIG_SRCDIR([include/longlong.h])
+AC_CONFIG_HEADERS([config.h])
+
+# Checks for programs.
+AC_PROG_CXX
+AC_PROG_AWK
+AC_PROG_YACC
+AC_PROG_CC
+AC_PROG_CPP
+AC_PROG_LEX
+AC_PROG_INSTALL
+AC_PROG_LN_S
+AC_PROG_MAKE_SET
+AC_PROG_OBJC
+AC_PROG_RANLIB
+AC_PROG_GO
+
+# Checks for libraries.
+
+# Checks for header files.
+AC_CHECK_HEADERS([float.h inttypes.h limits.h stddef.h stdint.h stdlib.h string.h unistd.h])
+
+# Checks for typedefs, structures, and compiler characteristics.
+AC_CHECK_HEADER_STDBOOL
+AC_C_INLINE
+AC_TYPE_INT32_T
+AC_TYPE_INT64_T
+AC_FUNC_OBSTACK
+AC_TYPE_OFF_T
+AC_C_RESTRICT
+AC_TYPE_SIZE_T
+AC_TYPE_UINT16_T
+AC_TYPE_UINT32_T
+AC_TYPE_UINT64_T
+AC_TYPE_UINT8_T
+AC_CHECK_TYPES([ptrdiff_t])
+
+# Checks for library functions.
+AC_FUNC_ALLOCA
+AC_FUNC_STRNLEN
+AC_FUNC_STRTOD
+AC_CHECK_FUNCS([gettimeofday memset pow re_comp regcomp sqrt strcasecmp strtol strtoul strtoull strverscmp])
+
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_SUBDIRS([c++tools
+                   fixincludes
+                   gcc
+                   gnattools
+                   gotools
+                   intl
+                   libada
+                   libatomic
+                   libbacktrace
+                   libcc1
+                   libcody
+                   libcpp
+                   libdecnumber
+                   libffi
+                   libgcc
+                   libgfortran
+                   libgo
+                   libgomp
+                   libiberty
+                   libitm
+                   libobjc
+                   liboffloadmic
+                   libphobos
+                   libquadmath
+                   libsanitizer
+                   libssp
+                   libstdc++-v3
+                   libvtv
+                   lto-plugin
+                   zlib])
+AC_OUTPUT


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-25  4:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-25  4:11 [gcc(refs/users/egallager/heads/autotools-tinkering)] run autoscan Eric Gallager

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).