diff options
author | Chris Packham <judge.packham@gmail.com> | 2025-01-03 16:16:35 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2025-01-05 12:01:29 +1300 |
commit | 9e027d8f4cd110417a8d38a611034c4803a614c8 (patch) | |
tree | 434124873d2dea704e43c6c48de469ec5a4f85b2 | |
parent | 0145966e8e4f73843a72733e59263ce3f8c69f2e (diff) | |
download | crosstool-ng-9e027d8f4cd110417a8d38a611034c4803a614c8.tar.gz crosstool-ng-9e027d8f4cd110417a8d38a611034c4803a614c8.tar.bz2 crosstool-ng-9e027d8f4cd110417a8d38a611034c4803a614c8.zip |
ltrace: Add !BARE_METAL dependency
Ltrace requires an OS. Add a depend to prevent ltrace from being
selected when building for bare metal.
Fixes #1555, #2240
Signed-off-by: Chris Packham <judge.packham@gmail.com>
-rw-r--r-- | config/debug/ltrace.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/debug/ltrace.in b/config/debug/ltrace.in index 61f5531d..cdea7197 100644 --- a/config/debug/ltrace.in +++ b/config/debug/ltrace.in @@ -1,5 +1,6 @@ # ltrace +## depends on ! BARE_METAL ## select LIBELF_TARGET ## ## help ltrace is a program that simply runs the specified command until it exits. |