From 919278e3e1db85b4acc517e5614cc6c7b3163aa4 Mon Sep 17 00:00:00 2001 From: Laurin-Luis Lehning <65224843+e820@users.noreply.github.com> Date: Mon, 14 Dec 2020 14:04:25 +0100 Subject: Give get_gui_app_args access to the Environment --- mesonbuild/compilers/compilers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild/compilers/compilers.py') diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index e83514d..abb8af3 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -870,9 +870,9 @@ class Compiler(metaclass=abc.ABCMeta): def gnu_symbol_visibility_args(self, vistype: str) -> T.List[str]: return [] - def get_gui_app_args(self, value: bool) -> T.List[str]: + def get_gui_app_args(self, env: 'Environment', value: bool) -> T.List[str]: # Only used on Windows - return self.linker.get_gui_app_args(value) + return self.linker.get_gui_app_args(env, value) def get_win_subsystem_args(self, env: 'Environment', value: str) -> T.List[str]: # By default the dynamic linker is going to return an empty -- cgit v1.1