From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16098 invoked by alias); 29 Nov 2001 13:14:04 -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 16045 invoked from network); 29 Nov 2001 13:14:01 -0000 Received: from unknown (HELO Cantor.suse.de) (213.95.15.193) by hostedprojects.ges.redhat.com with SMTP; 29 Nov 2001 13:14:01 -0000 Received: from Hermes.suse.de (Hermes.suse.de [213.95.15.136]) by Cantor.suse.de (Postfix) with ESMTP id 90AF71E10C; Thu, 29 Nov 2001 14:14:00 +0100 (MET) X-Authentication-Warning: gee.suse.de: aj set sender to aj@suse.de using -f Mail-Copies-To: never To: kenner@vlsi1.ultra.nyu.edu (Richard Kenner) Cc: gcc@gcc.gnu.org Subject: Re: Top level configure unsupported targets References: <10111291257.AA21720@vlsi1.ultra.nyu.edu> From: Andreas Jaeger Date: Wed, 21 Nov 2001 13:56:00 -0000 In-Reply-To: <10111291257.AA21720@vlsi1.ultra.nyu.edu> (kenner@vlsi1.ultra.nyu.edu's message of "Thu, 29 Nov 01 07:57:15 EST") Message-ID: User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.4 (Artificial Intelligence, i386-suse-linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2001-11/txt/msg01040.txt.bz2 kenner@vlsi1.ultra.nyu.edu (Richard Kenner) writes: > Does this look correct: > > Configuring for a alphaev56-dec-osf4.0c host. > *** This configuration is not supported in the following subdirectories: > target-libffi target-boehm-gc target-zlib target-libjava target-libchill libchill is correct. The rest are java and its support libraries. On Linux those are supported but apprently not everywhere. The top level configure.in disables them via: alpha*-dec-osf*) # ld works, but does not support shared libraries. emacs doesn't # work. newlib is not 64 bit ready. I'm not sure about fileutils. # gas doesn't generate exception information. noconfigdirs="$noconfigdirs gas ld emacs fileutils target-newlib target-libgloss ${libgcj}" ;; I don't rember what needs to be done to enable the libgcj libraries but with that line in configure.in your output is correct. Andreas -- Andreas Jaeger SuSE Labs aj@suse.de private aj@arthur.inka.de http://www.suse.de/~aj From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Jaeger To: kenner@vlsi1.ultra.nyu.edu (Richard Kenner) Cc: gcc@gcc.gnu.org Subject: Re: Top level configure unsupported targets Date: Thu, 29 Nov 2001 05:14:00 -0000 Message-ID: References: <10111291257.AA21720@vlsi1.ultra.nyu.edu> X-SW-Source: 2001-11/msg01541.html Message-ID: <20011129051400.dUdbgrnsuGrEotkLhwQjYb7DSP11_F5XqNJjZkEy6ao@z> kenner@vlsi1.ultra.nyu.edu (Richard Kenner) writes: > Does this look correct: > > Configuring for a alphaev56-dec-osf4.0c host. > *** This configuration is not supported in the following subdirectories: > target-libffi target-boehm-gc target-zlib target-libjava target-libchill libchill is correct. The rest are java and its support libraries. On Linux those are supported but apprently not everywhere. The top level configure.in disables them via: alpha*-dec-osf*) # ld works, but does not support shared libraries. emacs doesn't # work. newlib is not 64 bit ready. I'm not sure about fileutils. # gas doesn't generate exception information. noconfigdirs="$noconfigdirs gas ld emacs fileutils target-newlib target-libgloss ${libgcj}" ;; I don't rember what needs to be done to enable the libgcj libraries but with that line in configure.in your output is correct. Andreas -- Andreas Jaeger SuSE Labs aj@suse.de private aj@arthur.inka.de http://www.suse.de/~aj