From patchwork Mon Aug 25 12:59:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew McDonnell X-Patchwork-Id: 382709 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 10E3714008B for ; Mon, 25 Aug 2014 23:01:04 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D143BA06DC; Mon, 25 Aug 2014 13:01:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WSkqblXFf1zz; Mon, 25 Aug 2014 13:01:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 08EB5A0741; Mon, 25 Aug 2014 13:01:01 +0000 (UTC) X-Original-To: uclibc@lists.busybox.net Delivered-To: uclibc@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id A271E1CED8A for ; Mon, 25 Aug 2014 13:00:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9EE98A0741 for ; Mon, 25 Aug 2014 13:00:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2UTkDh3b-ikG for ; Mon, 25 Aug 2014 13:00:58 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from cartman.zuver.net.au (cartman.zuver.net.au [110.232.142.10]) by fraxinus.osuosl.org (Postfix) with ESMTPS id D47CEA0739 for ; Mon, 25 Aug 2014 13:00:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=andrewmcdonnell.net; s=default; h=Message-Id:Date:Subject:Cc:To:From; bh=FK+R4m8R2cUErT7xYKb9l9SZ1Jf+6cPs+QNu5ZnX0jw=; b=H/xl/L+jl2Z9HlyAb7iJGG1LuPNj6uppOzmtlnLOJ+gbVHsoB03J9ei3JB0d/W3YsoDpVDLBFp5maZbFzZdbuGBUTFwnkF4OYBO9XviOP5Rj6W0hl4Gof9pJkq0UwY0/BI76F90hrdvdo71tPNuMKBAXKg3sbu5ge93Pplck3zA=; Received: from 180-150-66-127.cust.aussiebb.net ([180.150.66.127]:39623 helo=atlantis4.eaglenest) by cartman.zuver.net.au with esmtpsa (UNKNOWN:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.82) (envelope-from ) id 1XLttA-000ahi-BL; Mon, 25 Aug 2014 23:00:51 +1000 From: Andrew McDonnell To: uclibc@uclibc.org Subject: [PATCH] Enable UCLIBC_EXTRA_LDFLAGS in Config.in. Date: Mon, 25 Aug 2014 22:29:57 +0930 Message-Id: <1408971597-9571-1-git-send-email-bugs@andrewmcdonnell.net> X-Mailer: git-send-email 1.9.1 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cartman.zuver.net.au X-AntiAbuse: Original Domain - uclibc.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - andrewmcdonnell.net X-Get-Message-Sender-Via: cartman.zuver.net.au: authenticated_id: bugs@andrewmcdonnell.net X-Source: X-Source-Args: X-Source-Dir: X-BeenThere: uclibc@uclibc.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion and development of uClibc \(the embedded C library\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: uclibc-bounces@uclibc.org Sender: uclibc-bounces@uclibc.org It seems that this is enabled and working in the Makefile infrastructure, but unlike UCLIBC_EXTRA_CFLAGS, was not enabled by Config.in. Signed-off-by: Andrew McDonnell --- extra/Configs/Config.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 7789002..fdf0168 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -2315,6 +2315,12 @@ config UCLIBC_EXTRA_CFLAGS help Add any additional CFLAGS to be used to build uClibc. +config UCLIBC_EXTRA_LDFLAGS + string "Extra LDFLAGS" + default "" + help + Add any additional LDFLAGS to be used to build uClibc. + config DODEBUG bool "Enable debugging symbols" select EXTRA_WARNINGS