Subject: CVS commit: gnusrc/gnu/usr.bin/gcc/arch/arm
To: None <source-changes@netbsd.org>
From: Reinoud Zandijk <reinoud@netbsd.org>
List: source-changes
Date: 01/30/2002 19:11:45
Module Name:	gnusrc
Committed By:	reinoud
Date:		Wed Jan 30 17:11:45 UTC 2002

Modified Files:
	gnusrc/gnu/usr.bin/gcc/arch/arm: auto-host.h

Log Message:
The config file mentiones that if off_t isnt defined its defined in gcc as
`long'. This gives rise to defining `off_t' to a signed 64 bit on LP64
machines giving rise to cross compiling errors.

By explicitly setting it to int32_t its forced to use signed 32 bits
integers as required and expected on the ILP32 ARM processor.

This aparently fixes PR 15303


To generate a diff of this commit:
cvs rdiff -r1.3 -r1.4 gnusrc/gnu/usr.bin/gcc/arch/arm/auto-host.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.