Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ common --enable_bzlmod
build --output_filter='^//(core|pass|inou)'
#build --output_filter="^//"
#build --cxxopt="-std=c++17" --cxxopt="-fexceptions" --force_pic --build_tag_filters="-fixme"
build --cxxopt="-std=c++23" --force_pic --build_tag_filters="-fixme"
build --cxxopt="-std=c++20" --force_pic --build_tag_filters="-fixme"
# test --cache_test_results=no

# Use Clang
Expand Down Expand Up @@ -55,7 +55,7 @@ build:asan --copt -fno-omit-frame-pointer
build:asan --cxxopt -fsanitize=address
build:asan --cxxopt -DADDRESS_SANITIZER
#build:asan --cxxopt -O1
build:asan --cxxopt -std=c++23
build:asan --cxxopt -std=c++20
build:asan --cxxopt -g
build:asan --cxxopt -fno-omit-frame-pointer
build:asan --linkopt -fsanitize=address
Expand Down Expand Up @@ -95,7 +95,7 @@ build:tsan --cxxopt -DTHREAD_SANITIZER
build:tsan --cxxopt -DDYNAMIC_ANNOTATIONS_ENABLED=1
build:tsan --cxxopt -DDYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1
build:tsan --cxxopt -g
build:tsan --cxxopt -std=c++23
build:tsan --cxxopt -std=c++20
# build:tsan --copt -O1
build:tsan --cxxopt -fno-omit-frame-pointer
build:tsan --linkopt -fsanitize=thread
Expand Down
12 changes: 7 additions & 5 deletions hhds/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ cc_library(
"graph.hpp",
"graph_sizing.hpp",
"hash_set3.hpp",
"tree.hpp",
"unordered_dense.hpp",
],
copts = COPTS + [
Expand All @@ -86,6 +87,7 @@ cc_library(
visibility = ["//visibility:public"],
deps = [
"@emhash",
"@iassert",
],
)

Expand Down Expand Up @@ -296,9 +298,8 @@ cc_test(
#)

cc_test(
name = "iterators",
srcs = ["tests/iterators.cpp"],
tags = ["manual"], # planned API, not yet implemented
name = "iterators_impl",
srcs = ["tests/iterators_impl.cpp"],
deps = [
":core",
":graph",
Expand All @@ -308,8 +309,9 @@ cc_test(
)

cc_test(
name = "iterators_impl",
srcs = ["tests/iterators_impl.cpp"],
name = "iterators",
srcs = ["tests/iterators.cpp"],
tags = ["manual"], # planned API, not yet implemented
deps = [
":core",
":graph",
Expand Down
Loading
Loading