summaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
Diffstat (limited to 'sim')
-rw-r--r--sim/ChangeLog4
-rw-r--r--sim/README-HACKING1
-rwxr-xr-xsim/aarch64/configure17
-rwxr-xr-xsim/arm/configure17
-rwxr-xr-xsim/avr/configure17
-rwxr-xr-xsim/bfin/configure17
-rw-r--r--sim/bpf/ChangeLog4
-rwxr-xr-xsim/bpf/configure17
-rw-r--r--sim/common/ChangeLog4
-rw-r--r--sim/common/acinclude.m413
-rw-r--r--sim/cr16/ChangeLog4
-rwxr-xr-xsim/cr16/configure17
-rw-r--r--sim/cris/ChangeLog4
-rwxr-xr-xsim/cris/configure17
-rw-r--r--sim/d10v/ChangeLog4
-rwxr-xr-xsim/d10v/configure17
-rw-r--r--sim/erc32/ChangeLog4
-rwxr-xr-xsim/erc32/configure17
-rw-r--r--sim/frv/ChangeLog4
-rwxr-xr-xsim/frv/configure17
-rwxr-xr-xsim/ft32/configure17
-rw-r--r--sim/h8300/ChangeLog4
-rwxr-xr-xsim/h8300/configure17
-rwxr-xr-xsim/igen/configure13
-rw-r--r--sim/iq2000/ChangeLog4
-rwxr-xr-xsim/iq2000/configure17
-rw-r--r--sim/lm32/ChangeLog4
-rwxr-xr-xsim/lm32/configure17
-rw-r--r--sim/m32c/ChangeLog4
-rwxr-xr-xsim/m32c/configure17
-rw-r--r--sim/m32r/ChangeLog4
-rwxr-xr-xsim/m32r/configure17
-rw-r--r--sim/m68hc11/ChangeLog4
-rwxr-xr-xsim/m68hc11/configure17
-rw-r--r--sim/mcore/ChangeLog4
-rwxr-xr-xsim/mcore/configure17
-rwxr-xr-xsim/microblaze/configure17
-rw-r--r--sim/mips/ChangeLog4
-rwxr-xr-xsim/mips/configure17
-rw-r--r--sim/mn10300/ChangeLog4
-rwxr-xr-xsim/mn10300/configure17
-rw-r--r--sim/moxie/ChangeLog4
-rwxr-xr-xsim/moxie/configure17
-rwxr-xr-xsim/msp430/configure17
-rw-r--r--sim/or1k/ChangeLog4
-rwxr-xr-xsim/or1k/configure17
-rw-r--r--sim/ppc/ChangeLog4
-rwxr-xr-xsim/ppc/configure13
-rw-r--r--sim/pru/ChangeLog5
-rwxr-xr-xsim/pru/configure17
-rw-r--r--sim/pru/configure.ac1
-rw-r--r--sim/rl78/ChangeLog4
-rwxr-xr-xsim/rl78/configure17
-rw-r--r--sim/rx/ChangeLog4
-rwxr-xr-xsim/rx/configure17
-rw-r--r--sim/sh/ChangeLog4
-rwxr-xr-xsim/sh/configure17
-rw-r--r--sim/sh64/ChangeLog4
-rwxr-xr-xsim/sh64/configure17
-rw-r--r--sim/v850/ChangeLog4
-rwxr-xr-xsim/v850/configure17
61 files changed, 198 insertions, 458 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog
index 515e941bbdd..34e14080d69 100644
--- a/sim/ChangeLog
+++ b/sim/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * README-HACKING (AC_PREREQ): Delete.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* README-HACKING (C Language Assumptions): Require C11 compiler.
diff --git a/sim/README-HACKING b/sim/README-HACKING
index 78e60fa5af9..0c67648e930 100644
--- a/sim/README-HACKING
+++ b/sim/README-HACKING
@@ -39,7 +39,6 @@ The configure.ac of a simulator using the common framework should look like:
--- snip ---
dnl Process this file with autoconf to produce a configure script.
sinclude(../common/aclocal.m4)
-AC_PREREQ(2.5)dnl
AC_INIT(Makefile.in)
SIM_AC_COMMON
diff --git a/sim/aarch64/configure b/sim/aarch64/configure
index 6df9f8d7f3e..ef481b4d87f 100755
--- a/sim/aarch64/configure
+++ b/sim/aarch64/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/arm/configure b/sim/arm/configure
index 34002b2e047..43607d8156d 100755
--- a/sim/arm/configure
+++ b/sim/arm/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/avr/configure b/sim/avr/configure
index 5246f8efbfd..1bcb7b47b31 100755
--- a/sim/avr/configure
+++ b/sim/avr/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/bfin/configure b/sim/bfin/configure
index 4131fb57e80..3701395a1f8 100755
--- a/sim/bfin/configure
+++ b/sim/bfin/configure
@@ -2385,18 +2385,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12962,7 +12951,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12965 "configure"
+#line 12954 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13068,7 +13057,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13071 "configure"
+#line 13060 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/bpf/ChangeLog b/sim/bpf/ChangeLog
index 75e115f76e7..e1abb698fd1 100644
--- a/sim/bpf/ChangeLog
+++ b/sim/bpf/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/bpf/configure b/sim/bpf/configure
index b54002d0da3..74b7e59c58e 100755
--- a/sim/bpf/configure
+++ b/sim/bpf/configure
@@ -2367,18 +2367,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12924,7 +12913,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12927 "configure"
+#line 12916 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13030,7 +13019,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13033 "configure"
+#line 13022 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index fea1ab2ff03..c75ffd59e60 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * acinclude.m4: Replace duplicate text with pointer to README-HACKING.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* acinclude.m4 (SIM_AC_OPTION_WARNINGS): Document 1st argument.
Set WERROR_CFLAGS when first arg is not set or is "yes".
diff --git a/sim/common/acinclude.m4 b/sim/common/acinclude.m4
index 65afb429d6e..b2297dfeb15 100644
--- a/sim/common/acinclude.m4
+++ b/sim/common/acinclude.m4
@@ -5,18 +5,7 @@
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
m4_include(../../config/override.m4)
diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog
index 2b58f8845e6..9e8a16d5300 100644
--- a/sim/cr16/ChangeLog
+++ b/sim/cr16/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/cr16/configure b/sim/cr16/configure
index bfde3169e34..f33e5d5409f 100755
--- a/sim/cr16/configure
+++ b/sim/cr16/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog
index 0a057d9fcb3..2af85ec58da 100644
--- a/sim/cris/ChangeLog
+++ b/sim/cris/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/cris/configure b/sim/cris/configure
index e75a8ced0cb..267e9d373c6 100755
--- a/sim/cris/configure
+++ b/sim/cris/configure
@@ -2376,18 +2376,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12933,7 +12922,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12936 "configure"
+#line 12925 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13039,7 +13028,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13042 "configure"
+#line 13031 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog
index cad30638e98..b82ea095bc0 100644
--- a/sim/d10v/ChangeLog
+++ b/sim/d10v/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/d10v/configure b/sim/d10v/configure
index f0ce157bee7..d522be20cc2 100755
--- a/sim/d10v/configure
+++ b/sim/d10v/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog
index cab1717c5be..d296ab311b9 100644
--- a/sim/erc32/ChangeLog
+++ b/sim/erc32/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/erc32/configure b/sim/erc32/configure
index 3e5eb6cd195..af8261e4816 100755
--- a/sim/erc32/configure
+++ b/sim/erc32/configure
@@ -2349,18 +2349,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12906,7 +12895,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12909 "configure"
+#line 12898 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13012,7 +13001,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13015 "configure"
+#line 13004 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog
index 4a9264be6e3..c021f1c4ab8 100644
--- a/sim/frv/ChangeLog
+++ b/sim/frv/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/frv/configure b/sim/frv/configure
index 2ae6c7d4053..fb752cf1543 100755
--- a/sim/frv/configure
+++ b/sim/frv/configure
@@ -2371,18 +2371,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12928,7 +12917,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12931 "configure"
+#line 12920 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13034,7 +13023,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13037 "configure"
+#line 13026 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/ft32/configure b/sim/ft32/configure
index 4defb86a7bb..6eeb19ff067 100755
--- a/sim/ft32/configure
+++ b/sim/ft32/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog
index d01ab03284d..4bab9c52b07 100644
--- a/sim/h8300/ChangeLog
+++ b/sim/h8300/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/h8300/configure b/sim/h8300/configure
index a4ce368d683..2585927f7d3 100755
--- a/sim/h8300/configure
+++ b/sim/h8300/configure
@@ -2354,18 +2354,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12911,7 +12900,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12914 "configure"
+#line 12903 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13017,7 +13006,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13020 "configure"
+#line 13009 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/igen/configure b/sim/igen/configure
index 0239c526163..a6df60c8390 100755
--- a/sim/igen/configure
+++ b/sim/igen/configure
@@ -2073,18 +2073,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
diff --git a/sim/iq2000/ChangeLog b/sim/iq2000/ChangeLog
index ba5bac6736c..79a1dd2d95f 100644
--- a/sim/iq2000/ChangeLog
+++ b/sim/iq2000/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/iq2000/configure b/sim/iq2000/configure
index bb78dda1c99..a0cd1a1d2fd 100755
--- a/sim/iq2000/configure
+++ b/sim/iq2000/configure
@@ -2368,18 +2368,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12925,7 +12914,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12928 "configure"
+#line 12917 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13031,7 +13020,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13034 "configure"
+#line 13023 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog
index 32052351ef8..f4c1a3b9ceb 100644
--- a/sim/lm32/ChangeLog
+++ b/sim/lm32/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/lm32/configure b/sim/lm32/configure
index 2f24adf0b23..6c0fc08e300 100755
--- a/sim/lm32/configure
+++ b/sim/lm32/configure
@@ -2368,18 +2368,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12925,7 +12914,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12928 "configure"
+#line 12917 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13031,7 +13020,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13034 "configure"
+#line 13023 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog
index ccaae943eef..8a5c8d15046 100644
--- a/sim/m32c/ChangeLog
+++ b/sim/m32c/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/m32c/configure b/sim/m32c/configure
index 18cd590a913..c2b72d70857 100755
--- a/sim/m32c/configure
+++ b/sim/m32c/configure
@@ -2355,18 +2355,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12912,7 +12901,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12915 "configure"
+#line 12904 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13018,7 +13007,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13021 "configure"
+#line 13010 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog
index 4529ec1c25c..ed284eada55 100644
--- a/sim/m32r/ChangeLog
+++ b/sim/m32r/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/m32r/configure b/sim/m32r/configure
index 14c71bbfb62..ceb542c07f1 100755
--- a/sim/m32r/configure
+++ b/sim/m32r/configure
@@ -2370,18 +2370,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12927,7 +12916,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12930 "configure"
+#line 12919 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13033,7 +13022,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13036 "configure"
+#line 13025 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog
index c10bf1f49ac..7545c768cf8 100644
--- a/sim/m68hc11/ChangeLog
+++ b/sim/m68hc11/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure
index 44a1daa1323..546e57107d1 100755
--- a/sim/m68hc11/configure
+++ b/sim/m68hc11/configure
@@ -2365,18 +2365,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12922,7 +12911,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12925 "configure"
+#line 12914 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13028,7 +13017,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13031 "configure"
+#line 13020 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog
index 3fa83bd9f77..de32036a37b 100644
--- a/sim/mcore/ChangeLog
+++ b/sim/mcore/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/mcore/configure b/sim/mcore/configure
index f0ce157bee7..d522be20cc2 100755
--- a/sim/mcore/configure
+++ b/sim/mcore/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/microblaze/configure b/sim/microblaze/configure
index 34002b2e047..43607d8156d 100755
--- a/sim/microblaze/configure
+++ b/sim/microblaze/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog
index f69a59d970e..6197dd6f372 100644
--- a/sim/mips/ChangeLog
+++ b/sim/mips/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/mips/configure b/sim/mips/configure
index b226e38e28b..5692eeadd79 100755
--- a/sim/mips/configure
+++ b/sim/mips/configure
@@ -2395,18 +2395,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12952,7 +12941,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12955 "configure"
+#line 12944 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13058,7 +13047,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13061 "configure"
+#line 13050 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog
index c35be9edab0..2f93d99837f 100644
--- a/sim/mn10300/ChangeLog
+++ b/sim/mn10300/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/mn10300/configure b/sim/mn10300/configure
index 52d8a126123..b8c4ab0d8bd 100755
--- a/sim/mn10300/configure
+++ b/sim/mn10300/configure
@@ -2371,18 +2371,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12928,7 +12917,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12931 "configure"
+#line 12920 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13034,7 +13023,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13037 "configure"
+#line 13026 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/moxie/ChangeLog b/sim/moxie/ChangeLog
index c084f39c14e..00ad7a73018 100644
--- a/sim/moxie/ChangeLog
+++ b/sim/moxie/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/moxie/configure b/sim/moxie/configure
index 7def6671247..7cf3c120541 100755
--- a/sim/moxie/configure
+++ b/sim/moxie/configure
@@ -2363,18 +2363,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12920,7 +12909,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12923 "configure"
+#line 12912 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13026,7 +13015,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13029 "configure"
+#line 13018 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/msp430/configure b/sim/msp430/configure
index 0e125ce1c9b..683c79fb31c 100755
--- a/sim/msp430/configure
+++ b/sim/msp430/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/or1k/ChangeLog b/sim/or1k/ChangeLog
index 7c62b642792..83f9817a467 100644
--- a/sim/or1k/ChangeLog
+++ b/sim/or1k/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/or1k/configure b/sim/or1k/configure
index 7f0e1c767a7..8fc5d623040 100755
--- a/sim/or1k/configure
+++ b/sim/or1k/configure
@@ -2367,18 +2367,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12924,7 +12913,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12927 "configure"
+#line 12916 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13030,7 +13019,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13033 "configure"
+#line 13022 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog
index 2d5e70df958..625afeccd57 100644
--- a/sim/ppc/ChangeLog
+++ b/sim/ppc/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* sim_calls.c (sim_memory_map): Define.
diff --git a/sim/ppc/configure b/sim/ppc/configure
index 465a100ef3e..9934d2a378a 100755
--- a/sim/ppc/configure
+++ b/sim/ppc/configure
@@ -2407,18 +2407,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
diff --git a/sim/pru/ChangeLog b/sim/pru/ChangeLog
index b5563a8c192..620b50ff313 100644
--- a/sim/pru/ChangeLog
+++ b/sim/pru/ChangeLog
@@ -1,5 +1,10 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure.ac (AC_PREREQ): Delete.
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure: Regenerate.
2021-01-09 Mike Frysinger <vapier@gentoo.org>
diff --git a/sim/pru/configure b/sim/pru/configure
index 5246f8efbfd..1bcb7b47b31 100755
--- a/sim/pru/configure
+++ b/sim/pru/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/pru/configure.ac b/sim/pru/configure.ac
index 92af45378ed..1d4474aeaa8 100644
--- a/sim/pru/configure.ac
+++ b/sim/pru/configure.ac
@@ -18,7 +18,6 @@ dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
dnl
-AC_PREREQ(2.64)dnl
AC_INIT(Makefile.in)
sinclude(../common/acinclude.m4)
diff --git a/sim/rl78/ChangeLog b/sim/rl78/ChangeLog
index 38ec393d27f..936e7b71f40 100644
--- a/sim/rl78/ChangeLog
+++ b/sim/rl78/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/rl78/configure b/sim/rl78/configure
index b3518227161..e9fe1139fa3 100755
--- a/sim/rl78/configure
+++ b/sim/rl78/configure
@@ -2347,18 +2347,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12904,7 +12893,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12907 "configure"
+#line 12896 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13010,7 +12999,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13013 "configure"
+#line 13002 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog
index 9aa0a9661bb..e5896c293fb 100644
--- a/sim/rx/ChangeLog
+++ b/sim/rx/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/rx/configure b/sim/rx/configure
index 2df94341210..964f9f2bdc8 100755
--- a/sim/rx/configure
+++ b/sim/rx/configure
@@ -2352,18 +2352,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12909,7 +12898,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12912 "configure"
+#line 12901 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13015,7 +13004,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13018 "configure"
+#line 13007 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog
index 31643210140..214c45ec870 100644
--- a/sim/sh/ChangeLog
+++ b/sim/sh/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/sh/configure b/sim/sh/configure
index f0ce157bee7..d522be20cc2 100755
--- a/sim/sh/configure
+++ b/sim/sh/configure
@@ -2362,18 +2362,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12919,7 +12908,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12922 "configure"
+#line 12911 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13025,7 +13014,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13028 "configure"
+#line 13017 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/sh64/ChangeLog b/sim/sh64/ChangeLog
index d519292559c..cb5904d166d 100644
--- a/sim/sh64/ChangeLog
+++ b/sim/sh64/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-01-08 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.
diff --git a/sim/sh64/configure b/sim/sh64/configure
index 9ce6dbd4ffa..d56314e8639 100755
--- a/sim/sh64/configure
+++ b/sim/sh64/configure
@@ -2368,18 +2368,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12925,7 +12914,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12928 "configure"
+#line 12917 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13031,7 +13020,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13034 "configure"
+#line 13023 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog
index e1f35d9c1ca..865a2883fbe 100644
--- a/sim/v850/ChangeLog
+++ b/sim/v850/ChangeLog
@@ -1,5 +1,9 @@
2021-01-09 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-01-09 Mike Frysinger <vapier@gentoo.org>
+
* configure.ac (SIM_AC_OPTION_WARNINGS): Pass "no".
* configure: Regenerate.
diff --git a/sim/v850/configure b/sim/v850/configure
index f59902c09c8..d2e3879e7fa 100755
--- a/sim/v850/configure
+++ b/sim/v850/configure
@@ -2368,18 +2368,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# SIM_AC_OUTPUT is a cover function to AC_OUTPUT to generate the Makefile.
# It is intended to be invoked last.
#
-# The simulator's configure.ac should look like:
-#
-# dnl Process this file with autoconf to produce a configure script.
-# AC_PREREQ(2.64)dnl
-# AC_INIT(Makefile.in)
-# sinclude(../common/aclocal.m4)
-#
-# SIM_AC_COMMON
-#
-# ... target specific stuff ...
-#
-# SIM_AC_OUTPUT
+# See README-HACKING for more details.
# Include global overrides and fixes for Autoconf.
@@ -12925,7 +12914,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 12928 "configure"
+#line 12917 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -13031,7 +13020,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 13034 "configure"
+#line 13023 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H