mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Currently gettext and eglibc compete to provide for libintl on nativesdk. So make choices to select eglibc nativesdk to provide for both eglibc as well as uclibc based systems. (From OE-Core rev: 1e7797a0a8e8fd565d218bd7b9993e16f158764f) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
623 B
PHP
29 lines
623 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"
|
|
PREFERRED_PROVIDER_virtual/nativesdk-libintl ?= "nativesdk-eglibc"
|
|
PREFERRED_PROVIDER_virtual/nativesdk-libiconv ?= "nativesdk-eglibc"
|
|
|
|
USE_NLS ?= "no"
|
|
|
|
CXXFLAGS += "-fvisibility-inlines-hidden"
|
|
|
|
IMAGE_LINGUAS = ""
|
|
|
|
LIBC_DEPENDENCIES = "\
|
|
uclibc \
|
|
uclibc-dbg \
|
|
uclibc-dev \
|
|
uclibc-thread-db \
|
|
"
|