From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29956 invoked by alias); 6 Aug 2003 23:38:39 -0000 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 Received: (qmail 29947 invoked from network); 6 Aug 2003 23:38:37 -0000 Received: from unknown (HELO mail.codesourcery.com) (65.73.237.138) by sources.redhat.com with SMTP; 6 Aug 2003 23:38:37 -0000 Received: (qmail 13778 invoked from network); 6 Aug 2003 23:36:46 -0000 Received: from egil.codesourcery.com (HELO taltos.codesourcery.com) (zack@66.92.14.122) by mail.codesourcery.com with DES-CBC3-SHA encrypted SMTP; 6 Aug 2003 23:36:46 -0000 Received: by taltos.codesourcery.com (sSMTP sendmail emulation); Wed, 6 Aug 2003 16:36:19 -0700 From: "Zack Weinberg" To: kenner@vlsi1.ultra.nyu.edu (Richard Kenner) Cc: gcc@gcc.gnu.org Subject: Re: Problem in split_basic_block References: <10308062258.AA03807@vlsi1.ultra.nyu.edu> Date: Wed, 06 Aug 2003 23:47:00 -0000 In-Reply-To: <10308062258.AA03807@vlsi1.ultra.nyu.edu> (Richard Kenner's message of "Wed, 6 Aug 03 18:58:59 EDT") Message-ID: <87brv2mk98.fsf@codesourcery.com> User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-08/txt/msg00404.txt.bz2 kenner@vlsi1.ultra.nyu.edu (Richard Kenner) writes: I realize you're not contributing this port now, but... > + # This removes the cpu type and manufacturer components and > + # replaces "." with "_" in the operating system version. > + case $host in *-*-*vms*) > + target_alias=`echo $host \ > + | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'` > + ;; > + esac this should not be necessary > + prefix=/gnu > + local_prefix=/gnu inappropriate; you are overriding the user, and breaking installation of cross compilers targeting this port > + # Assemble startup files. > + vcrt0.o: $(CRT0_S) $(GCC_PASSES) > + ./decc -c /names=as_is $(srcdir)/config/ia64/vms-crt0.c -o vcrt0.o > + > + pcrt0.o: $(CRT0_S) $(GCC_PASSES) > + ./decc -c /names=as_is $(srcdir)/config/ia64/vms-psxcrt0.c -o pcrt0.o why the hell can't this code be compiled with gcc? (the alpha-vms port has the same problem) > + #define MD_EXEC_PREFIX "/gnu/lib/gcc-lib/" > + #define MD_STARTFILE_PREFIX "/gnu/lib/gcc-lib/" > + > + /* Specify the list of include file directories. */ > + #define INCLUDE_DEFAULTS \ > + { \ > + { "/gnu/lib/gcc-lib/include", 0, 0, 0 }, \ > + { "/gnu_gxx_include", 0, 1, 1 }, \ > + { "/gnu_cc_include", 0, 0, 0 }, \ > + { "/gnu/include", 0, 0, 0 }, \ > + { 0, 0, 0, 0 } \ > + } this also interferes with cross compiler use zw