aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorarmvixl <vixl@arm.com>2015-10-23 13:38:33 +0100
committerarmvixl <vixl@arm.com>2015-10-23 13:38:33 +0100
commit684cd2a7f5845539b58d0da7e012e39df49ceff0 (patch)
tree9cc167c2cf3a42d44477bdf0f6d8f67bc479c2f2 /SConstruct
parentdb6443499376478f5281607a3923e6ffc4c8d8ec (diff)
downloadvixl-684cd2a7f5845539b58d0da7e012e39df49ceff0.tar.gz
VIXL Release 1.11
Refer to the README.md and LICENCE files for details.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 3 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 3293263d..ecbd29a3 100644
--- a/SConstruct
+++ b/SConstruct
@@ -52,7 +52,7 @@ class TopLevelTargets:
self.targets.append(target)
self.help_messages.append(help_message)
def Help(self):
- res = ""
+ res = ""
for i in range(len(self.targets)):
res += '\t{0:<{1}}{2:<{3}}\n'.format(
'scons ' + self.targets[i],
@@ -78,6 +78,7 @@ options = {
'-Wextra',
'-Wredundant-decls',
'-pedantic',
+ '-Wmissing-noreturn',
'-Wwrite-strings'],
'CPPPATH' : [config.dir_src_vixl]
},
@@ -91,7 +92,7 @@ options = {
'CCFLAGS' : ['-O3']
},
'simulator:on' : {
- 'CCFLAGS' : ['-DUSE_SIMULATOR'],
+ 'CCFLAGS' : ['-DVIXL_INCLUDE_SIMULATOR'],
},
'symbols:on' : {
'CCFLAGS' : ['-g'],