summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-10-02 11:09:02 +1100
committerChris Johns <chrisj@rtems.org>2017-10-02 11:09:02 +1100
commitc7dfbaf83c5b119106f9ee38c902988cc463b0aa (patch)
treeb868f09971f896b351cf141179589a3a7d23af79 /wscript
parent220ceb27e6bfd2cf6372668167e51a971956ab4f (diff)
Update rtems_waf to use the rootfs support. Fix trace linker INI files.
Use the rtems_waf rootfs support to create a root file system. Remove the double cflags on some projects that broke linking. Remove the dump-on-error, there is no option in rtems-tld. Closes 3158. Closes 3159.
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index 8f976db..9345d97 100644
--- a/wscript
+++ b/wscript
@@ -17,6 +17,7 @@
# to build for more than BSP at a time.
#
+rtems_version = "4.12"
try:
import rtems_waf.rtems as rtems
except:
@@ -25,7 +26,7 @@ except:
sys.exit(1)
def init(ctx):
- rtems.init(ctx)
+ rtems.init(ctx, version = rtems_version, long_commands = True)
def options(opt):
rtems.options(opt)