linux.h (SIZE_TYPE, [...]): Define.
* config/cris/linux.h (SIZE_TYPE, PTRDIFF_TYPE): Define. * config.gcc (crisv32-*-linux* | cris-*-linux*): Don't use svr4.h. From-SVN: r167650
This commit is contained in:
parent
73aef89eb7
commit
7d45958770
3 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-12-09 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* config/cris/linux.h (SIZE_TYPE, PTRDIFF_TYPE): Define.
|
||||
* config.gcc (crisv32-*-linux* | cris-*-linux*): Don't use svr4.h.
|
||||
|
||||
2010-12-09 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR middle-end/46844
|
||||
|
|
|
@ -942,7 +942,7 @@ cris-*-elf | cris-*-none)
|
|||
use_gcc_stdint=wrap
|
||||
;;
|
||||
crisv32-*-linux* | cris-*-linux*)
|
||||
tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h glibc-stdint.h cris/linux.h"
|
||||
tm_file="dbxelf.h elfos.h ${tm_file} linux.h glibc-stdint.h cris/linux.h"
|
||||
# We need to avoid using t-linux, so override default tmake_file
|
||||
tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
|
||||
extra_options="${extra_options} cris/linux.opt"
|
||||
|
|
|
@ -133,6 +133,13 @@ along with GCC; see the file COPYING3. If not see
|
|||
} \
|
||||
while (0)
|
||||
|
||||
/* Node: Type Layout */
|
||||
|
||||
#undef SIZE_TYPE
|
||||
#define SIZE_TYPE "unsigned int"
|
||||
|
||||
#undef PTRDIFF_TYPE
|
||||
#define PTRDIFF_TYPE "int"
|
||||
|
||||
/* Node: Sections */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue