From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8503 invoked by alias); 13 Aug 2008 20:26:36 -0000 Received: (qmail 8490 invoked by uid 22791); 13 Aug 2008 20:26:35 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.33.17) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 13 Aug 2008 20:26:00 +0000 Received: from zps75.corp.google.com (zps75.corp.google.com [172.25.146.75]) by smtp-out.google.com with ESMTP id m7DKPh2k010395; Wed, 13 Aug 2008 21:25:43 +0100 Received: from localhost.localdomain.google.com (dhcp-172-18-118-203.corp.google.com [172.18.118.203]) (authenticated bits=0) by zps75.corp.google.com with ESMTP id m7DKPf7X024492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 13 Aug 2008 13:25:42 -0700 To: cihan Cc: gcc-help@gcc.gnu.org Subject: Re: gcc 2.95.3 building problem References: <48A1D912.7060203@enderunix.org> <48A32619.8060708@enderunix.org> From: Ian Lance Taylor Date: Thu, 14 Aug 2008 04:05:00 -0000 In-Reply-To: <48A32619.8060708@enderunix.org> (cihan@enderunix.org's message of "Wed\, 13 Aug 2008 21\:21\:13 +0300") 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-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: 2008-08/txt/msg00135.txt.bz2 cihan writes: > In file included from /usr/include/sys/types.h:270, > from /usr/include/stdlib.h:320, > from ./libgcc2.c:41: > /usr/include/bits/pthreadtypes.h:69: warning: unnamed struct/union > that defines no instances This looks like gcc 2.95.3 can't compile your C library. /usr/include/bits/pthreadtypes.h is not part of gcc. > ./frame.c:55: extra brace group at end of initializer > ./frame.c:55: (near initialization for `object_mutex.__data') > ./frame.c:55: warning: excess elements in struct initializer > ./frame.c:55: warning: (near initialization for `object_mutex.__data') This is an attempt to use PTHREAD_MUTEX_INIT, and it looks like your C library defines it in a way which gcc 2.95.3 can't handle. In short, you are in a world of pain. Why do you want gcc 2.95.3 anyhow? Ian