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/arm/Makefile.in | |
parent | 29f1a5934a1b4b3b22aaeee2c4c471fbd95f0ba2 (diff) | |
download | gdb-e787f858a43c9a6b54a74cec24f954b52619433e.zip gdb-e787f858a43c9a6b54a74cec24f954b52619433e.tar.gz gdb-e787f858a43c9a6b54a74cec24f954b52619433e.tar.bz2 |
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/arm/Makefile.in')
-rw-r--r-- | sim/arm/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/arm/Makefile.in b/sim/arm/Makefile.in index 00c9bdf..5c37723 100644 --- a/sim/arm/Makefile.in +++ b/sim/arm/Makefile.in @@ -20,11 +20,12 @@ SIM_EXTRA_CFLAGS = -DMODET SIM_OBJS = \ + wrapper.o \ $(SIM_NEW_COMMON_OBJS) \ sim-cpu.o \ sim-hload.o \ armemu26.o armemu32.o arminit.o armos.o armsupp.o \ - armvirt.o bag.o thumbemu.o wrapper.o \ + armvirt.o bag.o thumbemu.o \ armcopro.o maverick.o iwmmxt.o ## COMMON_POST_CONFIG_FRAG |