diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-04-12 05:47:39 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-04-12 05:47:39 -0400 |
commit | e787f858a43c9a6b54a74cec24f954b52619433e (patch) | |
tree | 1d90686ca7f3bacbf767271b4642eb5f2bba4771 /sim/mips | |
parent | 29f1a5934a1b4b3b22aaeee2c4c471fbd95f0ba2 (diff) | |
download | binutils-gdb-e787f858a43c9a6b54a74cec24f954b52619433e.tar.gz |
sim: arm/mips: fix sim_read/sim_write linkage errors
With sim-hrw.o being built & linked in the common list, some people are
getting linking errors now for these targets. Move the main objects that
provide these functions before the common list to avoid that.
Diffstat (limited to 'sim/mips')
-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 477c8c82987..d6a29c18686 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2015-04-12 Mike Frysinger <vapier@gentoo.org> + + * Makefile.in (SIM_OBJS): Move interp.o to the start of the list. + 2015-04-06 Mike Frysinger <vapier@gentoo.org> * Makefile.in (SIM_OBJS): Delete sim-engine.o. diff --git a/sim/mips/Makefile.in b/sim/mips/Makefile.in index 2016db3b2fd..17eeab6ae0e 100644 --- a/sim/mips/Makefile.in +++ b/sim/mips/Makefile.in @@ -40,10 +40,10 @@ SIM_MULTI_OBJ = itable.o @sim_multi_obj@ MIPS_EXTRA_LIBS = @mips_extra_libs@ SIM_OBJS = \ + interp.o \ $(SIM_@sim_gen@_OBJ) \ $(SIM_NEW_COMMON_OBJS) \ cp1.o \ - interp.o \ mdmx.o \ dsp.o \ sim-main.o \ |