diff options
Diffstat (limited to 'gcc/config/mips')
-rw-r--r-- | gcc/config/mips/rtems.h | 9 | ||||
-rw-r--r-- | gcc/config/mips/t-rtems | 4 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gcc/config/mips/rtems.h b/gcc/config/mips/rtems.h index 36d024ad3dd..91f43734e25 100644 --- a/gcc/config/mips/rtems.h +++ b/gcc/config/mips/rtems.h @@ -1,5 +1,6 @@ /* Definitions for rtems targeting a MIPS using ELF. - Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2005 + Free Software Foundation, Inc. Contributed by Joel Sherrill (joel@OARcorp.com). This file is part of GCC. @@ -27,3 +28,9 @@ do { \ builtin_define ("__USE_INIT_FINI__"); \ builtin_assert ("system=rtems"); \ } while (0) + +/* No sdata. + * The RTEMS BSPs expect -G0 + */ +#undef MIPS_DEFAULT_GVALUE +#define MIPS_DEFAULT_GVALUE 0 diff --git a/gcc/config/mips/t-rtems b/gcc/config/mips/t-rtems index bd7b7adf467..742e4e32db6 100644 --- a/gcc/config/mips/t-rtems +++ b/gcc/config/mips/t-rtems @@ -1,5 +1,5 @@ # Custom multilibs for RTEMS -MULTILIB_OPTIONS = mips1/mips3 msoft-float/msingle-float EL/EB -MULTILIB_DIRNAMES = mips1 mips3 soft-float single el eb +MULTILIB_OPTIONS = mips1/mips3/mips32 msoft-float/msingle-float +MULTILIB_DIRNAMES = mips1 mips3 mips32 soft-float single MULTILIB_MATCHES = msingle-float=m4650 |