This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
sh-elf doesn't support objc?
- To: gcc at gcc dot gnu dot org
- Subject: sh-elf doesn't support objc?
- From: John Wehle <john at feith dot com>
- Date: Wed, 3 Jan 2001 01:00:55 -0500 (EST)
I'm trying to build a sh-elf cross compiler so I can use the simulator
as another target for checking changes to the compiler. I take it objc
isn't supported by this target given:
../../../../../../src/GNU/gcc-current/libobjc/sendmsg.c:38:31: missing binary operator before ':'
make[1]: *** [sendmsg.lo] Error 1
make[1]: Leaving directory `/usr/local/target/sh-elf/GNU/gcc-current/sh-elf/libobjc'
make: *** [all-target-libobjc] Error 2
occurs during the build, sendmsg.m contains:
/* this is how we hack STRUCT_VALUE to be 1 or 0 */
#define gen_rtx(args...) 1
#define gen_rtx_MEM(args...) 1
#define rtx int
#if !defined(STRUCT_VALUE) || STRUCT_VALUE == 0
#define INVISIBLE_STRUCT_RETURN 1
#else
#define INVISIBLE_STRUCT_RETURN 0
#endif
and sh.h contains:
/* The Hitachi calling convention doesn't quite fit into this scheme since
the address is passed like an invisible argument, but one that is always
passed in memory. */
#define STRUCT_VALUE \
(TARGET_HITACHI ? 0 : gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM))
or am I just doing something wrong?
-- John
-------------------------------------------------------------------------
| Feith Systems | Voice: 1-215-646-8000 | Email: john@feith.com |
| John Wehle | Fax: 1-215-540-5495 | |
-------------------------------------------------------------------------