summaryrefslogtreecommitdiffstats
path: root/toolchain/toolchain-external/Config.in
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@anciens.enib.fr>2010-07-28 00:08:14 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-07-28 16:20:03 +0200
commitf78ea9fcf02f427695cdd3310bfd76e5c3919569 (patch)
tree71386ffccc988c3735f33004d9a4b810018dcf94 /toolchain/toolchain-external/Config.in
parented181aeedb4d478f789f81525bd8c93025ba7a29 (diff)
downloadbuildroot-novena-f78ea9fcf02f427695cdd3310bfd76e5c3919569.tar.gz
buildroot-novena-f78ea9fcf02f427695cdd3310bfd76e5c3919569.zip
toolchain: rename external toolchain dir
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>
Diffstat (limited to 'toolchain/toolchain-external/Config.in')
-rw-r--r--toolchain/toolchain-external/Config.in22
1 files changed, 22 insertions, 0 deletions
diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
new file mode 100644
index 000000000..efc8378c0
--- /dev/null
+++ b/toolchain/toolchain-external/Config.in
@@ -0,0 +1,22 @@
+#
+
+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