summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/mixins/emscripten.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-02-24 10:30:05 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-02-27 16:35:02 -0800
commit64f3174daa54a2ef8cf63df94921919717057243 (patch)
tree676ec5aaa0fc33949eb54da0f960a6dd19bb0303 /mesonbuild/compilers/mixins/emscripten.py
parentfa3c25d279509c4fe09717c5146cb656025ab685 (diff)
downloadmeson-64f3174daa54a2ef8cf63df94921919717057243.tar.gz
compilers/emcc: Fix inheritance order
Sot hat the BasicLinkerIsCompilerMixin comes before ClangCCompiler, which hides its "call the linker" methods, as emcc doesn't have a separate linker.
Diffstat (limited to 'mesonbuild/compilers/mixins/emscripten.py')
-rw-r--r--mesonbuild/compilers/mixins/emscripten.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/compilers/mixins/emscripten.py b/mesonbuild/compilers/mixins/emscripten.py
index 945a67df0..36a757ae5 100644
--- a/mesonbuild/compilers/mixins/emscripten.py
+++ b/mesonbuild/compilers/mixins/emscripten.py
@@ -20,6 +20,7 @@ import typing as T
from ...mesonlib import MesonException
class EmscriptenMixin:
+
def get_option_link_args(self, options):
return []