From patchwork Wed Mar 2 15:20:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Pop X-Patchwork-Id: 85095 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 09EE2B70CC for ; Thu, 3 Mar 2011 02:21:34 +1100 (EST) Received: (qmail 8689 invoked by alias); 2 Mar 2011 15:21:32 -0000 Received: (qmail 8677 invoked by uid 22791); 2 Mar 2011 15:21:32 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, TW_SV X-Spam-Check-By: sourceware.org Received: from mail-yi0-f47.google.com (HELO mail-yi0-f47.google.com) (209.85.218.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 02 Mar 2011 15:21:24 +0000 Received: by yia13 with SMTP id 13so2717382yia.20 for ; Wed, 02 Mar 2011 07:21:23 -0800 (PST) Received: by 10.90.67.14 with SMTP id p14mr240695aga.197.1299079283099; Wed, 02 Mar 2011 07:21:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.90.74.10 with HTTP; Wed, 2 Mar 2011 07:20:43 -0800 (PST) In-Reply-To: <4D6E5F07.2000705@oracle.com> References: <20110223193905.GD24784@gmx.de> <1298494027-24185-1-git-send-email-sebpop@gmail.com> <20110227063524.GD16255@gmx.de> <20110227093848.GA19328@gmx.de> <4D6E5F07.2000705@oracle.com> From: Sebastian Pop Date: Wed, 2 Mar 2011 09:20:43 -0600 Message-ID: Subject: Re: [PATCH] Add -lpwl to ppllibs. To: Paolo Carlini Cc: Richard Guenther , Ralf Wildenhues , GCC Patches , binutils@sourceware.org, gdb-patches@sourceware.org X-IsSubscribed: yes 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 On Wed, Mar 2, 2011 at 09:15, Paolo Carlini wrote: > On 03/02/2011 04:01 PM, Richard Guenther wrote: >> It seems to work for me >> > Likewise, with my usual simple configure line including only > --enable-cloog-backend=isl beyond trivial things. I have committed the attached patch to gcc trunk. Sebastian From 7aa8604d6bcfc9a8523fd769ec8a25e7d8cfba68 Mon Sep 17 00:00:00 2001 From: spop Date: Wed, 2 Mar 2011 15:18:47 +0000 Subject: [PATCH] Fix configure problem. 2011-03-02 Sebastian Pop * configure.ac: Adjust test of with_ppl. * configure: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170618 138bc75d-0d04-0410-961f-82ee72b054a4 --- ChangeLog | 5 +++++ configure | 2 +- configure.ac | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 92f4f15..b066896 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-03-02 Sebastian Pop + + * configure.ac: Adjust test of with_ppl. + * configure: Regenerated. + 2011-03-02 Kai Tietz * MAINTAINERS: Adjust my e-mail address. diff --git a/configure b/configure index 997282f..5e97d0f 100755 --- a/configure +++ b/configure @@ -5723,7 +5723,7 @@ if test x"$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; with_ppl=yes fi -if test "x$with_ppl" = xyes; then +if test "x$with_ppl" != xno; then if test "x$pwllib" = x; then saved_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $ppllibs" diff --git a/configure.ac b/configure.ac index 4fb29c0..233ce0a 100644 --- a/configure.ac +++ b/configure.ac @@ -1675,7 +1675,7 @@ if test x"$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; with_ppl=yes fi -if test "x$with_ppl" = xyes; then +if test "x$with_ppl" != xno; then if test "x$pwllib" = x; then saved_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $ppllibs" -- 1.7.1