rmw: disable asan and ubsan from subproject, add gettext for Darwin (#404929)

This commit is contained in:
Robert Scott
2025-05-09 20:58:29 +01:00
committed by GitHub
+6
View File
@@ -6,6 +6,7 @@
ninja,
pkg-config,
ncurses,
gettext,
}:
stdenv.mkDerivation rec {
@@ -28,6 +29,11 @@ stdenv.mkDerivation rec {
buildInputs = [
ncurses
] ++ lib.optional stdenv.hostPlatform.isDarwin gettext;
# The subproject "canfigger" has asan and ubsan enabled by default, disable it here
mesonFlags = [
"-Dcanfigger:b_sanitize=none"
];
meta = with lib; {