mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
Based on suggestions from RP libc-uclibc and libc-glibc overrides are for denoting system C library in use on the target and not for the host therefore we make sure that the override only takes effect for target recipes only. (From OE-Core rev: 6e2b53f47da0e97271fb51b281d24da1e1d549cc) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
488 B
PHP
27 lines
488 B
PHP
#
|
|
# uclibc specific configuration
|
|
#
|
|
|
|
LIBCEXTENSION = "-uclibc"
|
|
|
|
# Add uclibc overrides to the overrides.
|
|
LIBCOVERRIDE = ":libc-uclibc"
|
|
OVERRIDES .= "${LIBCOVERRIDE}"
|
|
|
|
PREFERRED_PROVIDER_virtual/libc = "uclibc"
|
|
PREFERRED_PROVIDER_virtual/libiconv ?= "libiconv"
|
|
PREFERRED_PROVIDER_virtual/libintl ?= "gettext"
|
|
|
|
USE_NLS ?= "no"
|
|
|
|
CXXFLAGS += "-fvisibility-inlines-hidden"
|
|
|
|
IMAGE_LINGUAS = ""
|
|
|
|
LIBC_DEPENDENCIES = "\
|
|
uclibc \
|
|
uclibc-dbg \
|
|
uclibc-dev \
|
|
uclibc-thread-db \
|
|
"
|