aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-04-30 15:41:36 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-13 11:22:31 -0700
commit080f59cf43797a37e1711474b3093f48fefa95c9 (patch)
treed1e2df192d7ff90287dfcb9f20e865f6b193d8d1 /run_unittests.py
parent5fb64b0cfa48daf7f2c412ee8e851fa29f2ef1a3 (diff)
downloadmeson-080f59cf43797a37e1711474b3093f48fefa95c9.zip
meson-080f59cf43797a37e1711474b3093f48fefa95c9.tar.gz
meson-080f59cf43797a37e1711474b3093f48fefa95c9.tar.bz2
compilers: rename IntelCompiler to IntelGnuLikeCompiler
The Intel compiler is strange. On Linux and macOS it's called ICC, and it tries to mostly behave like gcc/clang. On Windows it's called ICL, and tries to behave like MSVC. This makes the code that's used to implement ICC support useless for supporting ICL, because their command line interfaces are completely different.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 0ce4a77..4f27817 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -1939,7 +1939,7 @@ class AllPlatformTests(BasePlatformTests):
'''
gnu = mesonbuild.compilers.GnuCompiler
clang = mesonbuild.compilers.ClangCompiler
- intel = mesonbuild.compilers.IntelCompiler
+ intel = mesonbuild.compilers.IntelGnuLikeCompiler
msvc = (mesonbuild.compilers.VisualStudioCCompiler, mesonbuild.compilers.VisualStudioCPPCompiler)
clangcl = (mesonbuild.compilers.ClangClCCompiler, mesonbuild.compilers.ClangClCPPCompiler)
ar = mesonbuild.linkers.ArLinker