4efeea55ea
libyang needs __sync_*_4 intrinsics since bump to version 2.0.112 in commit2a3edc5e00
and080064b790
: /home/buildroot/autobuild/instance-3/output-1/host/opt/ext-toolchain/bin/../lib/gcc/sparc-buildroot-linux-uclibc/9.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: ../../libyang.so.2.13.7: undefined reference to `__sync_fetch_and_sub_4' Fixes: - http://autobuild.buildroot.org/results/c1f090bde4891ac1cc84e59c51ff9561869d42b9 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
18 lines
549 B
Plaintext
18 lines
549 B
Plaintext
config BR2_PACKAGE_LIBNETCONF2
|
|
bool "libnetconf2"
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libyang
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_USE_MMU
|
|
select BR2_PACKAGE_LIBYANG
|
|
help
|
|
libnetconf2 is a NETCONF library in C intended for building
|
|
NETCONF clients and servers.
|
|
|
|
https://github.com/CESNET/libnetconf2
|
|
|
|
comment "libnetconf2 needs a toolchain w/ threads, dynamic libraray"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|