diff options
-rw-r--r-- | sim/common/ChangeLog | 4 | ||||
-rw-r--r-- | sim/common/acinclude.m4 | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 8039a78..33afbfb 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,9 @@ 2021-01-11 Mike Frysinger <vapier@gentoo.org> + * acinclude.m4 (SIM_AC_OUTPUT): Require SIM_AC_OPTION_WARNINGS. + +2021-01-11 Mike Frysinger <vapier@gentoo.org> + * sim-core.c (sim_memory_map): Change %#x to PRIxTW. 2021-01-11 Mike Frysinger <vapier@gentoo.org> diff --git a/sim/common/acinclude.m4 b/sim/common/acinclude.m4 index 45ec134..149ddc7 100644 --- a/sim/common/acinclude.m4 +++ b/sim/common/acinclude.m4 @@ -821,7 +821,9 @@ dnl one afterwards. The two pieces of the common fragment are inserted into dnl the target's fragment at the appropriate points. AC_DEFUN([SIM_AC_OUTPUT], -[ +[dnl +AC_REQUIRE([SIM_AC_OPTION_WARNINGS])dnl + dnl Make @cgen_breaks@ non-null only if the sim uses CGEN. cgen_breaks="" if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then |