From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18789 invoked by alias); 11 Dec 2002 23:01:12 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 18782 invoked from network); 11 Dec 2002 23:01:12 -0000 Received: from unknown (HELO igw3.watson.ibm.com) (198.81.209.18) by sources.redhat.com with SMTP; 11 Dec 2002 23:01:12 -0000 Received: from sp1n293en1.watson.ibm.com (sp1n293en1.watson.ibm.com [9.2.112.57]) by igw3.watson.ibm.com (8.11.4/8.11.4) with ESMTP id gBBN0eQ23614; Wed, 11 Dec 2002 18:00:40 -0500 Received: from makai.watson.ibm.com (makai.watson.ibm.com [9.2.216.144]) by sp1n293en1.watson.ibm.com (8.11.4/8.11.4) with ESMTP id gBBN0dg22138; Wed, 11 Dec 2002 18:00:39 -0500 Received: from watson.ibm.com (localhost [127.0.0.1]) by makai.watson.ibm.com (AIX4.3/8.9.3/8.9.3/09-18-2002) with ESMTP id SAA29638; Wed, 11 Dec 2002 18:00:39 -0500 Message-Id: <200212112300.SAA29638@makai.watson.ibm.com> To: Zack Weinberg cc: gcc-patches@gcc.gnu.org Subject: 3.4BIB HOST_WIDE_INT size error Date: Wed, 11 Dec 2002 15:01:00 -0000 From: David Edelsohn X-SW-Source: 2002-12/txt/msg00637.txt.bz2 And now the next problem... With the tm.h files removed from config.h and bconfig.h, the sizes of target types are not defined before system.h includes hwint.h. >From hwint.h: # ifdef MAX_LONG_TYPE_SIZE # if MAX_LONG_TYPE_SIZE > HOST_BITS_PER_LONG Without tm.h, MAX_LONG_TYPE_SIZE is not defined, so HOST_WIDE_INT defaults to "int" instead of "long long". Building cross-compiler from 32-bit host to 64-bit target fails. David