From 0bd67620c6edb95cacd44db733947f6afeae91ec Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 16 Nov 2023 16:52:09 +0530 Subject: [PATCH] ... --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3dac3f38e..945290158 100755 --- a/setup.py +++ b/setup.py @@ -1100,7 +1100,7 @@ def build_launcher(args: Options, launcher_dir: str = '.', bundle_type: str = 's sanitize_args = get_sanitize_args(env.cc, env.ccver) cflags.extend(sanitize_args) ldflags.extend(sanitize_args) - libs += ['-lasan'] if is_gcc(env.cc) and not is_macos else [] + libs += ['-lasan'] if not is_macos and is_gcc(env.cc) else [] else: cflags.append('-g') if args.profile: