summaryrefslogtreecommitdiff
path: root/linkers
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-02-08 17:12:04 +1100
committerChris Johns <chrisj@rtems.org>2015-02-08 17:12:04 +1100
commitb7d48ef5a4a09010305a5981f64005161a34409d (patch)
treed67a781bd460bfc367d1e038ed9f3a8d870884fd /linkers
parent73388116079288523c84f4c93fe19646c34644b9 (diff)
Install the rtems-test command.
This installs the Python RTEMS Toolkit. The copmiler has been switched from forcing gcc to allowing waf to detect the host's tool chain.
Diffstat (limited to 'linkers')
-rw-r--r--linkers/wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/linkers/wscript b/linkers/wscript
index d48ce47..b1a99c6 100644
--- a/linkers/wscript
+++ b/linkers/wscript
@@ -8,12 +8,12 @@ version_minor = 0
version_revision = 0
def options(opt):
- opt.load("g++")
- opt.load("gcc")
+ opt.load('compiler_c')
+ opt.load('compiler_cxx')
def configure(conf):
- conf.load("g++")
- conf.load("gcc")
+ conf.load('compiler_c')
+ conf.load('compiler_cxx')
conf.env.C_OPTS = conf.options.c_opts.split(',')
conf.env.RTEMS_VERSION = conf.options.rtems_version