summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-17 19:42:14 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-17 21:00:45 +0000
commit2aeb895aa5c05e0db6cfa36bef2d6d8cb2e59bfa (patch)
tree868013b59e73df9f2ffc45254fa0768c165774e6 /cscript
parent609aa163d80bcd1ccfcda96c971df048f90c5cb3 (diff)
Fix uninitialised variable; Win32 build fixes.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 4141b56c..1e0e2344 100644
--- a/cscript
+++ b/cscript
@@ -12,7 +12,7 @@ def build(target, options):
if (target.distro == 'debian' and target.version == 'unstable' or target.distro == 'fedora' and target.version == '23'):
target.append_with_space('CXXFLAGS', '-std=c++11')
elif target.platform == 'windows':
- cmd += ' --target-windows'
+ cmd += ' --target-windows --disable-gcov'
elif target.platform == 'osx':
cmd += ' --disable-tests'