From patchwork Mon Mar 30 18:10:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gwenhael Goavec-Merou X-Patchwork-Id: 456276 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 25C4A1400A0 for ; Tue, 31 Mar 2015 05:08:34 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 745BB95123; Mon, 30 Mar 2015 18:08:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nb38BXpkXIts; Mon, 30 Mar 2015 18:08:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id C7D0D95092; Mon, 30 Mar 2015 18:08:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C318F1CEA28 for ; Mon, 30 Mar 2015 18:08:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id BEE80915FF for ; Mon, 30 Mar 2015 18:08:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Xod38T2pbS42 for ; Mon, 30 Mar 2015 18:08:30 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp2-g21.free.fr (smtp2-g21.free.fr [212.27.42.2]) by whitealder.osuosl.org (Postfix) with ESMTPS id 12C298B416 for ; Mon, 30 Mar 2015 18:08:30 +0000 (UTC) Received: from x230.trabucayre.com (unknown [81.56.132.22]) by smtp2-g21.free.fr (Postfix) with ESMTP id 633834B021E; Mon, 30 Mar 2015 20:06:36 +0200 (CEST) From: Gwenhael Goavec-Merou To: buildroot@busybox.net Date: Mon, 30 Mar 2015 20:10:26 +0200 Message-Id: <1427739026-13418-1-git-send-email-gwenj@trabucayre.com> X-Mailer: git-send-email 2.0.5 Cc: Thomas Petazzoni , Gwenhael Goavec-Merou , "Yann E. MORIN" Subject: [Buildroot] [PATCH v2 1/1] gnuradio: depends on shared libs X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From: Gwenhael Goavec-Merou volk must be compiled with toolchain built with shared lib to avoid : attempted static link of dynamic object `../lib/libvolk.so.0.0.0' Signed-off-by: Gwenhael Goavec-Merou --- Changes v1 -> v2: * Fix comment depend (Baruch) --- package/gnuradio/Config.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/gnuradio/Config.in b/package/gnuradio/Config.in index 274afaa..fe89c01 100644 --- a/package/gnuradio/Config.in +++ b/package/gnuradio/Config.in @@ -1,14 +1,15 @@ -comment "gnuradio needs a toolchain w/ C++, IPV6, NPTL, largefile, wchar" +comment "gnuradio needs a toolchain w/ C++, IPV6, NPTL, largefile, wchar and shared libs" depends on BR2_USE_MMU depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_LARGEFILE || \ - !BR2_INET_IPV6 + !BR2_INET_IPV6 || BR2_STATIC_LIBS config BR2_PACKAGE_GNURADIO bool "gnuradio" depends on BR2_INET_IPV6 # boost depends on BR2_INSTALL_LIBSTDCPP depends on BR2_LARGEFILE # boost + depends on !BR2_STATIC_LIBS depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL depends on BR2_USE_MMU # use fork() depends on BR2_USE_WCHAR # boost