summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/genie.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r--scripts/genie.lua7
1 files changed, 2 insertions, 5 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua
index a9f6f11be05..d44cdf12a71 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -974,16 +974,13 @@ if _OPTIONS["SANITIZE"] then
if string.find(_OPTIONS["SANITIZE"], "undefined") then
-- 'function' produces errors without delegates by design
-- 'alignment' produces a lot of errors which we are not interested in
- -- 'nullability' errors are not actually undefined behavior but unintentional
buildoptions {
"-fno-sanitize=function",
- "-fno-sanitize=alignment",
- "-fsanitize=nullability"
+ "-fno-sanitize=alignment"
}
linkoptions {
"-fno-sanitize=function",
- "-fno-sanitize=alignment",
- "-fsanitize=nullability"
+ "-fno-sanitize=alignment"
}
end
end