Mercurial
diff dowa/BUILD @ 168:f3084bca7317
[Misc] Fixed all errors and all tests should pass now.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 19 Jan 2026 16:29:02 -0800 |
| parents | 655ea0b661fd |
| children |
line wrap: on
line diff
--- a/dowa/BUILD Mon Jan 19 16:28:45 2026 -0800 +++ b/dowa/BUILD Mon Jan 19 16:29:02 2026 -0800 @@ -30,6 +30,12 @@ data = glob([ "test_folder/**", ]), - copts = ["-fsanitize=address", "-g"], - linkopts = ["-fsanitize=address"], + copts = select({ + "@platforms//os:osx": ["-fsanitize=address", "-g"], + "@platforms//os:linux": ["-g", "-Wall"], + }), + linkopts = select({ + "@platforms//os:osx": ["-fsanitize=address"], + "@platforms//os:linux": [], + }), )