From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15459 invoked by alias); 7 May 2013 12:40:59 -0000 Mailing-List: contact prelink-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: prelink-owner@sourceware.org Received: (qmail 15432 invoked by uid 89); 7 May 2013 12:40:55 -0000 X-Spam-SWARE-Status: No, score=-7.0 required=5.0 tests=AWL,BAYES_00,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 07 May 2013 12:40:54 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r47CenvY019804 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 7 May 2013 08:40:49 -0400 Received: from zalov.cz (vpn-59-6.rdu2.redhat.com [10.10.59.6]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r47CemPS027723 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 7 May 2013 08:40:49 -0400 Received: from zalov.cz (localhost [127.0.0.1]) by zalov.cz (8.14.5/8.14.5) with ESMTP id r47CeklR022048; Tue, 7 May 2013 14:40:47 +0200 Received: (from jakub@localhost) by zalov.cz (8.14.5/8.14.5/Submit) id r47Cei7E022047; Tue, 7 May 2013 14:40:44 +0200 Date: Tue, 07 May 2013 12:40:00 -0000 From: Jakub Jelinek To: Tom de Vries Cc: prelink@sourceware.org Subject: Re: [PATCH] Add LINKOPTS to CCLINK and CXXLINK in testsuite/Makefile.am Message-ID: <20130507124043.GD28963@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <5188F4B0.7050309@mentor.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5188F4B0.7050309@mentor.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2013-q2/txt/msg00001.txt.bz2 On Tue, May 07, 2013 at 02:33:52PM +0200, Tom de Vries wrote: > this patch allows me to run all the tests successfully on x86_64 with > LINKOPTS="-Wl,--no-as-needed" set in the environment. That shouldn't be needed anymore, are you using latest SVN prelink? Before those testsuite changes, one could just do make check CC='gcc -Wl,--no-as-needed' CXX='g++ -Wl,--no-as-needed' but as I said, it should now work as is. Jakub