From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24514 invoked by alias); 21 May 2004 03:30:51 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 24383 invoked from network); 21 May 2004 03:30:49 -0000 Received: from unknown (HELO grok.sabl.com) (216.99.207.39) by sourceware.org with SMTP; 21 May 2004 03:30:49 -0000 Received: from sabl.com (nemo.sabl.com [192.168.2.3]) by grok.sabl.com (Postfix) with ESMTP id 68450847F3 for ; Thu, 20 May 2004 23:30:49 -0400 (EDT) Message-ID: <40AD7974.4060907@sabl.com> Date: Fri, 21 May 2004 03:30:00 -0000 From: Bart Locanthi User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20031016 MIME-Version: 1.0 To: gcc-help@gcc.gnu.org Subject: unable to configure for m68k Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-05/txt/msg00226.txt.bz2 hi, i'm trying to build a cross-compiler on linux to target m68000, and i think the coldfire variant. however, when i try to configure/make it, i get a message about the assembler not knowing about the 68020. i've tried telling configure to only target the 68000 but that option doesn't work for m68k. here's one of many things i've tried: % ./configure --prefix=/usr/local/68k --target=m68k-none-elf --with-gnu-as --with-gnu-ld % make ... /usr/local/src/gcc-3.4.0/gcc/xgcc -B/usr/local/src/gcc-3.4.0/gcc/ -B/usr/local/68k/m68k-none-elf/bin/ -B/usr/local/68k/m68k-none-elf/lib/ -isystem /usr/local/68k/m68k-none-elf/include -isystem /usr/local/68k/m68k-none-elf/sys-include -O2 -DIN_GCC -DCROSS_COMPILE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -I. -I. -I./. -I./../include -g0 -finhibit-size-directive -fno-inline-functions -fno-exceptions -fno-zero-initialized-in-bss -fno-unit-at-a-time \ -Dinhibit_libc -c ./crtstuff.c -DCRT_BEGIN \ -o crtbegin.o as: unrecognized option `-mc68020' make[1]: *** [crtbegin.o] Error 1 make[1]: Leaving directory `/usr/local/src/gcc-3.4.0/gcc' make: *** [all-gcc] Error 2 suggestions welcome.