Mercurial
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 167:589bab390fb4 | 168:f3084bca7317 |
|---|---|
| 28 deps = [":dowa"], | 28 deps = [":dowa"], |
| 29 args = [], | 29 args = [], |
| 30 data = glob([ | 30 data = glob([ |
| 31 "test_folder/**", | 31 "test_folder/**", |
| 32 ]), | 32 ]), |
| 33 copts = ["-fsanitize=address", "-g"], | 33 copts = select({ |
| 34 linkopts = ["-fsanitize=address"], | 34 "@platforms//os:osx": ["-fsanitize=address", "-g"], |
| 35 "@platforms//os:linux": ["-g", "-Wall"], | |
| 36 }), | |
| 37 linkopts = select({ | |
| 38 "@platforms//os:osx": ["-fsanitize=address"], | |
| 39 "@platforms//os:linux": [], | |
| 40 }), | |
| 35 ) | 41 ) |