From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12588 invoked by alias); 26 Jul 2014 00:48:55 -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 12574 invoked by uid 89); 26 Jul 2014 00:48:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mout.gmx.com Received: from mout.gmx.com (HELO mout.gmx.com) (74.208.4.200) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sat, 26 Jul 2014 00:48:53 +0000 Received: from localhost.localdomain ([190.149.84.44]) by mail.gmx.com (mrgmxus002) with ESMTPSA (Nemesis) id 0M0PZT-1WNPNU0OlB-00udxU for ; Sat, 26 Jul 2014 02:48:49 +0200 Date: Sat, 26 Jul 2014 00:48:00 -0000 Subject: Re: Problem to compile gcc 4.9.1 Message-ID: <6f49a004e1f47bfe8890a62a0b85b568@german-desktop> MIME-Version: 1.0 (Generated by Pantomime 1.2.0) From: =?iso-8859-1?q?Germ=E1n_Arias?= To: GCC Reply-To: germanandre@gmx.es In-Reply-To: <5d0090df959efa438897f3dd1546b6fc@german-desktop> User-Agent: GNUMail (Version 1.2.1) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00106.txt.bz2 On 2014-07-24 17:19:45 -0600 Germ=E1n Arias wrote: > I have a directory objdir to build gcc, the to configure I run: >=20 > .../gcc-4.9.1/configure --enable-languages=3Dobjc --enable-threads >=20 > All OK, then "make" and I get the error: >=20 > -I../../gcc-4.9.1/gcc/. -I../../gcc-4.9.1/gcc/../include=20 > -I../../gcc-4.9.1/gcc/../libcpp/include=20=20 > -I../../gcc-4.9.1/gcc/../libdecnumber=20 > -I../../gcc-4..9.1/gcc/../libdecnumber/bid -I../libdecnumber=20 > -I../../gcc-4.9.1/gcc/../libbacktrace -o insn-recog.o -MT insn-recog.o= =20 > -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; newlin= e=20 > 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= =20 > directive > make[3]: *** [insn-recog.o] Error 1 > make[3]: se sale del directorio =AB/home/german/Instalados/source/objgcc/= gcc=BB > make[2]: *** [all-stage3-gcc] Error 2 > make[2]: se sale del directorio =AB/home/german/Instalados/source/objgcc= =BB > make[1]: *** [stage3-bubble] Error 2 > make[1]: se sale del directorio =AB/home/german/Instalados/source/objgcc= =BB > make: *** [all] Error 2 >=20 > This is on Trisquel 6 for x86. Any advice? Thanks. >=20 > Germ=E1n. >=20 Adding the option --disable-bootstrap solve the problem. Maybe a problem wi= th comparison?. Germ=E1n.