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
7 changes: 5 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ else()
message(STATUS "${CMAKE_CXX_COMPILER_ID} not recognized, no flags added")
endif()

#add_compile_options(-fsanitize=address)
#add_link_options(-fsanitize=address)
#add_compile_options(-fsanitize=undefined)
#add_link_options(-fsanitize=undefined)

# Check if this project is the top directory or build type is Debug
# If so, build executables, otherwise, only build libraries
get_directory_property(not_root PARENT_DIRECTORY)
Expand Down Expand Up @@ -93,7 +98,6 @@ add_library(GraphZeppelin
src/supernode.cpp
src/graph_worker.cpp
src/l0_sampling/sketch.cpp
src/l0_sampling/update.cpp
src/util.cpp)
add_dependencies(GraphZeppelin GutterTree)
target_link_libraries(GraphZeppelin PUBLIC xxhash GutterTree)
Expand All @@ -108,7 +112,6 @@ add_library(GraphZeppelinVerifyCC
src/supernode.cpp
src/graph_worker.cpp
src/l0_sampling/sketch.cpp
src/l0_sampling/update.cpp
src/util.cpp
test/util/file_graph_verifier.cpp
test/util/mat_graph_verifier.cpp)
Expand Down
88 changes: 0 additions & 88 deletions include/bucket.h

This file was deleted.

Loading