From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30568 invoked by alias); 7 Apr 2010 14:49:15 -0000 Received: (qmail 30466 invoked by uid 22791); 7 Apr 2010 14:49:00 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=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) (74.125.121.35) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 07 Apr 2010 14:48:56 +0000 Received: from hpaq12.eem.corp.google.com (hpaq12.eem.corp.google.com [10.3.21.12]) by smtp-out.google.com with ESMTP id o37Ems7I006133 for ; Wed, 7 Apr 2010 16:48:54 +0200 Received: from qw-out-1920.google.com (qwa14.prod.google.com [10.241.193.14]) by hpaq12.eem.corp.google.com with ESMTP id o37EmqD7010773 for ; Wed, 7 Apr 2010 16:48:53 +0200 Received: by qw-out-1920.google.com with SMTP id 14so376347qwa.56 for ; Wed, 07 Apr 2010 07:48:52 -0700 (PDT) Received: by 10.229.191.138 with SMTP id dm10mr620089qcb.52.1270651731567; Wed, 07 Apr 2010 07:48:51 -0700 (PDT) Received: from coign.google.com ([67.218.106.169]) by mx.google.com with ESMTPS id 20sm8604985qyk.12.2010.04.07.07.48.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 07 Apr 2010 07:48:50 -0700 (PDT) To: boon chiaweng Cc: Subject: Re: help with gcc-3.2.3 References: From: Ian Lance Taylor Date: Wed, 07 Apr 2010 14:49:00 -0000 In-Reply-To: (boon chiaweng's message of "Wed\, 31 Mar 2010 22\:18\:46 +0800") 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-04/txt/msg00035.txt.bz2 boon chiaweng writes: > I have been trying to install gcc-3.2.3, and ran into this error: > /usr/bin/ld: error in /home/chiab/gcc/gcc/crtend.o(.eh_frame); no .eh_frame_hdr table will be created. That is just a warning. It means that the compiler passed the --eh-frame-hdr option to the linker, but the linker is unable to create it. You didn't really say when the error occurred, but perhaps the linker is unable to recognize the exception frame information generated by your old version of gcc. Ian