From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Guillaume_GARDET_-_Olis=c3=a9o?= Date: Thu, 6 Aug 2015 15:53:44 +0200 Subject: [Buildroot] Analysis of build failures In-Reply-To: <20150729100334.00137b70@free-electrons.com> References: <20150729063017.EDA6D101EBC@stock.ovh.net> <20150729100334.00137b70@free-electrons.com> Message-ID: <55C366E8.3060207@oliseo.fr> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Le 29/07/2015 10:03, Thomas Petazzoni a ?crit : > Hello, > > Clayton, Guillaume, Samuel, Gwenhael, Gustavo, Brendan, Paul, Bernd, > Angelo, Maxime, Simon: see below, there are some questions for you. > Thanks! > > On Wed, 29 Jul 2015 08:30:17 +0200 (CEST), Thomas Petazzoni wrote: snip... >> arm | c-icap-0.3.5 | NOK | http://autobuild.buildroot.net/results/cb623460de30dd7c4ef3275fe13220c1ca0642a5/ > c_icap-service.o: In function `load_c_service': > service.c:(.text+0x710): undefined reference to `ci_module_load' > service.c:(.text+0x720): undefined reference to `ci_module_sym' > service.c:(.text+0x774): undefined reference to `ci_module_unload' > > Unknown, already happened yesterday. Guillaume, can you have a look? This is because HAVE_DLFCN_H is not set because dlfcn.h is not provided by the toolchain. But ./os/unix/dlib.c uses dlopen and dlclose functions. Apparently, this is missing on uClibc when it is configured as a static-only C library. What would be the best way to fix it? Maybe a "depends on !BR2_STATIC_LIBS" ? Guillaume