mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 04:31:56 +02:00
Fixes a potential linker error and eventual linker crash when using gold linker arm-yoe-linux-gnueabi/9.1.0/ld: internal error in add_output_section_to_load, at ../../gold/output.cc:4149 collect2: error: ld returned 1 exit status Makefile:1979: recipe for target 'liblog4cplusU.la' failed make[2]: *** [liblog4cplusU.la] Error 1 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Adrian Bunk <bunk@stusta.de> Cc: Mingli Yu <mingli.yu@windriver.com>
23 lines
877 B
BlitzBasic
23 lines
877 B
BlitzBasic
SUMMARY = "log4cplus provides a simple C++ logging API for log management"
|
|
SECTION = "libs"
|
|
HOMEPAGE = "http://sourceforge.net/projects/log4cplus/"
|
|
BUGTRACKER = "http://sourceforge.net/p/log4cplus/bugs/"
|
|
|
|
LICENSE = "Apache-2.0 & BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=41e8e060c26822886b592ab4765c756b"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}-stable/${PV}/${BP}.tar.gz \
|
|
file://0001-Remove-log4cplus-version-entry-from-ELF-.comment-sec.patch \
|
|
"
|
|
SRC_URI[md5sum] = "2b5b7bc294698bf30a315a259ef9eec2"
|
|
SRC_URI[sha256sum] = "196eedbc7f2dd792dae721b1159c7ac132255bb368226353c24d4d5fa7c7797a"
|
|
|
|
UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/log4cplus/files/log4cplus-stable/"
|
|
UPSTREAM_CHECK_REGEX = "log4cplus-stable/(?P<pver>\d+(\.\d+)+)/"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
CXXFLAGS += "-fuse-ld=gold"
|