From patchwork Wed Mar 2 14:48:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sebastian Pop X-Patchwork-Id: 85088 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 0A10DB70B4 for ; Thu, 3 Mar 2011 01:49:16 +1100 (EST) Received: (qmail 15855 invoked by alias); 2 Mar 2011 14:49:08 -0000 Received: (qmail 15828 invoked by uid 22791); 2 Mar 2011 14:49:07 -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 X-Spam-Check-By: sourceware.org Received: from mail-gw0-f48.google.com (HELO mail-gw0-f48.google.com) (74.125.83.48) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 02 Mar 2011 14:49:01 +0000 Received: by gwj20 with SMTP id 20so2876426gwj.21 for ; Wed, 02 Mar 2011 06:48:59 -0800 (PST) Received: by 10.91.22.19 with SMTP id z19mr255015agi.170.1299077339185; Wed, 02 Mar 2011 06:48:59 -0800 (PST) MIME-Version: 1.0 Received: by 10.90.74.10 with HTTP; Wed, 2 Mar 2011 06:48:19 -0800 (PST) In-Reply-To: References: <20110223193905.GD24784@gmx.de> <1298494027-24185-1-git-send-email-sebpop@gmail.com> <20110227063524.GD16255@gmx.de> <20110227093848.GA19328@gmx.de> From: Sebastian Pop Date: Wed, 2 Mar 2011 08:48:19 -0600 Message-ID: Subject: Re: [PATCH] Add -lpwl to ppllibs. To: Richard Guenther Cc: 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 06:20, Richard Guenther wrote: > As you can see from the link line it doesn't link ppl at all.  ppllibs is empty > for me. > > Please revert or fix ASAP. Does the attached patch fix the problem you are seeing? Thanks, Sebastian From 05223494274bc509fddf4f2546f50e4294c9537f Mon Sep 17 00:00:00 2001 From: Sebastian Pop Date: Wed, 2 Mar 2011 08:47:36 -0600 Subject: [PATCH] Fix configure problem. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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