diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-02-19 03:46:01 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-14 07:02:58 -0400 |
commit | 465fb143c87076b6416a8d0d5dd79bb016060fe3 (patch) | |
tree | d630acdd9e0001b0e6e988d34b72c827c26cc28e /sim/m32r | |
parent | b9005ba76ee501a809f2657b04bb2f2590829fa3 (diff) | |
download | gdb-465fb143c87076b6416a8d0d5dd79bb016060fe3.zip gdb-465fb143c87076b6416a8d0d5dd79bb016060fe3.tar.gz gdb-465fb143c87076b6416a8d0d5dd79bb016060fe3.tar.bz2 |
sim: make nrun the default run program
We want people to stop using the run.c frontend, but it's hard to notice
when it's still set as the default. Lets flip things so nrun.c is the
default, and users of run.c will get an error by default. We turn that
error into a warning for existing sims so we don't break them -- this is
mostly meant for people starting new ports.
Diffstat (limited to 'sim/m32r')
-rw-r--r-- | sim/m32r/ChangeLog | 4 | ||||
-rw-r--r-- | sim/m32r/Makefile.in | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog index b9494af..98f3a8c 100644 --- a/sim/m32r/ChangeLog +++ b/sim/m32r/ChangeLog @@ -1,3 +1,7 @@ +2015-03-14 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (SIM_RUN_OBJS): Delete. + 2014-08-23 Hans-Peter Nilsson <hp@axis.com> * configure.ac: Default simulator hardware to off again. Remove diff --git a/sim/m32r/Makefile.in b/sim/m32r/Makefile.in index 12a6a8d..491affd 100644 --- a/sim/m32r/Makefile.in +++ b/sim/m32r/Makefile.in @@ -47,7 +47,6 @@ SIM_EXTRA_DEPS = \ SIM_EXTRA_CFLAGS = @sim_extra_cflags@ -SIM_RUN_OBJS = nrun.o SIM_EXTRA_CLEAN = m32r-clean # This selects the m32r newlib/libgloss syscall definitions. |