diff options
Diffstat (limited to 'sim/sh')
-rw-r--r-- | sim/sh/ChangeLog | 6 | ||||
-rw-r--r-- | sim/sh/Makefile.in | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog index cbeab34..8603da5 100644 --- a/sim/sh/ChangeLog +++ b/sim/sh/ChangeLog @@ -1,5 +1,11 @@ 2015-03-14 Mike Frysinger <vapier@gentoo.org> + * Makefile.in (SIM_EXTRA_CFLAGS): Set to + -DSIM_USE_DEPRECATED_RUN_FRONTEND. + (SIM_RUN_OBJS): Set to run.o. + +2015-03-14 Mike Frysinger <vapier@gentoo.org> + * configure.ac (AC_CHECK_HEADERS): Delete. * aclocal.m4, configure: Regenerate. diff --git a/sim/sh/Makefile.in b/sim/sh/Makefile.in index b999e67..61422ab 100644 --- a/sim/sh/Makefile.in +++ b/sim/sh/Makefile.in @@ -17,6 +17,10 @@ ## COMMON_PRE_CONFIG_FRAG +# Use the deprecated run frontend until we migrate to nrun.o +SIM_RUN_OBJS = run.o +SIM_EXTRA_CFLAGS = -DSIM_USE_DEPRECATED_RUN_FRONTEND + SIM_OBJS = interp.o table.o sim-load.o SIM_EXTRA_LIBS = -lm SIM_EXTRA_CLEAN = sh-clean |