diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-10-06 14:07:29 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-10-06 14:07:29 +0100 |
commit | 2081b2b2ca30d7c3b6464a3e167ce2c336c0465f (patch) | |
tree | f50c6ce5d6817f4bcd414413c31d265a0c7d0cd1 /gdb/Makefile.in | |
parent | e0d8f43169368abf354e596c7725dee1dd609cb8 (diff) | |
download | gdb-2081b2b2ca30d7c3b6464a3e167ce2c336c0465f.zip gdb-2081b2b2ca30d7c3b6464a3e167ce2c336c0465f.tar.gz gdb-2081b2b2ca30d7c3b6464a3e167ce2c336c0465f.tar.bz2 |
Move i386.o to arch/i386.o
This patch changes the build that arch/i386.c is built to arch/i386.o,
instead of i386.o.
gdb:
2017-10-06 Yao Qi <yao.qi@linaro.org>
* Makefile.in (ALL_TARGET_OBS): Rename i386.o to arch/i386.o.
* configure.tgt (i386_tobjs): Replace i386.o with arch/i386.o.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b831ab6..c40cb76 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -793,6 +793,7 @@ ALL_64_TARGET_OBS = \ # All other target-dependent objects files (used with --enable-targets=all). ALL_TARGET_OBS = \ arc-tdep.o \ + arch/i386.o \ arm.o \ arm-bsd-tdep.o \ arm-get-next-pcs.o \ @@ -821,7 +822,6 @@ ALL_TARGET_OBS = \ hppa-nbsd-tdep.o \ hppa-obsd-tdep.o \ hppa-tdep.o \ - i386.o \ i386-bsd-tdep.o \ i386-cygwin-tdep.o \ i386-darwin-tdep.o \ |