diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-12-09 18:20:57 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-12-09 18:20:57 +0000 |
commit | efa58006647afe27011714aa5e8b4d38c6f1abae (patch) | |
tree | 8c8f98c7d13885aae982c00ef8967afc5787013f | |
parent | e195f6e0de5343b081b2863e01d5b08dd6858d34 (diff) | |
download | gcc-efa58006647afe27011714aa5e8b4d38c6f1abae.zip gcc-efa58006647afe27011714aa5e8b4d38c6f1abae.tar.gz gcc-efa58006647afe27011714aa5e8b4d38c6f1abae.tar.bz2 |
vxworks.h (DBX_REGISTER_NUMBER): Undefine.
* config/mips/vxworks.h (DBX_REGISTER_NUMBER): Undefine.
* config.gcc (mips64*-*-linux* | mipsisa64*-*-linux*,
mips*-*-linux*, mips-wrs-vxworks): Don't use svr4.h.
From-SVN: r167660
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config.gcc | 6 | ||||
-rw-r--r-- | gcc/config/mips/vxworks.h | 2 |
3 files changed, 11 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a2eaca..f209a8f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2010-12-09 Joseph Myers <joseph@codesourcery.com> + * config/mips/vxworks.h (DBX_REGISTER_NUMBER): Undefine. + * config.gcc (mips64*-*-linux* | mipsisa64*-*-linux*, + mips*-*-linux*, mips-wrs-vxworks): Don't use svr4.h. + +2010-12-09 Joseph Myers <joseph@codesourcery.com> + * config/mep/mep.h (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE, WCHAR_TYPE_SIZE): Define. * config.gcc (mep-*-*): Don't use svr4.h. diff --git a/gcc/config.gcc b/gcc/config.gcc index 3e7b72c..a5e4829 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1811,7 +1811,7 @@ mips*-*-netbsd*) # NetBSD/mips, either endian. tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h" ;; mips64*-*-linux* | mipsisa64*-*-linux*) - tm_file="dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h ${tm_file} mips/linux.h mips/linux64.h" + tm_file="dbxelf.h elfos.h linux.h glibc-stdint.h ${tm_file} mips/linux.h mips/linux64.h" tmake_file="${tmake_file} mips/t-linux64 mips/t-libgcc-mips16" tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_N32" case ${target} in @@ -1833,7 +1833,7 @@ mips64*-*-linux* | mipsisa64*-*-linux*) test x$with_llsc != x || with_llsc=yes ;; mips*-*-linux*) # Linux MIPS, either endian. - tm_file="dbxelf.h elfos.h svr4.h linux.h glibc-stdint.h ${tm_file} mips/linux.h" + tm_file="dbxelf.h elfos.h linux.h glibc-stdint.h ${tm_file} mips/linux.h" tmake_file="${tmake_file} mips/t-libgcc-mips16" case ${target} in mipsisa32r2*) @@ -1961,7 +1961,7 @@ mips*-*-rtems*) tmake_file="mips/t-elf mips/t-libgcc-mips16 t-rtems mips/t-rtems" ;; mips-wrs-vxworks) - tm_file="elfos.h ${tm_file} svr4.h mips/elf.h vx-common.h vxworks.h mips/vxworks.h" + tm_file="elfos.h ${tm_file} mips/elf.h vx-common.h vxworks.h mips/vxworks.h" tmake_file="${tmake_file} mips/t-vxworks" ;; mipstx39-*-elf* | mipstx39el-*-elf*) diff --git a/gcc/config/mips/vxworks.h b/gcc/config/mips/vxworks.h index 9c8c417..65efaff 100644 --- a/gcc/config/mips/vxworks.h +++ b/gcc/config/mips/vxworks.h @@ -80,3 +80,5 @@ VXWORKS_LINK_SPEC #undef SUBTARGET_OVERRIDE_OPTIONS #define SUBTARGET_OVERRIDE_OPTIONS VXWORKS_OVERRIDE_OPTIONS + +#undef DBX_REGISTER_NUMBER |