summaryrefslogtreecommitdiff
path: root/test-chill/testchill/chill.py
diff options
context:
space:
mode:
authorDerick Huth <derickhuth@gmail.com>2014-11-21 13:40:28 -0700
committerDerick Huth <derickhuth@gmail.com>2014-11-21 13:40:28 -0700
commit0bd379bd2d620e90f6ce35f874a5a7f7f3ec82c7 (patch)
treebedc5be7d1bdb8d32c1868caa496a8a1530d8d8a /test-chill/testchill/chill.py
parent8d73c8fcc75556c1df71dd39dd99783f8f86fc3e (diff)
parenteb9236c5353785472ae132f27e1cfb9f1e4264a5 (diff)
downloadchill-0bd379bd2d620e90f6ce35f874a5a7f7f3ec82c7.tar.gz
chill-0bd379bd2d620e90f6ce35f874a5a7f7f3ec82c7.tar.bz2
chill-0bd379bd2d620e90f6ce35f874a5a7f7f3ec82c7.zip
Merge pull request #3 from dhuth/master
Updating Makefile and test coverage.
Diffstat (limited to 'test-chill/testchill/chill.py')
-rw-r--r--test-chill/testchill/chill.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-chill/testchill/chill.py b/test-chill/testchill/chill.py
index bfd9c81..b881ef4 100644
--- a/test-chill/testchill/chill.py
+++ b/test-chill/testchill/chill.py
@@ -54,11 +54,11 @@ class ChillConfig(object):
def _buildfunc(self, cc, link=True):
if not link:
- compile_args = ['-c']
+ compile_args = ['-c -Wuninitialized']
elif link and cc == 'nvcc':
- compile_args = ['-L/usr/local/cuda/lib64/lib', '-lcuda', '-lcudart', '-lstdc++', '-lrt']
+ compile_args = ['-L/usr/local/cuda/lib64/lib', '-lcuda', '-lcudart', '-lstdc++', '-lrt', '-Wuninitialized']
else:
- compile_args = ['-lstdc++', '-lrt']
+ compile_args = ['-lstdc++', '-lrt', '-Wuninitialized']
def build(src, dest, args=[], defines={}, wd=None):
if wd is None: