Lines Matching +full:asan +full:- +full:configure
2 ---
6 ---
16 ------------
58 linkopts = ["-lpng", "-L/Users/mtklein/brew/lib"],
64 `~/brew/lib` doesn't work here, though `-L/Users/mtklein/brew/lib` works fine.
69 Finally, we point Bazel at all that using `--override_repository`:
71 $ bazel test ... --override_repository libpng=/Users/mtklein/overrides/libpng
81 --------
88 build --verbose_failures
89 test --test_output errors
91 # Create an ASAN config, try `bazel test --config asan ...`.
92 build:asan --copt -fsanitize=address
93 build:asan --copt -Wno-macro-redefined # (_FORTIFY_SOURCE redefined.)
94 build:asan --linkopt -fsanitize=address
97 build --override_repository libpng=/Users/mtklein/overrides/libpng
99 I'm impressed by how much you can configure via bazelrc, and I think this