diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-12 13:34:56 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-12 13:34:56 +0000 |
commit | 28f92e8b09e92f213698ae3ca6aed6356b0bae8a (patch) | |
tree | 861ee20856751afecd57655ff741b48f4ecd01aa /config/debug/strace.in | |
parent | 9e90a9a9e26121937f1ac38446242eaa456e6290 (diff) | |
download | crosstool-ng-28f92e8b09e92f213698ae3ca6aed6356b0bae8a.tar.gz crosstool-ng-28f92e8b09e92f213698ae3ca6aed6356b0bae8a.tar.bz2 crosstool-ng-28f92e8b09e92f213698ae3ca6aed6356b0bae8a.zip |
Add strace debugging aid.
Diffstat (limited to 'config/debug/strace.in')
-rw-r--r-- | config/debug/strace.in | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/config/debug/strace.in b/config/debug/strace.in new file mode 100644 index 00000000..2fb789da --- /dev/null +++ b/config/debug/strace.in @@ -0,0 +1,118 @@ +# strace + +menuconfig STRACE + bool + prompt "strace" + default n + +if STRACE + +choice + bool + prompt "strace version" + +config STRACE_V_4_5 + bool + prompt "4.5" + depends on OBSOLETE + +config STRACE_V_4_5_1 + bool + prompt "4.5.1" + depends on OBSOLETE + +config STRACE_V_4_5_2 + bool + prompt "4.5.2" + depends on OBSOLETE + +config STRACE_V_4_5_3 + bool + prompt "4.5.3" + depends on OBSOLETE + +config STRACE_V_4_5_4 + bool + prompt "4.5.4" + depends on OBSOLETE + +config STRACE_V_4_5_5 + bool + prompt "4.5.5" + depends on OBSOLETE + +config STRACE_V_4_5_6 + bool + prompt "4.5.6" + depends on OBSOLETE + +config STRACE_V_4_5_7 + bool + prompt "4.5.7" + depends on OBSOLETE + +config STRACE_V_4_5_8 + bool + prompt "4.5.8" + depends on OBSOLETE + +config STRACE_V_4_5_9 + bool + prompt "4.5.9" + depends on OBSOLETE + +config STRACE_V_4_5_10 + bool + prompt "4.5.10" + depends on OBSOLETE + +config STRACE_V_4_5_11 + bool + prompt "4.5.11" + depends on OBSOLETE + +config STRACE_V_4_5_12 + bool + prompt "4.5.12" + depends on OBSOLETE + +config STRACE_V_4_5_13 + bool + prompt "4.5.13" + depends on OBSOLETE + +config STRACE_V_4_5_14 + bool + prompt "4.5.14" + depends on OBSOLETE + +config STRACE_V_4_5_15 + bool + prompt "4.5.15" + +# CT_INSERT_VERSION_ABOVE +# Don't remove above line! +endchoice + +config STRACE_VERSION + string + default "4.5" if STRACE_V_4_5 + default "4.5.1" if STRACE_V_4_5_1 + default "4.5.2" if STRACE_V_4_5_2 + default "4.5.3" if STRACE_V_4_5_3 + default "4.5.4" if STRACE_V_4_5_4 + default "4.5.5" if STRACE_V_4_5_5 + default "4.5.6" if STRACE_V_4_5_6 + default "4.5.7" if STRACE_V_4_5_7 + default "4.5.8" if STRACE_V_4_5_8 + default "4.5.9" if STRACE_V_4_5_9 + default "4.5.10" if STRACE_V_4_5_10 + default "4.5.11" if STRACE_V_4_5_11 + default "4.5.12" if STRACE_V_4_5_12 + default "4.5.13" if STRACE_V_4_5_13 + default "4.5.14" if STRACE_V_4_5_14 + default "4.5.15" if STRACE_V_4_5_15 +# CT_INSERT_VERSION_STRING_ABOVE +# # Don't remove above line! + +endif |