From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30940 invoked by alias); 6 Aug 2002 12:39:57 -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 30930 invoked from network); 6 Aug 2002 12:39:55 -0000 Received: from unknown (HELO core.inf.ethz.ch) (129.132.178.196) by sources.redhat.com with SMTP; 6 Aug 2002 12:39:55 -0000 Received: from tifi.inf.ethz.ch (tifi.inf.ethz.ch [129.132.11.2]) by core.inf.ethz.ch (8.9.3/8.9.3) with ESMTP id OAA16607 for ; Tue, 6 Aug 2002 14:39:54 +0200 (MET DST) Received: from localhost (dhcp-ti20.inf.ethz.ch [129.132.11.30]) by tifi.inf.ethz.ch (8.8.8/8.8.8) with ESMTP id OAA16963 for ; Tue, 6 Aug 2002 14:39:54 +0200 (MET DST) Date: Tue, 06 Aug 2002 05:39:00 -0000 Mime-Version: 1.0 (Apple Message framework v482) Content-Type: text/plain; charset=US-ASCII; format=flowed Subject: gcc-3.1.1: make bootstrap fails on Darwin/Altivec From: Kaspar Fischer To: gcc-help@gcc.gnu.org Content-Transfer-Encoding: 7bit Message-Id: <9AB567A4-A939-11D6-BD51-00039367559A@inf.ethz.ch> X-SW-Source: 2002-08/txt/msg00033.txt.bz2 Dear everybody, I'm trying to build gcc-3.1.1 on MacOS 10.1.5 (PowerBook G4). I am not an expert, so please excuse me if I am doing something silly. I started with ../gcc-3.1.1/configure --prefix=/usr/local/gcc-3.1.1 --enable-altivec --enable-languages=c,c++ followed by 'make bootstrap'. The latter failed as follows: ... ./xgcc -B./ -B/usr/local/gcc-3.1.1/powerpc-apple-darwin5.5/bin/ -isystem /usr/local/gcc-3.1.1/powerpc-apple-darwin5.5/include -isystem /usr/local/gcc-3.1.1/powerpc-apple-darwin5.5/sys-include -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isystem ./include -g -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -I. -I. -I../../gcc-3.1.1/gcc -I../../gcc-3.1.1/gcc/. -I../../gcc-3.1.1/gcc/config -I../../gcc-3.1.1/gcc/../include -fexceptions -c ../../gcc-3.1.1/gcc/unwind-dw2.c -o libgcc/./unwind-dw2.o ../../gcc-3.1.1/gcc/unwind-dw2.c: In function `extract_cie_info': ../../gcc-3.1.1/gcc/unwind-dw2.c:226: warning: implicit declaration of function `strlen' ../../gcc-3.1.1/gcc/unwind-dw2.c: In function `uw_frame_state_for': ../../gcc-3.1.1/gcc/unwind-dw2.c:899: warning: implicit declaration of function `memset' ../../gcc-3.1.1/gcc/unwind-dw2.c: In function `uw_install_context_1': ../../gcc-3.1.1/gcc/unwind-dw2.c:1181: warning: implicit declaration of function `memcpy' /var/tmp//ccWKPvXc.s:3286:vector instruction is optional for the PowerPC (not allowed without -force_cpusubtype_ALL option) /var/tmp//ccWKPvXc.s:3289:vector instruction is optional for the PowerPC (not allowed without -force_cpusubtype_ALL option) ... /var/tmp//ccWKPvXc.s:4088:vector instruction is optional for the PowerPC (not allowed without -force_cpusubtype_ALL option) make[3]: *** [libgcc/./unwind-dw2.o] Error 1 make[2]: *** [stmp-multilib] Error 2 make[1]: *** [stage1_build] Error 2 make: *** [bootstrap] Error 2 I guess there is something wrong with the assembler because the problem arises in a .s-file. Can somebody help me? Thanks a lot, Kaspar