3c2245cb65
Fix the following build failure raised since commit
4e267a7d3d
:
-- Found Boost: /home/buildroot/autobuild/instance-3/output-1/host/sh4-buildroot-linux-uclibc/sysroot/usr/include (found version "1.77.0") found components: thread chrono atomic missing components: date_time
Fixes:
- http://autobuild.buildroot.org/results/e7443e3bc955e7eddd7bed63e2728880dabb31a7
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_LOG4CXX
|
|
bool "log4cxx"
|
|
# apr really needs shared library support
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # apr
|
|
depends on BR2_USE_WCHAR || BR2_TOOLCHAIN_GCC_AT_LEAST_7 # boost
|
|
depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS || BR2_TOOLCHAIN_GCC_AT_LEAST_7 # boost-thread
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 || BR2_TOOLCHAIN_GCC_AT_LEAST_7 # boost-thread
|
|
select BR2_PACKAGE_APR
|
|
select BR2_PACKAGE_APR_UTIL
|
|
select BR2_PACKAGE_BOOST if !BR2_TOOLCHAIN_GCC_AT_LEAST_7
|
|
select BR2_PACKAGE_BOOST_ATOMIC if !BR2_TOOLCHAIN_GCC_AT_LEAST_7
|
|
select BR2_PACKAGE_BOOST_CHRONO if !BR2_TOOLCHAIN_GCC_AT_LEAST_7
|
|
select BR2_PACKAGE_BOOST_DATE_TIME if !BR2_TOOLCHAIN_GCC_AT_LEAST_7
|
|
select BR2_PACKAGE_BOOST_THREAD if !BR2_TOOLCHAIN_GCC_AT_LEAST_7
|
|
help
|
|
Apache log4cxx is a logging framework for C++ patterned
|
|
after Apache log4j.
|
|
|
|
https://logging.apache.org/log4cxx/
|
|
|
|
comment "log4cxx needs a toolchain w/ C++, threads, dynamic library"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS
|
|
depends on BR2_USE_MMU
|
|
|
|
comment "log4cxx needs a toolchain w/ wchar or gcc >= 7"
|
|
depends on !(BR2_USE_WCHAR || BR2_TOOLCHAIN_GCC_AT_LEAST_7)
|
|
depends on BR2_USE_MMU
|
|
|
|
comment "log4cxx needs a toolchain not affected by GCC bug 64735"
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_7
|
|
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|