diff options
author | Yao Qi <yao@codesourcery.com> | 2014-11-15 16:03:40 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-11-19 15:44:35 +0800 |
commit | 2acf986b741bd27cc441d2972b248dd506f0415a (patch) | |
tree | c0d04fceac4403f03ef608ee1ca23bcdd19c643f /gdb/config/i386 | |
parent | b10779500e8a7c0734beaefe782c495ab1ecc930 (diff) | |
download | gdb-2acf986b741bd27cc441d2972b248dd506f0415a.zip gdb-2acf986b741bd27cc441d2972b248dd506f0415a.tar.gz gdb-2acf986b741bd27cc441d2972b248dd506f0415a.tar.bz2 |
Don't set CC in config/i386/go32.mh
I cross-compile gdb for msdosdjgpp (both target and host is
i586-pc-msdosdjgpp), so the CC should be i586-pc-msdosdjgpp-gcc.
However, CC is set incorrectly to gcc after config/i386/go32.mh is inlined
into the Makefile.
This patch is to remove the CC setting in config/i386/go32.mh.
gdb:
2014-11-19 Yao Qi <yao@codesourcery.com>
* config/i386/go32.mh (CC): Remove.
Diffstat (limited to 'gdb/config/i386')
-rw-r--r-- | gdb/config/i386/go32.mh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/config/i386/go32.mh b/gdb/config/i386/go32.mh index b0ab60c..f1edfad 100644 --- a/gdb/config/i386/go32.mh +++ b/gdb/config/i386/go32.mh @@ -6,7 +6,6 @@ MH_CFLAGS= -I$(srcdir)/config/djgpp NATDEPFILES= go32-nat.o x86-nat.o x86-dregs.o HOST_IPC= -CC= gcc XM_CLIBS= -ldbg |