summaryrefslogtreecommitdiff
path: root/lib/spack/spack/compilers/msvc.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/compilers/msvc.py')
-rw-r--r--lib/spack/spack/compilers/msvc.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/spack/spack/compilers/msvc.py b/lib/spack/spack/compilers/msvc.py
new file mode 100644
index 0000000000..ac5da84705
--- /dev/null
+++ b/lib/spack/spack/compilers/msvc.py
@@ -0,0 +1,35 @@
+# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from typing import List # novm
+from spack.compiler import Compiler
+
+
+class Msvc(Compiler):
+ # Subclasses use possible names of C compiler
+ cc_names = ['cl.exe']
+
+ # Subclasses use possible names of C++ compiler
+ cxx_names = ['cl.exe']
+
+ # Subclasses use possible names of Fortran 77 compiler
+ f77_names = [] # type: List[str]
+
+ # Subclasses use possible names of Fortran 90 compiler
+ fc_names = [] # type: List[str]
+
+ # Named wrapper links within build_env_path
+ link_paths = {'cc': 'msvc/cl.exe',
+ 'cxx': 'msvc/cl.exe',
+ 'f77': '',
+ 'fc': ''}
+
+ @property
+ def verbose_flag(self):
+ return ""
+
+ @property
+ def pic_flag(self):
+ return ""