fr30.h (LIB_SPEC, [...]): Define.

* config/fr30/fr30.h (LIB_SPEC, LINK_SPEC, SIZE_TYPE,
	PTRDIFF_TYPE, WCHAR_TYPE, WCHAR_TYPE_SIZE): Define.
	* config.gcc (fr30-*-elf): Don't use svr4.h.

From-SVN: r167651
This commit is contained in:
Joseph Myers 2010-12-09 17:19:22 +00:00 committed by Joseph Myers
parent 7d45958770
commit 35766c1db3
3 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2010-12-09 Joseph Myers <joseph@codesourcery.com>
* config/fr30/fr30.h (LIB_SPEC, LINK_SPEC, SIZE_TYPE,
PTRDIFF_TYPE, WCHAR_TYPE, WCHAR_TYPE_SIZE): Define.
* config.gcc (fr30-*-elf): Don't use svr4.h.
2010-12-09 Joseph Myers <joseph@codesourcery.com>
* config/cris/linux.h (SIZE_TYPE, PTRDIFF_TYPE): Define.

View File

@ -961,7 +961,7 @@ crx-*-elf)
use_collect2=no
;;
fr30-*-elf)
tm_file="dbxelf.h elfos.h svr4.h newlib-stdint.h ${tm_file}"
tm_file="dbxelf.h elfos.h newlib-stdint.h ${tm_file}"
tmake_file=fr30/t-fr30
extra_parts="crti.o crtn.o crtbegin.o crtend.o"
;;

View File

@ -51,6 +51,13 @@ along with GCC; see the file COPYING3. If not see
#undef ENDFILE_SPEC
#define ENDFILE_SPEC "%{!mno-lsim:-lsim} crtend.o%s crtn.o%s"
#undef LIB_SPEC
#define LIB_SPEC "-lc"
#undef LINK_SPEC
#define LINK_SPEC "%{h*} %{v:-V} \
%{static:-Bstatic} %{shared:-shared} %{symbolic:-Bsymbolic}"
/*}}}*/
/*{{{ Storage Layout. */
@ -106,6 +113,18 @@ along with GCC; see the file COPYING3. If not see
#define DEFAULT_SIGNED_CHAR 1
#undef SIZE_TYPE
#define SIZE_TYPE "unsigned int"
#undef PTRDIFF_TYPE
#define PTRDIFF_TYPE "int"
#undef WCHAR_TYPE
#define WCHAR_TYPE "long int"
#undef WCHAR_TYPE_SIZE
#define WCHAR_TYPE_SIZE BITS_PER_WORD
/*}}}*/
/*{{{ REGISTER BASICS. */