diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-09-10 14:32:36 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-09-10 14:32:36 +0000 |
commit | 47ac8caa622d58cf91938a7896b03298a7b05f1a (patch) | |
tree | e8a23aeb8a716a70d12b750cc1c44946d5f07e6d /toolchain/Config.in | |
parent | de9bb2b998efe9acdbab173fb391e23bc1688eaf (diff) | |
download | upstream-47ac8caa622d58cf91938a7896b03298a7b05f1a.tar.gz upstream-47ac8caa622d58cf91938a7896b03298a7b05f1a.tar.bz2 upstream-47ac8caa622d58cf91938a7896b03298a7b05f1a.zip |
add comments & fix descriptions in toolchain config items
SVN-Revision: 17561
Diffstat (limited to 'toolchain/Config.in')
-rw-r--r-- | toolchain/Config.in | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index df4ad84358..cf08ae9caa 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -42,14 +42,24 @@ menuconfig EXTRA_TARGET_ARCH both powerpc and powerpc64 binaries, you'll need to specify -m64 here. +comment "Binary tools" + depends TOOLCHAINOPTS + source "toolchain/binutils/Config.in" + +comment "Compiler" + depends TOOLCHAINOPTS + source "toolchain/gcc/Config.in" +comment "C Library" + depends TOOLCHAINOPTS + choice - prompt "LIBC implementation" if TOOLCHAINOPTS + prompt "C Library implementation" if TOOLCHAINOPTS default USE_UCLIBC help - Select the LIBC implementation. + Select the C library implementation. config USE_EGLIBC bool "Use eglibc" @@ -68,6 +78,9 @@ source "toolchain/eglibc/Config.in" source "toolchain/glibc/Config.in" source "toolchain/uClibc/Config.in" +comment "Debuggers" + depends TOOLCHAINOPTS + config GDB bool prompt "Build gdb" if TOOLCHAINOPTS |