summaryrefslogtreecommitdiffstats
path: root/hello/both_hello/wscript
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2022-02-22 14:08:25 -0600
committerJoel Sherrill <joel@rtems.org>2022-02-23 16:17:54 -0600
commit3c7094087ed544beff2535a5190deb5bcdc9326e (patch)
tree5f5b7f465e5c36f4927b717c113d7d129943e891 /hello/both_hello/wscript
parentticker_stackhk: Add variant which prints stack and cpu usage reports (diff)
downloadrtems-examples-3c7094087ed544beff2535a5190deb5bcdc9326e.tar.bz2
tracing: Add a special ticker variant to show tracing.
This was complicating both_hello which was designed for another purpose entirely.
Diffstat (limited to '')
-rw-r--r--hello/both_hello/wscript22
1 files changed, 11 insertions, 11 deletions
diff --git a/hello/both_hello/wscript b/hello/both_hello/wscript
index 2cb1d76..5e784b4 100644
--- a/hello/both_hello/wscript
+++ b/hello/both_hello/wscript
@@ -10,17 +10,17 @@ import rtems_waf.rtems as rtems
def build(bld):
rtems.build(bld)
- if rtems.check_env(bld, 'RTEMS_TLD'):
- bld(features = 'c rtrace',
- target = 'both_hello.texe',
- source = ['test.c'],
- rtrace_cfg = '../../hello/both_hello/hello.ini',
- rtrace_wrapper = 'hello-test')
- bld(features = 'c rtrace',
- target = 'hello-deep.texe',
- source = ['test.c'],
- rtrace_cfg = '../../hello/both_hello/hello-deep.ini',
- rtrace_wrapper = 'hello-deep')
+# if rtems.check_env(bld, 'RTEMS_TLD'):
+# bld(features = 'c rtrace',
+# target = 'both_hello.texe',
+# source = ['test.c'],
+# rtrace_cfg = '../../hello/both_hello/hello.ini',
+# rtrace_wrapper = 'hello-test')
+# bld(features = 'c rtrace',
+# target = 'hello-deep.texe',
+# source = ['test.c'],
+# rtrace_cfg = '../../hello/both_hello/hello-deep.ini',
+# rtrace_wrapper = 'hello-deep')
bld(features = 'c cprogram',
target = 'both_hello.exe',