From patchwork Fri Apr 1 12:34:31 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 89256 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 491F7B6F91 for ; Fri, 1 Apr 2011 23:34:41 +1100 (EST) Received: (qmail 25262 invoked by alias); 1 Apr 2011 12:34:39 -0000 Received: (qmail 25248 invoked by uid 22791); 1 Apr 2011 12:34:38 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 01 Apr 2011 12:34:33 +0000 Received: (qmail 595 invoked from network); 1 Apr 2011 12:34:32 -0000 Received: from unknown (HELO digraph.polyomino.org.uk) (joseph@127.0.0.2) by mail.codesourcery.com with ESMTPA; 1 Apr 2011 12:34:32 -0000 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.72) (envelope-from ) id 1Q5dYd-0006IW-6w; Fri, 01 Apr 2011 12:34:31 +0000 Date: Fri, 1 Apr 2011 12:34:31 +0000 (UTC) From: "Joseph S. Myers" To: gcc-patches@gcc.gnu.org cc: bonzini@gnu.org, dj@redhat.com, neroden@gcc.gnu.org, aoliva@redhat.com, Ralf.Wildenhues@gmx.de Subject: More old target toplevel cleanup Message-ID: MIME-Version: 1.0 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org This patch does some more toplevel configure cleanup related to targets no longer supported by GCC: * The code to enable libgomp on hosted POSIX systems handled *-*-sysv4*; GCC no longer supports any such targets. * The md_exec_prefix code covered lots of targets that either are no longer supported by GCC, or that no longer define MD_EXEC_PREFIX after my cleanups for 4.6; this is reduced to the set of targets that actually define this macro in current GCC (DJGPP, HP-UX, QNX, Solaris). (In the VMS case, a different macro, STANDARD_EXEC_PREFIX, is defined - but it's "/gnu/libexec/gcc/" in xm-vms.h, not the value in this script.) OK to commit? 2011-04-01 Joseph Myers * configure.ac (*-*-sysv4*): Don't enable libgomp. (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*, powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*, powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*, xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*, *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove md_exec_prefix cases. * configure: Regenerate. Index: configure.ac =================================================================== --- configure.ac (revision 171827) +++ configure.ac (working copy) @@ -506,7 +506,7 @@ ;; *-*-netbsd* | *-*-freebsd* | *-*-openbsd* | *-*-dragonfly*) ;; - *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11*) + *-*-solaris2* | *-*-irix6* | *-*-osf* | *-*-hpux11*) ;; *-*-darwin* | *-*-aix*) ;; @@ -2174,46 +2174,12 @@ # the *-*-osname triplets last. md_exec_prefix= case "${target}" in - alpha*-*-*vms*) - md_exec_prefix=/gnu/lib/gcc-lib - ;; i[[34567]]86-pc-msdosdjgpp*) md_exec_prefix=/dev/env/DJDIR/bin ;; - i[[34567]]86-*-sco3.2v5*) - if test $with_gnu_as = yes; then - md_exec_prefix=/usr/gnu/bin - else - md_exec_prefix=/usr/ccs/bin/elf - fi - ;; - - mn10300-*-* | \ - powerpc-*-chorusos* | \ - powerpc*-*-eabi* | \ - powerpc*-*-sysv* | \ - powerpc*-*-kaos* | \ - s390x-ibm-tpf*) - md_exec_prefix=/usr/ccs/bin - ;; - sparc64-*-elf*) - ;; - v850*-*-*) - md_exec_prefix=/usr/ccs/bin - ;; - xtensa*-*-elf*) - ;; - - *-*-beos* | \ - *-*-elf* | \ *-*-hpux* | \ - *-*-netware* | \ *-*-nto-qnx* | \ - *-*-rtems* | \ - *-*-solaris2* | \ - *-*-sysv[[45]]* | \ - *-*-vxworks* | \ - *-wrs-windiss) + *-*-solaris2*) md_exec_prefix=/usr/ccs/bin ;; esac