mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
It's working with recent versions of musl, so there's no reason to keep it disabled. (From OE-Core rev: 6bf1541dc0367930b5ebe58293b4857c41bc2f1b) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.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 \
|
|
"
|