aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-06-11 13:27:04 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2016-06-11 13:27:04 +0300
commitd4adf0983bd5dcf4083e433146aaec8b51daaaa8 (patch)
tree31317e2320c462a3454369b6be17a9256d2da8f8 /mesonbuild/compilers.py
parentbeef7cb291d55b214e2bc291cbb47bf953275569 (diff)
downloadmeson-d4adf0983bd5dcf4083e433146aaec8b51daaaa8.zip
meson-d4adf0983bd5dcf4083e433146aaec8b51daaaa8.tar.gz
meson-d4adf0983bd5dcf4083e433146aaec8b51daaaa8.tar.bz2
Add special casing for VS which ignores unknown arguments.
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r--mesonbuild/compilers.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py
index 5b68eaa..eeb4185 100644
--- a/mesonbuild/compilers.py
+++ b/mesonbuild/compilers.py
@@ -1435,6 +1435,27 @@ class VisualStudioCCompiler(CCompiler):
# msvc does not have a concept of system header dirs.
return ['-I' + path]
+ # Visual Studio is special. It ignores arguments it does not
+ # understand and you can't tell it to error out on those.
+ # http://stackoverflow.com/questions/15259720/how-can-i-make-the-microsoft-c-compiler-treat-unknown-flags-as-errors-rather-t
+ def has_argument(self, arg):
+ warning_text = b'9002'
+ code = 'int i;\n'
+ (fd, srcname) = tempfile.mkstemp(suffix='.'+self.default_suffix)
+ os.close(fd)
+ ofile = open(srcname, 'w')
+ ofile.write(code)
+ ofile.close()
+ commands = self.exelist + [arg] + self.get_compile_only_args() + [srcname]
+ mlog.debug('Running VS compile:')
+ mlog.debug('Command line: ', ' '.join(commands))
+ mlog.debug('Code:\n', code)
+ p = subprocess.Popen(commands, cwd=os.path.split(srcname)[0], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ (stde, stdo) = p.communicate()
+ if p.returncode != 0:
+ raise MesonException('Compiling test app failed.')
+ return not(warning_text in stde or warning_text in stdo)
+
class VisualStudioCPPCompiler(VisualStudioCCompiler):
def __init__(self, exelist, version, is_cross, exe_wrap):
VisualStudioCCompiler.__init__(self, exelist, version, is_cross, exe_wrap)