From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11206 invoked by alias); 28 Jul 2014 08:25:24 -0000 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 Received: (qmail 11195 invoked by uid 89); 28 Jul 2014 08:25:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.3 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 28 Jul 2014 08:25:22 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s6S8PKZ4008775 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 28 Jul 2014 04:25:20 -0400 Received: from zebedee.pink (ovpn-113-51.phx2.redhat.com [10.3.113.51]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s6S8PIOV022679; Mon, 28 Jul 2014 04:25:19 -0400 Message-ID: <53D608EE.1010701@redhat.com> Date: Mon, 28 Jul 2014 08:25:00 -0000 From: Andrew Haley User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.7.0 MIME-Version: 1.0 To: germanandre@gmx.es, GCC Subject: Re: Problem to compile gcc 4.9.1 References: <6f49a004e1f47bfe8890a62a0b85b568@german-desktop> In-Reply-To: <6f49a004e1f47bfe8890a62a0b85b568@german-desktop> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00112.txt.bz2 On 26/07/14 01:48, Germán Arias wrote: > On 2014-07-24 17:19:45 -0600 Germán Arias wrote: > >> I have a directory objdir to build gcc, the to configure I run: >> >> .../gcc-4.9.1/configure --enable-languages=objc --enable-threads >> >> All OK, then "make" and I get the error: >> >> -I../../gcc-4.9.1/gcc/. -I../../gcc-4.9.1/gcc/../include >> -I../../gcc-4.9.1/gcc/../libcpp/include >> -I../../gcc-4.9.1/gcc/../libdecnumber >> -I../../gcc-4..9.1/gcc/../libdecnumber/bid -I../libdecnumber >> -I../../gcc-4.9.1/gcc/../libbacktrace -o insn-recog.o -MT insn-recog.o >> -MMD -MP -MF ./.deps/insn-recog.TPo insn-recog.c >> /tmp/ccNhO7ry.s: Assembler messages: >> /tmp/ccNhO7ry.s:225716: Warning: end of file not at end of a line; newline >> inserted >> /tmp/ccNhO7ry.s:227059: Error: number of operands mismatch for `je' >> /tmp/ccNhO7ry.s: Error: open CFI at the end of file; missing .cfi_endproc >> directive >> make[3]: *** [insn-recog.o] Error 1 >> make[3]: se sale del directorio «/home/german/Instalados/source/objgcc/gcc» >> make[2]: *** [all-stage3-gcc] Error 2 >> make[2]: se sale del directorio «/home/german/Instalados/source/objgcc» >> make[1]: *** [stage3-bubble] Error 2 >> make[1]: se sale del directorio «/home/german/Instalados/source/objgcc» >> make: *** [all] Error 2 >> >> This is on Trisquel 6 for x86. Any advice? Thanks. > > Adding the option --disable-bootstrap solve the problem. Not really: it just means that your compiler hasn't been tested. There is certainly something wrong, and it needs debugging, but I don't know what it might be. Andrew.