diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-17 19:42:14 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-17 21:00:45 +0000 |
| commit | 2aeb895aa5c05e0db6cfa36bef2d6d8cb2e59bfa (patch) | |
| tree | 868013b59e73df9f2ffc45254fa0768c165774e6 /cscript | |
| parent | 609aa163d80bcd1ccfcda96c971df048f90c5cb3 (diff) | |
Fix uninitialised variable; Win32 build fixes.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' |
