From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 9042A201 for ; Tue, 1 Mar 2016 14:42:22 +0100 (CET) Received: by mail-wm0-f48.google.com with SMTP id l68so33923199wml.1 for ; Tue, 01 Mar 2016 05:42:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=ESUY/WS0mGCwUbY/oWVFQO3LEfbL73L2XDti4VvGm3g=; b=ODU0+MW5dt2lSgucxPDl/DAQZsPtzBf66E5g+q7aIprxDdGUkoiaO5bbyqL8qSXez7 fgh+UwCQ1VROFpeyeJmsUnkvP3urb2gGZHMd7yaTUcfJR4KhkxfawC06Ne6nZ+fZpTUw +1qQoEtroS/71joyX7/8+BBOY5Z7yfBEwzvU/Dj7fSgxyhtZxiHSljJLP65GuFdEozCK oRJA7PYmOqGx6Slyc/4RsR3bRD/cvznSWii0FkUVzYq6GjuWMOzN+qOcUp5C4rGyPQUu 5CoGsAK5UOY1pSczCipv8azW4cca9kSR+YFAPV4IPnJJZrL0s4+Y7XQFlXeYpMP5DDs6 lmyw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=ESUY/WS0mGCwUbY/oWVFQO3LEfbL73L2XDti4VvGm3g=; b=AVVC2jEDqCZMSBpsyhLDv3ok5s0iPzEk60Bne781wl+BJU8XG1px9nv10MdIqUnfAG VP1sYTn/vGzb0KG1IBtUXBIrTLk+dswRK4Q4Uk886iKJzZJSHowxzZJFSJNe+oOCKhA4 sOXjZyskwqMCwXDFasnzi83KdqVpy/ZpGfAlZxJORZZmHST9BBEiNIt9hUVhpqbaJ7/x DzaH+AjEnAUIWLDwHuyJbwvA0R9vQSI/IflAMwT9TGZkK8/CAOHG8FiH2pxaO9rpkvH7 PN5a1I0HvI8xQCK08UT8wt+hW+NRdck169f2zFadJMaU0fznuq7Ad0lzM7lTFAWHK89E e61A== X-Gm-Message-State: AD7BkJKSsZjBWDErzUpW+RqMq4CqDHjCxNFAzLEkPrxIw3NG0zSvKE7uchJymIlg1UKUkmLC X-Received: by 10.28.135.4 with SMTP id j4mr4021990wmd.80.1456839742286; Tue, 01 Mar 2016 05:42:22 -0800 (PST) Received: from xps13.localnet (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id b5sm21425989wmh.15.2016.03.01.05.42.21 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 01 Mar 2016 05:42:21 -0800 (PST) From: Thomas Monjalon To: pmatilai@redhat.com, Neil Horman , Sergio Gonzalez Monroy Date: Tue, 01 Mar 2016 14:40:46 +0100 Message-ID: <3419544.3hNz4j3KVF@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1456266011-23701-1-git-send-email-thomas.monjalon@6wind.com> References: <079fa1cfc3550c8147ea8b137fa1bc0f34d051dc.1448375477.git.pmatilai@redhat.com> <1456266011-23701-1-git-send-email-thomas.monjalon@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2] mk: replace the combined library with a linker script 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: , X-List-Received-Date: Tue, 01 Mar 2016 13:42:22 -0000 ping I would like to be sure nothing is forgotten in this new revision. 2016-02-23 23:20, Thomas Monjalon: > From: Panu Matilainen > > The physically linked-together combined library has been an increasing > source of problems, as was predicted when library and symbol versioning > was introduced. Replace the complex and fragile construction with a > simple linker script which achieves the same without all the problems, > remove the related kludges from eg mlx drivers. > > Since creating the linker script is practically zero cost, remove the > config option and just create it always. > > Based on a patch by Sergio Gonzales Monroy, linker script approach > initially suggested by Neil Horman. > > Suggested-by: Sergio Gonzalez Monroy > Suggested-by: Neil Horman > Signed-off-by: Panu Matilainen > Signed-off-by: Thomas Monjalon > --- > v2: > - move RTE_LIBNAME assignment rte.vars.mk to rte.combinedlib.mk > - update crypto > - update doc > - update rte.app.mk > - update test-build.sh