From ab6a410426d614f95b779797f3dfb289eb3672d9 Mon Sep 17 00:00:00 2001 From: Eric Lemanissier Date: Wed, 13 May 2020 11:24:52 +0200 Subject: macos: Remove framwork linkerlike args fixes-up 33fbc548ab74e79280d2f57b2cd499d14c1f1e91 --- mesonbuild/compilers/compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers') diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 3d3a503..385ef5e 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1136,7 +1136,7 @@ class Compiler: def remove_linkerlike_args(self, args): rm_exact = ('-headerpad_max_install_names',) rm_prefixes = ('-Wl,', '-L',) - rm_next = ('-L',) + rm_next = ('-L', '-framework',) ret = [] iargs = iter(args) for arg in iargs: -- cgit v1.1