aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-03-20 12:57:24 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2020-03-23 17:14:00 +0200
commitf6b0425576640e1613f64503951c7c604b868947 (patch)
treebff1f20362777c8f2d171c860a8af876f10db7b2 /mesonbuild/compilers
parente2b4e99d71524e0f6535838c2e40a1934fdb2824 (diff)
downloadmeson-f6b0425576640e1613f64503951c7c604b868947.zip
meson-f6b0425576640e1613f64503951c7c604b868947.tar.gz
meson-f6b0425576640e1613f64503951c7c604b868947.tar.bz2
Fix linker evn var tests
Just because we are on windows doesn't mean we can use `link`. This ought to be done better, but this will do for now.
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py
index 05c75dd..af7e519 100644
--- a/mesonbuild/compilers/__init__.py
+++ b/mesonbuild/compilers/__init__.py
@@ -58,6 +58,7 @@ __all__ = [
'ElbrusCCompiler',
'EmscriptenCCompiler',
'GnuCompiler',
+ 'GnuLikeCompiler',
'GnuCPPCompiler',
'ElbrusCPPCompiler',
'EmscriptenCPPCompiler',
@@ -196,6 +197,6 @@ from .rust import RustCompiler
from .swift import SwiftCompiler
from .vala import ValaCompiler
from .mixins.visualstudio import VisualStudioLikeCompiler
-from .mixins.gnu import GnuCompiler
+from .mixins.gnu import GnuCompiler, GnuLikeCompiler
from .mixins.intel import IntelGnuLikeCompiler, IntelVisualStudioLikeCompiler
from .mixins.clang import ClangCompiler