Skip to content

Commit

Permalink
Disable sanitizer
Browse files Browse the repository at this point in the history
At least the haskell and purescript parsers are know to have sanitizer bugs.
  • Loading branch information
neurocyte committed Feb 23, 2024
1 parent 6b41556 commit 03b9a9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
const std = @import("std");

const flags = [_][]const u8{};
const flags = [_][]const u8{
"-fno-sanitize=undefined",
};


pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
Expand Down

0 comments on commit 03b9a9d

Please sign in to comment.