rmw: disable asan and ubsan from subproject

The subproject "canfigger" has asan and ubsan enabled by default, this
commit adds a flag for meson to disable them
This commit is contained in:
langsjo
2025-05-09 15:18:42 +03:00
parent c5cc311133
commit b62454fc80
+5
View File
@@ -30,6 +30,11 @@ stdenv.mkDerivation rec {
ncurses
];
# The subproject "canfigger" has asan and ubsan enabled by default, disable it here
mesonFlags = [
"-Dcanfigger:b_sanitize=none"
];
meta = with lib; {
description = "Trashcan/ recycle bin utility for the command line";
homepage = "https://github.com/theimpossibleastronaut/rmw";