summaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-09-10 14:32:36 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-09-10 14:32:36 +0000
commit86dc5a474935ce5a6415ce4fe3f19f99cb226a35 (patch)
treeeedaacc9592b029bed282a3f2e3a4bda9794839f /toolchain
parent158bc02f791b4d227201ccf0d1f75f5cc61ce69a (diff)
[cosmetic] add comments & fix descriptions in toolchain config items
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17561 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/Config.in17
-rw-r--r--toolchain/binutils/Config.in2
-rw-r--r--toolchain/gcc/Config.in2
3 files changed, 17 insertions, 4 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in
index df4ad8435..cf08ae9ca 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
diff --git a/toolchain/binutils/Config.in b/toolchain/binutils/Config.in
index fd7ba4f5e..6b0791deb 100644
--- a/toolchain/binutils/Config.in
+++ b/toolchain/binutils/Config.in
@@ -17,7 +17,7 @@ endchoice
config EXTRA_BINUTILS_CONFIG_OPTIONS
string
- prompt "Additional binutils options" if TOOLCHAINOPTS
+ prompt "Additional binutils configure options" if TOOLCHAINOPTS
default ""
help
Any additional binutils options you may want to include....
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in
index ab4192402..de0bbafbc 100644
--- a/toolchain/gcc/Config.in
+++ b/toolchain/gcc/Config.in
@@ -50,7 +50,7 @@ config EABI_SUPPORT
config EXTRA_GCC_CONFIG_OPTIONS
string
- prompt "Additional gcc options" if TOOLCHAINOPTS
+ prompt "Additional gcc configure options" if TOOLCHAINOPTS
default ""
help
Any additional gcc options you may want to include....