We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb62bc commit 5413b60Copy full SHA for 5413b60
fuzzing/BUILD.bazel
@@ -7,9 +7,11 @@ cc_test(
7
name = "snmalloc_fuzzer",
8
srcs = ["snmalloc-fuzzer.cpp"],
9
copts = [
10
- "-fexperimental-library", # needed for std::execution::unseq,
11
"-fsanitize=address",
12
- ],
+ ] + select({
+ "@bazel_tools//tools/cpp:clang-cl": ["-fexperimental-library"], # needed for std::execution::unseq,
13
+ "//conditions:default": ["-mcx16"],
14
+ }),
15
defines = [
16
"SNMALLOC_USE_WAIT_ON_ADDRESS=0",
17
"ADDRESS_SANITIZER",
0 commit comments