diff options
author | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-06 07:33:26 +0000 |
---|---|---|
committer | corsepiu <corsepiu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-06 07:33:26 +0000 |
commit | f04beaef15d9d79b2d5733d14c854f887cc2d12e (patch) | |
tree | d941e85d08d956f250d89493a5fa38771216c030 | |
parent | 3b7a17d9bcfee916a7220b03c23d10f76e71ff32 (diff) | |
download | gcc-f04beaef15d9d79b2d5733d14c854f887cc2d12e.tar.gz |
2008-02-06 Ralf Corsepius <ralf.corsepius@rtems.org>
* config/arm/rtems-elf.h (TARGET_OS_CPP_BUILTINS): Add
builtin_define ("__USE_INIT_FINI__").
* config/h8300/t-rtems (MULTILIB_OPTION,MULTILIB_DIRNAMES): Add
-msx multilibs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132141 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/rtems-elf.h | 1 | ||||
-rw-r--r-- | gcc/config/h8300/t-rtems | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index efeea955beb..382d0da46a9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2008-02-06 Ralf Corsepius <ralf.corsepius@rtems.org> + * config/arm/rtems-elf.h (TARGET_OS_CPP_BUILTINS): Add + builtin_define ("__USE_INIT_FINI__"). + * config/h8300/t-rtems (MULTILIB_OPTION,MULTILIB_DIRNAMES): Add + -msx multilibs. * gthr-rtems.h: Remove __GTHREAD_MUTEX_INIT. 2008-02-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> diff --git a/gcc/config/arm/rtems-elf.h b/gcc/config/arm/rtems-elf.h index ca14a5b43aa..ebeeed36a90 100644 --- a/gcc/config/arm/rtems-elf.h +++ b/gcc/config/arm/rtems-elf.h @@ -26,6 +26,7 @@ #define TARGET_OS_CPP_BUILTINS() \ do { \ builtin_define ("__rtems__"); \ + builtin_define ("__USE_INIT_FINI__"); \ builtin_assert ("system=rtems"); \ } while (0) diff --git a/gcc/config/h8300/t-rtems b/gcc/config/h8300/t-rtems index 104ee2366f1..0d76437f8cf 100644 --- a/gcc/config/h8300/t-rtems +++ b/gcc/config/h8300/t-rtems @@ -2,6 +2,6 @@ # -mn is not applicable to RTEMS (-mn implies 16bit void*) -MULTILIB_OPTIONS = mh/ms mint32 -MULTILIB_DIRNAMES = h8300h h8300s int32 +MULTILIB_OPTIONS = mh/ms/msx mint32 +MULTILIB_DIRNAMES = h8300h h8300s h8sx int32 MULTILIB_EXCEPTIONS = mint32 |