From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 858 invoked by alias); 6 May 2010 06:16:31 -0000 Received: (qmail 844 invoked by uid 22791); 6 May 2010 06:16:28 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 06 May 2010 06:16:23 +0000 Received: from wpaz24.hot.corp.google.com (wpaz24.hot.corp.google.com [172.24.198.88]) by smtp-out.google.com with ESMTP id o466GKvR025862 for ; Wed, 5 May 2010 23:16:20 -0700 Received: from iwn15 (iwn15.prod.google.com [10.241.68.79]) by wpaz24.hot.corp.google.com with ESMTP id o466GIFM001841 for ; Wed, 5 May 2010 23:16:19 -0700 Received: by iwn15 with SMTP id 15so7765356iwn.2 for ; Wed, 05 May 2010 23:16:18 -0700 (PDT) Received: by 10.231.153.67 with SMTP id j3mr630781ibw.37.1273126578784; Wed, 05 May 2010 23:16:18 -0700 (PDT) Received: from coign.google.com (adsl-71-133-8-30.dsl.pltn13.pacbell.net [71.133.8.30]) by mx.google.com with ESMTPS id 22sm517314iwn.12.2010.05.05.23.16.16 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 05 May 2010 23:16:17 -0700 (PDT) To: Pavel Pavlov Cc: "gcc-help\@gcc.gnu.org" Subject: Re: Problem building gcc References: From: Ian Lance Taylor Date: Thu, 06 May 2010 06:16:00 -0000 In-Reply-To: (Pavel Pavlov's message of "Thu\, 6 May 2010 01\:39\:54 -0400") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2010-05/txt/msg00070.txt.bz2 Pavel Pavlov writes: > In that particular case I have this config.status : http://pastebin.com/PSsaya6F > Yet, the final config.h is absolutely identical to config.in: http://pastebin.com/ecL4qkqT with the only change added is the single line at the top: > /* config.h. Generated from config.in by configure. */ There is some contradiction there. The config.status file says HAVE_LIMITS_H should be defined. The config.h file says that it is not defined. Precisely which config.status and config.h file did you paste? There are several different files with those names in the build tree. In particular, did you paste files from the same directory? The most useful file to look at in these cases is the config.log file. Look at the one in the directory whose config.h says that HAVE_LIMITS_H is undefined. Look for the test for whether limits.h is present. Look for compilation errors. Ian