f78ea9fcf0
Rename the external toolchain directory. When new backends are here, it will be easier to sort them out if they are all prefixed the same way. Signed-off-by: Yann E. MORIN <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
23 lines
411 B
Plaintext
23 lines
411 B
Plaintext
#
|
|
|
|
if BR2_TOOLCHAIN_EXTERNAL
|
|
choice
|
|
prompt "External toolchain C library"
|
|
default BR2_TOOLCHAIN_EXTERNAL_UCLIBC
|
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_UCLIBC
|
|
bool "uClibc"
|
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_GLIBC
|
|
bool "glibc"
|
|
|
|
endchoice
|
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_STRIP
|
|
bool
|
|
default y
|
|
prompt "Strip shared libraries"
|
|
help
|
|
Strip shared libraries copied from the external toolchain.
|
|
endif
|