All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/boinc: fix build with autoconf >= 2.70
@ 2021-10-07 16:41 Fabrice Fontaine
  2021-11-04 21:11 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2021-10-07 16:41 UTC (permalink / raw)
  To: buildroot; +Cc: Bernd Kuhls, Fabrice Fontaine

Fix the following build failure raised since bump of autoconf to version
2.71 in commit ecd54b65c1f998a7ccd91f7c523e4ff38c4781da and
http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commit;h=ec90049dfcf4538750e61d675d885157fa5ca7f8:

checking for /home/buildroot/autobuild/instance-0/output-1/host/bin/mips-linux-gnu-gcc options needed to detect all undeclared functions... cannot detect
configure: error: in `/home/buildroot/autobuild/instance-0/output-1/build/boinc-7.16.18':
configure: error: cannot make /home/buildroot/autobuild/instance-0/output-1/host/bin/mips-linux-gnu-gcc report undeclared builtins

This error raised because AC_CHECK_DECLS returns an error due to -mavx
flag:

mips-linux-gnu-gcc: error: unrecognized command line option '-mavx'

To fix this build failure, hard code ac_cv_c_undeclared_builtin_options
to 'none needed' as removing '-mavx' from CPPFLAGS will hinder the
detection of xgetbv, xgetbv, __xgetbv, cpuid, _cpuid and __cpuid

Fixes:
 - http://autobuild.buildroot.org/results/4b468a5d3bfbff9638316ca930ef791867774aef

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/boinc/boinc.mk | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/boinc/boinc.mk b/package/boinc/boinc.mk
index 079b065efd..317cad55b4 100644
--- a/package/boinc/boinc.mk
+++ b/package/boinc/boinc.mk
@@ -14,7 +14,9 @@ BOINC_CPE_ID_VENDOR = rom_walton
 BOINC_SELINUX_MODULES = boinc
 BOINC_DEPENDENCIES = host-pkgconf libcurl openssl
 BOINC_AUTORECONF = YES
-BOINC_CONF_ENV = ac_cv_path__libcurl_config=$(STAGING_DIR)/usr/bin/curl-config
+BOINC_CONF_ENV = \
+	ac_cv_c_undeclared_builtin_options='none needed' \
+	ac_cv_path__libcurl_config=$(STAGING_DIR)/usr/bin/curl-config
 BOINC_CONF_OPTS = \
 	--disable-apps \
 	--disable-boinczip \
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/boinc: fix build with autoconf >= 2.70
  2021-10-07 16:41 [Buildroot] [PATCH 1/1] package/boinc: fix build with autoconf >= 2.70 Fabrice Fontaine
@ 2021-11-04 21:11 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2021-11-04 21:11 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Bernd Kuhls, buildroot

Hello Fabrice,

On Thu,  7 Oct 2021 18:41:12 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fix the following build failure raised since bump of autoconf to version
> 2.71 in commit ecd54b65c1f998a7ccd91f7c523e4ff38c4781da and
> http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commit;h=ec90049dfcf4538750e61d675d885157fa5ca7f8:
> 
> checking for /home/buildroot/autobuild/instance-0/output-1/host/bin/mips-linux-gnu-gcc options needed to detect all undeclared functions... cannot detect
> configure: error: in `/home/buildroot/autobuild/instance-0/output-1/build/boinc-7.16.18':
> configure: error: cannot make /home/buildroot/autobuild/instance-0/output-1/host/bin/mips-linux-gnu-gcc report undeclared builtins
> 
> This error raised because AC_CHECK_DECLS returns an error due to -mavx
> flag:
> 
> mips-linux-gnu-gcc: error: unrecognized command line option '-mavx'
> 
> To fix this build failure, hard code ac_cv_c_undeclared_builtin_options
> to 'none needed' as removing '-mavx' from CPPFLAGS will hinder the
> detection of xgetbv, xgetbv, __xgetbv, cpuid, _cpuid and __cpuid
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/4b468a5d3bfbff9638316ca930ef791867774aef
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Wow, this was messy, and took me a while to understand. I've even added
a comment in the .mk file itself to explain what's going on.

There is a bug open in upstream Boinc on Github to track this issue,
and they acknowledge that they shouldn't unconditionally pass -mavx,
which really is the root of the problem.

Anyway, in the mean time, I have applied your patch, with an additional
comment, as said above.

Thanks for the good investigation on this one!

Best regards,

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-11-04 21:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-07 16:41 [Buildroot] [PATCH 1/1] package/boinc: fix build with autoconf >= 2.70 Fabrice Fontaine
2021-11-04 21:11 ` 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.