aboutsummaryrefslogtreecommitdiff
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 515e941..34e1408 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 78e60fa..0c67648 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 6df9f8d..ef481b4 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 34002b2..43607d8 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 5246f8e..1bcb7b4 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 4131fb5..3701395 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 75e115f..e1abb69 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 b54002d..74b7e59 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 fea1ab2..c75ffd5 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 65afb42..b2297df 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 2b58f88..9e8a16d 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 bfde316..f33e5d5 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 0a057d9..2af85ec 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 e75a8ce..267e9d3 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 cad3063..b82ea09 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 f0ce157..d522be2 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 cab1717..d296ab3 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 3e5eb6c..af8261e 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 4a9264b..c021f1c 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 2ae6c7d..fb752cf 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 4defb86..6eeb19f 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 d01ab03..4bab9c5 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 a4ce368..2585927 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 0239c52..a6df60c 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 ba5bac6..79a1dd2 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 bb78dda..a0cd1a1 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 3205235..f4c1a3b 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 2f24adf..6c0fc08 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 ccaae94..8a5c8d1 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 18cd590..c2b72d7 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 4529ec1..ed284ea 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 14c71bb..ceb542c 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 c10bf1f..7545c76 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 44a1daa..546e571 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 3fa83bd..de32036 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 f0ce157..d522be2 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 34002b2..43607d8 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 f69a59d..6197dd6 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 b226e38..5692eea 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 c35be9e..2f93d99 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 52d8a12..b8c4ab0 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 c084f39..00ad7a7 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 7def667..7cf3c12 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 0e125ce..683c79f 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 7c62b64..83f9817 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 7f0e1c7..8fc5d62 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 2d5e70d..625afec 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 465a100..9934d2a 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 b5563a8..620b50f 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 5246f8e..1bcb7b4 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 92af453..1d4474a 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 38ec393..936e7b7 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 b351822..e9fe113 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 9aa0a96..e5896c2 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 2df9434..964f9f2 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 3164321..214c45e 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 f0ce157..d522be2 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 d519292..cb5904d 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 9ce6dbd..d56314e 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 e1f35d9..865a288 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 f59902c..d2e3879 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