summaryrefslogtreecommitdiff
path: root/posix_api/psx_pthread_report/wscript
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-09-26 09:43:51 -0500
committerJoel Sherrill <joel@rtems.org>2018-09-26 18:03:33 -0500
commitf4ce641b374a20b650c31f60d03424d21d7fcbdf (patch)
tree9e297257ae3097dd06baa259fac09e0097a8fc65 /posix_api/psx_pthread_report/wscript
parent4b7512a8cf813671b4fde8548703f8afc70855fe (diff)
Add various programs to report default attributes for various POSIX objects
Closes #3531.
Diffstat (limited to 'posix_api/psx_pthread_report/wscript')
-rw-r--r--posix_api/psx_pthread_report/wscript15
1 files changed, 15 insertions, 0 deletions
diff --git a/posix_api/psx_pthread_report/wscript b/posix_api/psx_pthread_report/wscript
new file mode 100644
index 0000000..6ec6cfa
--- /dev/null
+++ b/posix_api/psx_pthread_report/wscript
@@ -0,0 +1,15 @@
+# Copyright 2013 Gedare Bloom (gedare@rtems.org)
+#
+# This file's license is 2-clause BSD as in this distribution's LICENSE.2 file.
+#
+
+import rtems_waf.rtems as rtems
+
+def build(bld):
+ rtems.build(bld)
+
+ bld(features = 'c cprogram',
+ target = 'psx_pthread_report.exe',
+ source = ['pthread_attr_report.c','rtems_config.c'],
+ lib = ['c'])
+