[v1,2/4] Regenerate build files with autoreconf for previous commit
Checks
Commit Message
---
bfd/Makefile.in | 3 ++-
bfd/config.in | 9 +++++++++
bfd/configure | 15 +++++++++++++++
binutils/config.in | 9 +++++++++
binutils/configure | 18 ++++++++++++++++--
gprofng/Makefile.in | 5 ++++-
gprofng/common/config.h.in | 9 +++++++++
gprofng/configure | 15 +++++++++++++++
gprofng/doc/version.texi | 4 ++--
libbacktrace/Makefile.in | 3 +++
libbacktrace/config.h.in | 9 +++++++++
libbacktrace/configure | 16 ++++++++++++++++
libiberty/config.in | 9 +++++++++
libiberty/configure | 16 ++++++++++++++++
14 files changed, 134 insertions(+), 6 deletions(-)
@@ -1131,7 +1131,8 @@ OPTIONAL_BACKENDS_CFILES = \
CONFIG_STATUS_DEPENDENCIES = \
$(srcdir)/config.bfd \
$(srcdir)/configure.host \
- $(srcdir)/development.sh
+ $(srcdir)/development.sh \
+ $(srcdir)/configure.tgt
# These are defined by configure:
@@ -303,6 +303,15 @@
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
+/* Compile for AArch64 targets */
+#undef TC_AARCH64
+
+/* Compile for MIPS targets */
+#undef TC_MIPS
+
+/* Compile for Sparc targets */
+#undef TC_SPARC
+
/* If the compiler supports a TLS storage class, define it to that here */
#undef TLS
@@ -17529,6 +17529,21 @@ $as_echo "#define USE_MMAP 1" >>confdefs.h
;;
esac
+targ=${target}
+. ${srcdir}/configure.tgt
+
+case ${cpu_type} in
+ aarch64*)
+$as_echo "#define TC_AARCH64 1" >>confdefs.h
+ ;;
+ sparc*)
+$as_echo "#define TC_SPARC 1" >>confdefs.h
+ ;;
+ mips*)
+$as_echo "#define TC_MIPS 1" >>confdefs.h
+ ;;
+esac
+
ac_config_files="$ac_config_files Makefile bfd-in3.h:bfd-in2.h po/Makefile.in:po/Make-in"
@@ -223,6 +223,15 @@
/* Define to 1 if user symbol names have a leading underscore, 0 if not. */
#undef TARGET_PREPENDS_UNDERSCORE
+/* Compile for AArch64 targets */
+#undef TC_AARCH64
+
+/* Compile for MIPS targets */
+#undef TC_MIPS
+
+/* Compile for Sparc targets */
+#undef TC_SPARC
+
/* Define to 1 if the type of the st_atim member of a struct stat is struct
timespec. */
#undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC
@@ -16600,9 +16600,23 @@ cat >>confdefs.h <<_ACEOF
_ACEOF
-# Emulation
-targ=$target
+targ=${target}
. ${srcdir}/configure.tgt
+
+# Target-specific definitions
+case ${cpu_type} in
+ aarch64*)
+$as_echo "#define TC_AARCH64 1" >>confdefs.h
+ ;;
+ sparc*)
+$as_echo "#define TC_SPARC 1" >>confdefs.h
+ ;;
+ mips*)
+$as_echo "#define TC_MIPS 1" >>confdefs.h
+ ;;
+esac
+
+# Emulation
EMULATION=$targ_emul
EMULATION_VECTOR=$targ_emul_vector
@@ -397,7 +397,10 @@ AM_MAKEFLAGS = \
# development.sh is used to determine -Werror default.
-CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/development.sh
+CONFIG_STATUS_DEPENDENCIES = \
+ $(BFDDIR)/configure.tgt \
+ $(BFDDIR)/development.sh
+
EXTRA_DEJAGNU_SITE_CONFIG = development.exp
DISTCLEANFILES = site.exp development.exp
all: config.h
@@ -84,6 +84,15 @@
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
+/* Compile for AArch64 targets */
+#undef TC_AARCH64
+
+/* Compile for MIPS targets */
+#undef TC_MIPS
+
+/* Compile for Sparc targets */
+#undef TC_SPARC
+
/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
@@ -16995,6 +16995,21 @@ fi
+targ=${target}
+. ${srcdir}/configure.tgt
+
+case ${cpu_type} in
+ aarch64*)
+$as_echo "#define TC_AARCH64 1" >>confdefs.h
+ ;;
+ sparc*)
+$as_echo "#define TC_SPARC 1" >>confdefs.h
+ ;;
+ mips*)
+$as_echo "#define TC_MIPS 1" >>confdefs.h
+ ;;
+esac
+
ac_config_files="$ac_config_files Makefile src/Makefile gp-display-html/Makefile doc/Makefile"
ac_config_headers="$ac_config_headers config.h:common/config.h.in"
@@ -1,4 +1,4 @@
-@set UPDATED 19 July 2024
-@set UPDATED-MONTH July 2024
+@set UPDATED 21 November 2024
+@set UPDATED-MONTH November 2024
@set EDITION 2.43.50
@set VERSION 2.43.50
@@ -1241,6 +1241,9 @@ MULTIDIRS =
MULTISUBDIR =
MULTIDO = true
MULTICLEAN = true
+
+# Reconfigure if configure.tgt changes.
+CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.tgt
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-am
@@ -153,6 +153,15 @@
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
+/* Compile for AArch64 targets */
+#undef TC_AARCH64
+
+/* Compile for MIPS targets */
+#undef TC_MIPS
+
+/* Compile for Sparc targets */
+#undef TC_SPARC
+
/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
@@ -14356,6 +14356,22 @@ else
multilib_arg=
fi
+targ=${target}
+. ${srcdir}/configure.tgt
+
+# Target-specific definitions
+case ${cpu_type} in
+ aarch64*)
+$as_echo "#define TC_AARCH64 1" >>confdefs.h
+ ;;
+ sparc*)
+$as_echo "#define TC_SPARC 1" >>confdefs.h
+ ;;
+ mips*)
+$as_echo "#define TC_MIPS 1" >>confdefs.h
+ ;;
+esac
+
ac_config_files="$ac_config_files Makefile backtrace-supported.h"
ac_config_files="$ac_config_files install-debuginfo-for-buildid.sh"
@@ -501,6 +501,15 @@
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
+/* Compile for AArch64 targets */
+#undef TC_AARCH64
+
+/* Compile for MIPS targets */
+#undef TC_MIPS
+
+/* Compile for Sparc targets */
+#undef TC_SPARC
+
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME
@@ -8029,6 +8029,22 @@ LIBOBJS="$L"
+targ=${target}
+. ${srcdir}/configure.tgt
+
+# Target-specific definitions
+case ${cpu_type} in
+ aarch64*)
+$as_echo "#define TC_AARCH64 1" >>confdefs.h
+ ;;
+ sparc*)
+$as_echo "#define TC_SPARC 1" >>confdefs.h
+ ;;
+ mips*)
+$as_echo "#define TC_MIPS 1" >>confdefs.h
+ ;;
+esac
+
# We need multilib support, but only if configuring for the target.
ac_config_files="$ac_config_files Makefile testsuite/Makefile"