Try to fix sanitizer CI

This commit is contained in:
Jérôme Leclercq
2022-03-06 10:59:05 +01:00
parent 95742b6ba3
commit ca0ab34f32
7 changed files with 102 additions and 92 deletions

View File

@@ -0,0 +1,7 @@
-- Adds -d as a debug suffix
rule("debug_suffix")
on_load(function (target)
if target:kind() ~= "binary" then
target:set("basename", target:basename() .. "-d")
end
end)