mirror of
https://git.yoctoproject.org/poky
synced 2026-07-27 19:37:10 +00:00
624263c82d
The current solutions to share uclibc, eglibc and glibc builds in the same tree all have various issues associated with them. Appending the suffix to TMPDIR seems like the best solution since sstate (which defaults to outside TMPDIR) will allow reuse of any components. This avoids messy changes to the core with other approaches to this problem inevitably entail, usually in code where this abstraction isn;'t logically best placed. (From OE-Core rev: f2528db8f466a21ca207b310fffa7b05884b4579) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
553 B
PHP
29 lines
553 B
PHP
#
|
|
# uclibc specific configuration
|
|
#
|
|
|
|
TARGET_OS = "linux-uclibc"
|
|
TARGET_OS_arm = "linux-uclibceabi"
|
|
TARGET_OS_armeb = "linux-uclibceabi"
|
|
|
|
# Add uclibc overrides to the overrides.
|
|
OVERRIDES =. "libc-uclibc:"
|
|
|
|
PREFERRED_PROVIDER_virtual/libc = "uclibc"
|
|
PREFERRED_PROVIDER_virtual/libiconv ?= "libiconv"
|
|
PREFERRED_PROVIDER_virtual/libintl ?= "gettext"
|
|
|
|
USE_NLS ?= "no"
|
|
USE_NLS_glib-2.0 = "yes"
|
|
|
|
CXXFLAGS += "-fvisibility-inlines-hidden"
|
|
|
|
IMAGE_LINGUAS = ""
|
|
|
|
LIBC_DEPENDENCIES = "\
|
|
uclibc \
|
|
uclibc-dbg \
|
|
uclibc-dev \
|
|
uclibc-thread-db \
|
|
"
|