mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
* experiment: reject bad peer info messages * v2.1.0.18 preview * add tagged sync * Add missing hypergraph changes * small tweaks to sync * allow local sync, use it for provers with workers * missing file * resolve build error * resolve sync issue, remove raw sync * resolve deletion promotion bug * resolve sync abstraction leak from tree deletion changes * rearrange prover sync * remove pruning from sync * restore removed sync flag * fix: sync, event stream deadlock, heuristic scoring of better shards * resolve hanging shutdown + pubsub proxy issue * further bugfixes: sync (restore old leaf sync), pubsub shutdown, merge events * fix: clean up rust ffi, background coverage events, and sync tweaks * fix: linking issue for channel, connectivity test aggression, sync regression, join tests * fix: disjoint sync, improper application of filter * resolve sync/reel/validation deadlock * adjust sync to handle no leaf edge cases, multi-path segment traversal * use simpler sync * faster, simpler sync with some debug extras * migration to recalculate * don't use batch * square up the roots * fix nil pointer * fix: seniority calculation, sync race condition, migration * make sync dumber * fix: tree deletion issue * fix: missing seniority merge request canonical serialization * address issues from previous commit test * stale workers should be cleared * remove missing gap check * rearrange collect, reduce sync logging noise * fix: the disjoint leaf/branch sync case * nuclear option on sync failures * v2.1.0.18, finalized
67 lines
2.3 KiB
CMake
Executable File
67 lines
2.3 KiB
CMake
Executable File
cmake_minimum_required (VERSION 3.5)
|
|
project (emptool)
|
|
set(NAME "emp-tool")
|
|
|
|
set(CMAKE_FOLDER ./)
|
|
include(${CMAKE_FOLDER}/cmake/emp-base.cmake)
|
|
|
|
IF(${CRYPTO_IN_CIRCUIT})
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT ${CMAKE_SOURCE_DIR}/emp-tool/circuits/files/bristol_fashion/Keccak_f.txt.cpp
|
|
COMMAND xxd -i emp-tool/circuits/files/bristol_fashion/Keccak_f.txt emp-tool/circuits/files/bristol_fashion/Keccak_f.txt.hex
|
|
COMMAND echo "\\#include \\\"emp-tool/circuits/sha3_256.h\\\"" > emp-tool/circuits/files/bristol_fashion/Keccak_f.txt.cpp
|
|
COMMAND cat emp-tool/circuits/files/bristol_fashion/Keccak_f.txt.hex >> emp-tool/circuits/files/bristol_fashion/Keccak_f.txt.cpp
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
COMMENT "Compiling Keccak circuit file to binary")
|
|
|
|
ADD_CUSTOM_COMMAND(
|
|
OUTPUT ${CMAKE_SOURCE_DIR}/emp-tool/circuits/files/bristol_fashion/aes_128.txt.cpp
|
|
COMMAND xxd -i emp-tool/circuits/files/bristol_fashion/aes_128.txt emp-tool/circuits/files/bristol_fashion/aes_128.txt.hex
|
|
COMMAND echo "\\#include \\\"emp-tool/circuits/aes_128_ctr.h\\\"" > emp-tool/circuits/files/bristol_fashion/aes_128.txt.cpp
|
|
COMMAND cat emp-tool/circuits/files/bristol_fashion/aes_128.txt.hex >> emp-tool/circuits/files/bristol_fashion/aes_128.txt.cpp
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
COMMENT "Compiling aes_128 circuit file to binary")
|
|
ENDIF(${CRYPTO_IN_CIRCUIT})
|
|
|
|
set(sources
|
|
emp-tool/emp-tool.cpp
|
|
emp-tool/circuits/float32_add.cpp
|
|
emp-tool/circuits/float32_cos.cpp
|
|
emp-tool/circuits/float32_div.cpp
|
|
emp-tool/circuits/float32_eq.cpp
|
|
emp-tool/circuits/float32_le.cpp
|
|
emp-tool/circuits/float32_leq.cpp
|
|
emp-tool/circuits/float32_mul.cpp
|
|
emp-tool/circuits/float32_sin.cpp
|
|
emp-tool/circuits/float32_sq.cpp
|
|
emp-tool/circuits/float32_sqrt.cpp
|
|
emp-tool/circuits/float32_sub.cpp
|
|
emp-tool/circuits/float32_exp2.cpp
|
|
emp-tool/circuits/float32_exp.cpp
|
|
emp-tool/circuits/float32_ln.cpp
|
|
emp-tool/circuits/float32_log2.cpp
|
|
)
|
|
|
|
IF(${CRYPTO_IN_CIRCUIT})
|
|
set(sources
|
|
${sources}
|
|
emp-tool/circuits/files/bristol_fashion/aes_128.txt.cpp
|
|
emp-tool/circuits/files/bristol_fashion/Keccak_f.txt.cpp
|
|
)
|
|
ENDIF(${CRYPTO_IN_CIRCUIT})
|
|
|
|
|
|
|
|
find_package(OpenSSL REQUIRED)
|
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
|
|
|
|
|
add_library(${NAME} STATIC ${sources})
|
|
|
|
install(DIRECTORY emp-tool DESTINATION include/)
|
|
install(DIRECTORY cmake/ DESTINATION cmake/)
|
|
install(TARGETS ${NAME} DESTINATION lib)
|
|
|
|
ENABLE_TESTING()
|
|
ADD_SUBDIRECTORY(test)
|