diff options
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r-- | mesonbuild/compilers.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index 94ee2f1..54e959c 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -2281,6 +2281,8 @@ class VisualStudioCCompiler(CCompiler): def get_link_whole_for(self, args): # Only since VS2015 + if not isinstance(args, list): + args = [args] return ['/WHOLEARCHIVE:' + x for x in args] |