From patchwork Thu Sep 17 00:38:12 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Barnett X-Patchwork-Id: 518668 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 8631B1401EF for ; Thu, 17 Sep 2015 10:38:20 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=ymhEBY80; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A6F198DD30; Thu, 17 Sep 2015 00:38:19 +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 qHWmhvZVC9pV; Thu, 17 Sep 2015 00:38:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 8F77D8DD36; Thu, 17 Sep 2015 00:38:18 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id F2BA51C0FCC for ; Thu, 17 Sep 2015 00:38:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EED1B946ED for ; Thu, 17 Sep 2015 00:38:16 +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 CDv+PvPfA-LI for ; Thu, 17 Sep 2015 00:38:16 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-io0-f181.google.com (mail-io0-f181.google.com [209.85.223.181]) by hemlock.osuosl.org (Postfix) with ESMTPS id 2D50C9468F for ; Thu, 17 Sep 2015 00:38:16 +0000 (UTC) Received: by iofb144 with SMTP id b144so5654802iof.1 for ; Wed, 16 Sep 2015 17:38:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=cCMOxIKUhTsKch1qMCcfVjBeiREbdsX+t1TW2u+u+EU=; b=ymhEBY80c44b5IuCgh8OMoMJRn5XaqReEvKDS6HUB+UCpJoKwdKkjtsJiJ9cxsi6cJ zZYv0YHyJjoYG98Op4eSmnazfDlvcF2czi7Y06yWE2OpcqzWfrJVoxCNOra02pATjji+ JmwXGOplGtCJjZ8M9eVqY8ieXMONzqx5OQ9rh1nY78WbaD5fSch2rfRc/l0lD7PRyeOl R3O/IBU8YLzXrzxZLd91HWg2d1KCCwZRWyBYScvJGF/fGX/bOXLP/k0CPnj9B1yYAp8m 7AxMqVFVSzIKIpN2JaBHC0O2y2kPXhDWl9RhHbe0yRfuKqk9mwVxtKL6Skd2VATBHUar GhTw== X-Received: by 10.107.15.170 with SMTP id 42mr1497461iop.137.1442450295468; Wed, 16 Sep 2015 17:38:15 -0700 (PDT) Received: from ryan-ubuntu.barnett.net (50-83-61-125.client.mchsi.com. [50.83.61.125]) by smtp.gmail.com with ESMTPSA id s36sm220505ioi.21.2015.09.16.17.38.14 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 16 Sep 2015 17:38:14 -0700 (PDT) From: Ryan Barnett To: buildroot@buildroot.org Date: Wed, 16 Sep 2015 19:38:12 -0500 Message-Id: <1442450292-13794-1-git-send-email-ryanbarnett3@gmail.com> X-Mailer: git-send-email 1.9.1 Subject: [Buildroot] [PATCH] make: requires dynamic libraries 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" While attempting to build make in a static library only configuration the following error will be shown: gc_pthread_redirects.h:37:22: fatal error: dlfcn.h: No such file or directory # include Fix this by depending make on !BR2_STATIC_LIBS. Fixes: http://autobuild.buildroot.net/results/814/8143ae0afac139845e5016058d85c800dc8527ad Signed-off-by: Ryan Barnett --- package/make/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/make/Config.in b/package/make/Config.in index f576b7b..11adbab 100644 --- a/package/make/Config.in +++ b/package/make/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_MAKE bool "make" depends on BR2_USE_MMU # fork() + depends on !BR2_STATIC_LIBS # dlopen() select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help A tool which controls the generation of executables and other @@ -11,3 +12,6 @@ config BR2_PACKAGE_MAKE useful to run the uClibc test suite on the target. http://www.gnu.org/software/make/ + +comment "make needs a toolchain w/ dynamic libraries" + depends on BR2_STATIC_LIBS