| Summary: | With buildroot 2016.02 trying to build for corei7-avx fails while trying to build host-binutils. | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | buschman |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | buildroot |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
| Attachments: | Output of the call to make | ||
|
Description
buschman
2016-04-21 08:58:21 UTC
Hum, indeed. Thanks for the bug report! Can you try the below patch:
diff --git a/arch/Config.in.x86 b/arch/Config.in.x86
index 4039db8..efa9567 100644
--- a/arch/Config.in.x86
+++ b/arch/Config.in.x86
@@ -226,6 +226,8 @@ config BR2_ARCH
default "i686" if BR2_x86_nocona && BR2_i386
default "i686" if BR2_x86_core2 && BR2_i386
default "i686" if BR2_x86_corei7 && BR2_i386
+ default "i686" if BR2_x86_corei7_avx && BR2_i386
+ default "i686" if BR2_x86_corei7_avx2 && BR2_i386
default "i686" if BR2_x86_atom && BR2_i386
default "i686" if BR2_x86_opteron && BR2_i386
default "i686" if BR2_x86_opteron_sse3 && BR2_i386
And then do your configuration from scratch again, and attempt to do the build.
With the change proposed by Thomas Petazzoni the complete build runs through. Thank you Andreas I've submitted a patch at http://patchwork.ozlabs.org/patch/613293/. |