From 28e95e49fb4835d839b4f52dca47c54392f6b1e6 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 9 Dec 2010 17:21:24 +0000 Subject: [PATCH] moxie.h (LINK_SPEC, [...]): Define. * config/moxie/moxie.h (LINK_SPEC, SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE, WCHAR_TYPE_SIZE): Define. * config/moxie/rtems.h (LINK_SPEC, SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE, WCHAR_TYPE_SIZE): Undefine. * config.gcc (moxie-*-elf, moxie-*-uclinux*): Don't use svr4.h. From-SVN: r167653 --- gcc/ChangeLog | 8 ++++++++ gcc/config.gcc | 4 ++-- gcc/config/moxie/moxie.h | 16 ++++++++++++++++ gcc/config/moxie/rtems.h | 6 ++++++ 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 108ef62cfd4..ee384793dd4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2010-12-09 Joseph Myers + + * config/moxie/moxie.h (LINK_SPEC, SIZE_TYPE, PTRDIFF_TYPE, + WCHAR_TYPE, WCHAR_TYPE_SIZE): Define. + * config/moxie/rtems.h (LINK_SPEC, SIZE_TYPE, PTRDIFF_TYPE, + WCHAR_TYPE, WCHAR_TYPE_SIZE): Undefine. + * config.gcc (moxie-*-elf, moxie-*-uclinux*): Don't use svr4.h. + 2010-12-09 Joseph Myers * config/frv/frv.h (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE, diff --git a/gcc/config.gcc b/gcc/config.gcc index 5495015d26d..1371c43b10f 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -979,14 +979,14 @@ frv-*-*linux*) moxie-*-elf) gas=yes gnu_ld=yes - tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" + tm_file="dbxelf.h elfos.h ${tm_file}" extra_parts="crti.o crtn.o crtbegin.o crtend.o" tmake_file="${tmake_file} moxie/t-moxie moxie/t-moxie-softfp soft-fp/t-softfp" ;; moxie-*-uclinux*) gas=yes gnu_ld=yes - tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h glibc-stdint.h moxie/uclinux.h" + tm_file="dbxelf.h elfos.h ${tm_file} linux.h glibc-stdint.h moxie/uclinux.h" extra_parts="crti.o crtn.o crtbegin.o crtend.o" tmake_file="${tmake_file} moxie/t-moxie moxie/t-moxie-softfp soft-fp/t-softfp" tm_defines="${tm_defines} DEFAULT_LIBC=LIBC_UCLIBC" diff --git a/gcc/config/moxie/moxie.h b/gcc/config/moxie/moxie.h index eae86cc67e8..76ab62ecc89 100644 --- a/gcc/config/moxie/moxie.h +++ b/gcc/config/moxie/moxie.h @@ -48,6 +48,10 @@ #undef LIB_SPEC #define LIB_SPEC "%{!shared:%{!symbolic:-lc}}" +#undef LINK_SPEC +#define LINK_SPEC "%{h*} %{v:-V} \ + %{static:-Bstatic} %{shared:-shared} %{symbolic:-Bsymbolic}" + /* Layout of Source Language Data Types */ #define INT_TYPE_SIZE 32 @@ -61,6 +65,18 @@ #define DEFAULT_SIGNED_CHAR 1 +#undef SIZE_TYPE +#define SIZE_TYPE "unsigned int" + +#undef PTRDIFF_TYPE +#define PTRDIFF_TYPE "int" + +#undef WCHAR_TYPE +#define WCHAR_TYPE "long int" + +#undef WCHAR_TYPE_SIZE +#define WCHAR_TYPE_SIZE BITS_PER_WORD + /* Registers... $fp - frame pointer diff --git a/gcc/config/moxie/rtems.h b/gcc/config/moxie/rtems.h index 42893f8a172..f42baf3f70c 100644 --- a/gcc/config/moxie/rtems.h +++ b/gcc/config/moxie/rtems.h @@ -27,3 +27,9 @@ along with GCC; see the file COPYING3. If not see builtin_assert ("system=rtems"); \ } \ while (0) + +#undef LINK_SPEC +#undef SIZE_TYPE +#undef PTRDIFF_TYPE +#undef WCHAR_TYPE +#undef WCHAR_TYPE_SIZE -- 2.30.2