mirror of
git://git.yoctoproject.org/poky
synced 2026-09-26 17:51:05 +00:00
It supports it, so lets enable it even though we can compile lot of stuff without NLS but its harder to get them all compiled without NLS Change-Id: I49a06c05b004654dabbef980c4e6ad991d581341 (From OE-Core rev: 6cf978dfcc90632680db15b58f8f9edbbd7c083b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
579 B
PHP
28 lines
579 B
PHP
#
|
|
# musl specific configuration
|
|
#
|
|
|
|
LIBCEXTENSION = "-musl"
|
|
|
|
# Add uclibc overrides to the overrides.
|
|
LIBCOVERRIDE = ":libc-musl"
|
|
OVERRIDES .= "${LIBCOVERRIDE}"
|
|
|
|
PREFERRED_PROVIDER_virtual/libc ?= "musl"
|
|
PREFERRED_PROVIDER_virtual/libiconv ?= "musl"
|
|
PREFERRED_PROVIDER_virtual/libintl ?= "musl"
|
|
PREFERRED_PROVIDER_virtual/nativesdk-libintl ?= "nativesdk-glibc"
|
|
PREFERRED_PROVIDER_virtual/nativesdk-libiconv ?= "nativesdk-glibc"
|
|
|
|
#USE_NLS ?= "no"
|
|
|
|
CXXFLAGS += "-fvisibility-inlines-hidden"
|
|
|
|
IMAGE_LINGUAS = ""
|
|
|
|
LIBC_DEPENDENCIES = "\
|
|
musl \
|
|
musl-dbg \
|
|
musl-dev \
|
|
"
|