All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] glog: add dependency on dynamic library
@ 2015-06-25 13:43 Rahul Bedarkar
  2015-06-25 13:43 ` [Buildroot] [PATCH 2/2] glog: disable on blackfin external toolchains Rahul Bedarkar
  2015-06-28 13:34 ` [Buildroot] [PATCH 1/2] glog: add dependency on dynamic library Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Rahul Bedarkar @ 2015-06-25 13:43 UTC (permalink / raw)
  To: buildroot

when BR2_STATIC_LIBS=y

src/symbolize.cc:110:19: error: dlfcn.h: No such file or directory

glog requires dlfcn.h header. So add dependency on dynamic library

fixes:
http://autobuild.buildroot.net/results/75d/75d17ceb764c2c1136047c089a0c554770ca98a4/

Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
---
 package/glog/Config.in | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/glog/Config.in b/package/glog/Config.in
index aed0a3e..534997a 100644
--- a/package/glog/Config.in
+++ b/package/glog/Config.in
@@ -2,10 +2,12 @@ config BR2_PACKAGE_GLOG
 	bool "glog"
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on !BR2_STATIC_LIBS
 	help
 	  C++ implementation of the Google logging module
 
 	  https://github.com/google/glog
 
-comment "glog needs a toolchain w/ C++, threads"
-	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
+comment "glog needs a toolchain w/ C++, threads, dynamic library"
+	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
+		BR2_STATIC_LIBS
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-06-28 13:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-25 13:43 [Buildroot] [PATCH 1/2] glog: add dependency on dynamic library Rahul Bedarkar
2015-06-25 13:43 ` [Buildroot] [PATCH 2/2] glog: disable on blackfin external toolchains Rahul Bedarkar
2015-06-28 13:34   ` Thomas Petazzoni
2015-06-28 13:34 ` [Buildroot] [PATCH 1/2] glog: add dependency on dynamic library Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.