e9f2f48a7e
Fix the following build failure with oprofile raised since bump of binutils to version 2.40 in commit35656482d3
: configure: error: bfd library not found [...] configure:17928: checking for bfd_openr in -lbfd configure:17953: /home/buildroot/autobuild/run/instance-1/output-1/host/bin/arm-linux-gcc -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 conftest.c -lbfd -liberty -lpopt -ldl -lintl >&5 /home/buildroot/autobuild/run/instance-1/output-1/host/opt/ext-toolchain/bin/../lib/gcc/arm-buildroot-linux-uclibcgnueabi/12.3.0/../../../../arm-buildroot-linux-uclibcgnueabi/bin/ld: warning: libsframe.so.0, needed by /home/buildroot/autobuild/run/instance-1/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libbfd.so, not found (try using -rpath or -rpath-link) Indeed, in this case, libsframe is not installed even after applying commit1b4d921e1d
because BR2_BINUTILS_VERSION_2_40_X is not selected by anyone (binutils package is selected by oprofile and the toolchain is not generated by buildroot) To fix this issue, invert the logic: install libsframe by default (i.e. when binutils is selected or with a buildroot toolchain). libsframe will not be installed only if binutils < 2.40 is detected. Fixes: - http://autobuild.buildroot.org/results/af9a2d52823a332b48e6df14d2708b6a4b3833a4 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
comment "Binutils Options"
|
|
|
|
config BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI
|
|
bool
|
|
default y
|
|
depends on !BR2_microblaze
|
|
|
|
config BR2_PACKAGE_BINUTILS_HAS_NO_LIBSFRAME
|
|
bool
|
|
|
|
choice
|
|
prompt "Binutils Version"
|
|
default BR2_BINUTILS_VERSION_2_40_X if !BR2_arc
|
|
default BR2_BINUTILS_VERSION_ARC if BR2_arc
|
|
help
|
|
Select the version of binutils you wish to use.
|
|
|
|
config BR2_BINUTILS_VERSION_2_39_X
|
|
bool "binutils 2.39"
|
|
select BR2_PACKAGE_BINUTILS_HAS_NO_LIBSFRAME
|
|
|
|
config BR2_BINUTILS_VERSION_2_40_X
|
|
bool "binutils 2.40"
|
|
|
|
config BR2_BINUTILS_VERSION_2_41_X
|
|
bool "binutils 2.41"
|
|
|
|
config BR2_BINUTILS_VERSION_ARC
|
|
bool "binutils arc (2.34.50)"
|
|
depends on BR2_arc
|
|
select BR2_PACKAGE_BINUTILS_HAS_NO_LIBSFRAME
|
|
|
|
endchoice
|
|
|
|
config BR2_BINUTILS_VERSION
|
|
string
|
|
default "arc-2020.09-release" if BR2_BINUTILS_VERSION_ARC
|
|
default "2.39" if BR2_BINUTILS_VERSION_2_39_X
|
|
default "2.40" if BR2_BINUTILS_VERSION_2_40_X
|
|
default "2.41" if BR2_BINUTILS_VERSION_2_41_X
|
|
|
|
config BR2_BINUTILS_GPROFNG
|
|
bool "gprofng support"
|
|
depends on !BR2_BINUTILS_VERSION_ARC
|
|
help
|
|
This option enables support for gprofng, a new profiler.
|
|
|
|
config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
|
|
string "Additional binutils options"
|
|
default ""
|
|
help
|
|
Any additional binutils options you may want to include.
|