diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2011-07-08 03:18:56 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2011-07-08 03:18:56 +0000 |
commit | 31b28250dcd75b2ecf2bcf398389bf94bf223aff (patch) | |
tree | ded51e2b514e0c869fe221e786e2b01e6d183eef /sim | |
parent | 7e60d30187f19a9007dc59d3d5aed847d3dada95 (diff) | |
download | binutils-31b28250dcd75b2ecf2bcf398389bf94bf223aff.zip binutils-31b28250dcd75b2ecf2bcf398389bf94bf223aff.tar.gz binutils-31b28250dcd75b2ecf2bcf398389bf94bf223aff.tar.bz2 |
* Makefile.in (tmp-mach-multi): Exit early when igen fails.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/mips/ChangeLog | 4 | ||||
-rw-r--r-- | sim/mips/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index 2f4a8d5..b2d4ea6 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2011-07-08 Hans-Peter Nilsson <hp@axis.com> + + * Makefile.in (tmp-mach-multi): Exit early when igen fails. + 2011-07-05 Mike Frysinger <vapier@gentoo.org> * interp.c (sim_do_command): Delete. diff --git a/sim/mips/Makefile.in b/sim/mips/Makefile.in index d5e093b..3b43518 100644 --- a/sim/mips/Makefile.in +++ b/sim/mips/Makefile.in @@ -352,7 +352,7 @@ tmp-mach-multi: $(IGEN_INSN) $(IGEN_DC) ../igen/igen $(IGEN_INCLUDE) -n $${p}_support.c -f tmp-support.c \ -n $${p}_engine.h -he tmp-engine.h \ -n $${p}_engine.c -e tmp-engine.c \ - ; \ + || exit; \ $(SHELL) $(srcdir)/../../move-if-change tmp-icache.h $${p}_icache.h ; \ $(SHELL) $(srcdir)/../../move-if-change tmp-icache.c $${p}_icache.c ; \ $(SHELL) $(srcdir)/../../move-if-change tmp-idecode.h $${p}_idecode.h ; \ |