From patchwork Fri May 1 14:29:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wiles, Keith" X-Patchwork-Id: 4598 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 85F63CD28; Fri, 1 May 2015 16:29:58 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 4C245CD24 for ; Fri, 1 May 2015 16:29:56 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 01 May 2015 07:29:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,350,1427785200"; d="scan'208";a="564839413" Received: from unknown (HELO rkwiles-desk.ger.corp.intel.com) ([10.255.41.14]) by orsmga003.jf.intel.com with ESMTP; 01 May 2015 07:29:53 -0700 From: Keith Wiles To: dev@dpdk.org Date: Fri, 1 May 2015 09:29:47 -0500 Message-Id: <1430490587-6806-1-git-send-email-keith.wiles@intel.com> X-Mailer: git-send-email 2.3.0 Subject: [dpdk-dev] [PATCH] Remove NO_AUTOLIBS option X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" NO_AUTOLIBS is not required as it was not used or defined in the config files. Signed-off-by: Keith Wiles --- mk/rte.app.mk | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mk/rte.app.mk b/mk/rte.app.mk index b8030d2..b63e346 100644 --- a/mk/rte.app.mk +++ b/mk/rte.app.mk @@ -54,11 +54,8 @@ endif _LDLIBS-y += -L$(RTE_SDK_BIN)/lib # -# Include libraries depending on config if NO_AUTOLIBS is not set # Order is important: from higher level to lower level # -ifeq ($(NO_AUTOLIBS),) - _LDLIBS-y += --whole-archive _LDLIBS-$(CONFIG_RTE_BUILD_COMBINE_LIBS) += -l$(RTE_LIBNAME) @@ -143,8 +140,6 @@ _LDLIBS-y += $(EXECENV_LDLIBS) _LDLIBS-y += --end-group _LDLIBS-y += --no-whole-archive -endif # ifeq ($(NO_AUTOLIBS),) - LDLIBS += $(_LDLIBS-y) $(EXTRA_LDLIBS) .PHONY: all