From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2325 invoked by alias); 17 Oct 2006 22:23:28 -0000 Received: (qmail 2314 invoked by uid 22791); 17 Oct 2006 22:23:27 -0000 X-Spam-Check-By: sourceware.org Received: from dessent.net (HELO dessent.net) (69.60.119.225) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 17 Oct 2006 22:23:23 +0000 Received: from localhost ([127.0.0.1] helo=dessent.net) by dessent.net with esmtp (Exim 4.61) (envelope-from ) id 1GZxLF-00018H-OG; Tue, 17 Oct 2006 22:23:21 +0000 Message-ID: <453557D9.78D830AF@dessent.net> Date: Tue, 17 Oct 2006 22:27:00 -0000 From: Brian Dessent Reply-To: gcc@gcc.gnu.org X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) MIME-Version: 1.0 To: bob_rossi@cox.net CC: gcc@gcc.gnu.org Subject: Re: build error References: <22857248.1161094360255.JavaMail.root@eastrmwml04.mgt.cox.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2006-10/txt/msg00381.txt.bz2 Consider posting this kind of question to gcc-help@ instead. bob_rossi@cox.net wrote: > I just ran these commands: > > svn -q checkout svn://gcc.gnu.org/svn/gcc/trunk gcc > mkdir builddir > cd builddir > CFLAGS="-g" ../gcc/configure --enable-languages=c,c++ --enable-checking \ > --disable-bootstrap --prefix=$PWD/../prefixdir > make -s > make install > > and I got the attached compile error. Is this a known issue on an > Althlon64 processor? Are there any work arounds? I don't think it has anything to do with your processor, but the fact that your build directory is a subdirectory of the source tree is generally a no-no. See . Brian