From 97f8117020ef690299678d32e5f1bece34e96552 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Fri, 17 Oct 2025 11:38:28 +0000 Subject: [PATCH] build: drop --no-undefined to make it possible to build n-acd with clang and ASan. -Wl,--no-undefined is still passed by meson by default unless -Db_lundef is set to false explicitly: https://github.com/mesonbuild/meson/issues/764. (it was spotted in the context of NetworkManager where n-acd is the last library where --no-undefined is still passed. It pins those deps though so it shouldn't affect it until it's bumped there) --- src/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index c1582f4..afeb748 100644 --- a/src/meson.build +++ b/src/meson.build @@ -37,7 +37,6 @@ libnacd_shared = shared_library( soversion: 0, link_depends: libnacd_symfile, link_args: [ - '-Wl,--no-undefined', '-Wl,--version-script=@0@'.format(libnacd_symfile) ], )