diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-05 18:19:25 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-03-05 18:19:25 +0100 |
commit | 9bebf58143b5a5f2d3df7f4931d352427277d008 (patch) | |
tree | ed7ea6b2f57ef715bdc2d4d9a95536c2a8345ecd | |
parent | 24cb85167d4bc6355c3e60f9f81701f0e3ee02c0 (diff) | |
download | crosstool-ng-9bebf58143b5a5f2d3df7f4931d352427277d008.tar.gz crosstool-ng-9bebf58143b5a5f2d3df7f4931d352427277d008.tar.bz2 crosstool-ng-9bebf58143b5a5f2d3df7f4931d352427277d008.zip |
config: hide entries when in backend mode
This implies hidding entries for:
- binutils libraries
- dmalloc
- duma
- native gdb
- ltrace
- strace
- sstrip
-rw-r--r-- | config/binutils/binutils.in | 1 | ||||
-rw-r--r-- | config/debug/dmalloc.in | 1 | ||||
-rw-r--r-- | config/debug/duma.in | 1 | ||||
-rw-r--r-- | config/debug/gdb.in | 1 | ||||
-rw-r--r-- | config/debug/ltrace.in | 1 | ||||
-rw-r--r-- | config/debug/strace.in | 1 | ||||
-rw-r--r-- | config/tools/sstrip.in | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/config/binutils/binutils.in b/config/binutils/binutils.in index 22248d7d..bec87253 100644 --- a/config/binutils/binutils.in +++ b/config/binutils/binutils.in @@ -58,6 +58,7 @@ config BINUTILS_FOR_TARGET bool prompt "binutils libraries for the target" depends on ! BARE_METAL + depends on ! BACKEND default n help Some utilities may need binutils libraries to be available on diff --git a/config/debug/dmalloc.in b/config/debug/dmalloc.in index fa6bdbda..c8dc3779 100644 --- a/config/debug/dmalloc.in +++ b/config/debug/dmalloc.in @@ -1,4 +1,5 @@ # dmalloc debug facility +# depends on ! BACKEND config DEBUG_dmalloc bool diff --git a/config/debug/duma.in b/config/debug/duma.in index 753a879d..c9c240eb 100644 --- a/config/debug/duma.in +++ b/config/debug/duma.in @@ -1,4 +1,5 @@ # D.U.M.A. - Detect Unintended Memory Access - Memory checker +# depends on ! BACKEND config DEBUG_duma help diff --git a/config/debug/gdb.in b/config/debug/gdb.in index 0ee07cc5..a5c69c51 100644 --- a/config/debug/gdb.in +++ b/config/debug/gdb.in @@ -41,6 +41,7 @@ config GDB_NATIVE prompt "Native gdb" default n depends on ! BARE_METAL + depends on ! BACKEND help Build and install a native gdb for the target, to run on the target. diff --git a/config/debug/ltrace.in b/config/debug/ltrace.in index bddc568e..ec0c8e83 100644 --- a/config/debug/ltrace.in +++ b/config/debug/ltrace.in @@ -1,4 +1,5 @@ # ltrace +# depends on ! BACKEND config DEBUG_ltrace select LIBELF_TARGET diff --git a/config/debug/strace.in b/config/debug/strace.in index 65edc4d3..5b9f29c4 100644 --- a/config/debug/strace.in +++ b/config/debug/strace.in @@ -1,4 +1,5 @@ # strace +# depends on ! BACKEND config DEBUG_strace diff --git a/config/tools/sstrip.in b/config/tools/sstrip.in index 975e74fc..79687998 100644 --- a/config/tools/sstrip.in +++ b/config/tools/sstrip.in @@ -1,4 +1,5 @@ # Configuration file for sstrip tool facility +# depends on ! BACKEND config TOOL_sstrip help |