diff options
author | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-15 08:38:53 +0000 |
---|---|---|
committer | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-15 08:38:53 +0000 |
commit | d66cf46312d63482f9ea63d484e73cc08b0b93af (patch) | |
tree | 48ad5c62fe4ee5178094efbd6ff9d2d70d4d9ee1 /gcc/config/mips/rtems.h | |
parent | 8a7294450f1e1a88725a2509e9a743713a37f479 (diff) | |
download | gcc-d66cf46312d63482f9ea63d484e73cc08b0b93af.tar.gz |
2005-01-15 Ralf Corsepius <ralf.corsepius@rtems.org>
* config/mips/rtems.h (MIPS_DEFAULT_GVALUE): Set to 0.
* config/mips/t-rtems (MULTILIBS_DIRNAMES,MULTILIB_OPTIONS):
Remove little endian multilib variants.
Add mips32 multilib variant.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93690 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/rtems.h')
-rw-r--r-- | gcc/config/mips/rtems.h | 9 |
1 files changed, 8 insertions, 1 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 |