From 126de59d2705863e14bba860ffadf19c97701fb8 Mon Sep 17 00:00:00 2001 From: joel Date: Tue, 8 Feb 2011 19:17:55 +0000 Subject: [PATCH] 2011-02-07 Joel Sherrill * configure.ac: Add mips*-*-rtems* support. * configure: Regenerate. * src/mips/ffitarget.h: Ensure needed constants are available for targets which do not have sgidefs.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169936 138bc75d-0d04-0410-961f-82ee72b054a4 --- libffi/ChangeLog | 7 +++++++ libffi/configure | 2 +- libffi/configure.ac | 2 +- libffi/src/mips/ffitarget.h | 8 ++++++++ 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/libffi/ChangeLog b/libffi/ChangeLog index 53990f48fad..69c9e00ef0e 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,3 +1,10 @@ +2011-02-07 Joel Sherrill + + * configure.ac: Add mips*-*-rtems* support. + * configure: Regenerate. + * src/mips/ffitarget.h: Ensure needed constants are available + for targets which do not have sgidefs.h. + 2011-01-26 Dave Korn PR target/40125 diff --git a/libffi/configure b/libffi/configure index a4a4a1932ca..b115511dd6c 100755 --- a/libffi/configure +++ b/libffi/configure @@ -11391,7 +11391,7 @@ case "$host" in TARGET=M68K; TARGETDIR=m68k ;; - mips-sgi-irix5.* | mips-sgi-irix6.*) + mips-sgi-irix5.* | mips-sgi-irix6.* | mips*-*-rtems*) TARGET=MIPS; TARGETDIR=mips ;; mips*-*-linux*) diff --git a/libffi/configure.ac b/libffi/configure.ac index a7e97d5ec71..d16155a40fb 100644 --- a/libffi/configure.ac +++ b/libffi/configure.ac @@ -114,7 +114,7 @@ case "$host" in TARGET=M68K; TARGETDIR=m68k ;; - mips-sgi-irix5.* | mips-sgi-irix6.*) + mips-sgi-irix5.* | mips-sgi-irix6.* | mips*-*-rtems*) TARGET=MIPS; TARGETDIR=mips ;; mips*-*-linux*) diff --git a/libffi/src/mips/ffitarget.h b/libffi/src/mips/ffitarget.h index c5f4e056841..d0fc983a74f 100644 --- a/libffi/src/mips/ffitarget.h +++ b/libffi/src/mips/ffitarget.h @@ -29,9 +29,17 @@ #ifdef linux # include +#elif defined(__rtems__) +/* + * Subprogram calling convention - copied from sgidefs.h + */ +#define _MIPS_SIM_ABI32 1 +#define _MIPS_SIM_NABI32 2 +#define _MIPS_SIM_ABI64 3 #else # include #endif + # ifndef _ABIN32 # define _ABIN32 _MIPS_SIM_NABI32 # endif -- 2.11.0