-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Utilize globally installed leveldb if available (#134)
* feat: Utilize globally installed leveldb if available * chore: Update docs * chore(docker): Update wasm builder to ubuntu:kinetic for newer cmake * chore: Cleanup fragile target linking
- Loading branch information
Showing
5 changed files
with
53 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,43 @@ | ||
barretenberg_module(stdlib_merkle_tree stdlib_primitives stdlib_blake3s stdlib_pedersen) | ||
|
||
if(NOT WASM) | ||
include(FetchContent) | ||
FetchContent_Declare( | ||
leveldb | ||
GIT_REPOSITORY https://github.com/google/leveldb.git | ||
GIT_TAG 1.22 | ||
FIND_PACKAGE_ARGS | ||
) | ||
|
||
FetchContent_GetProperties(leveldb) | ||
if(NOT leveldb_POPULATED) | ||
FetchContent_Populate(leveldb) | ||
set(LEVELDB_BUILD_TESTS OFF CACHE BOOL "LevelDB tests off") | ||
add_subdirectory(${leveldb_SOURCE_DIR} ${leveldb_BINARY_DIR} EXCLUDE_FROM_ALL) | ||
endif() | ||
# Disable some leveldb targets before we call FetchContent_MakeAvailable | ||
# so they are configured correctly if it needs to fetch | ||
set(LEVELDB_BUILD_TESTS OFF CACHE BOOL "LevelDB tests off") | ||
set(LEVELDB_BUILD_BENCHMARKS OFF CACHE BOOL "LevelDB benchmarks off") | ||
|
||
# Silence all compiler warnings from LevelDB | ||
target_compile_options( | ||
leveldb | ||
PRIVATE | ||
-w | ||
) | ||
FetchContent_MakeAvailable(leveldb) | ||
|
||
link_libraries(leveldb) | ||
endif() | ||
if (leveldb_FOUND) | ||
# Globally installed leveldb needs Threads available as Threads::Threads as discovered by `find_package` | ||
find_package(Threads REQUIRED) | ||
|
||
barretenberg_module(stdlib_merkle_tree stdlib_primitives stdlib_blake3s stdlib_pedersen) | ||
foreach(target IN LISTS stdlib_merkle_tree_lib_targets stdlib_merkle_tree_exe_targets) | ||
target_link_libraries(${target} PRIVATE leveldb::leveldb) | ||
endforeach() | ||
else() | ||
# FetchContent_MakeAvailable calls FetchContent_Populate if `find_package` is unsuccessful | ||
# so these variables will be available if we reach this case | ||
set_property(DIRECTORY ${leveldb_SOURCE_DIR} PROPERTY EXCLUDE_FROM_ALL) | ||
set_property(DIRECTORY ${leveldb_BINARY_DIR} PROPERTY EXCLUDE_FROM_ALL) | ||
|
||
# Silence all compiler warnings from LevelDB | ||
target_compile_options( | ||
leveldb | ||
PRIVATE | ||
-w | ||
) | ||
|
||
foreach(target IN LISTS stdlib_merkle_tree_lib_targets stdlib_merkle_tree_exe_targets) | ||
target_link_libraries(${target} PRIVATE leveldb) | ||
endforeach() | ||
endif() | ||
endif() |