Skip to content

Commit 9f008b1

Browse files
author
ton
committedApr 27, 2020
updated submodules, bugfixes
- added new fift/func code for validator complaint creation - bugfixes in validator - updates in tonlib - new versions of rocksdb/abseil - hardfork support
1 parent 16a4566 commit 9f008b1

File tree

129 files changed

+8425
-866
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+8425
-866
lines changed
 

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tl/generate/auto/
77
compile_commands.json
88
crypto/block/block-auto.cpp
99
crypto/block/block-auto.h
10-
crypto/smartcont/*-code.fif
1110
crypto/smartcont/auto/
1211
test/regression-tests.cache/
1312
*.swp

‎CMakeLists.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ if (TON_USE_ROCKSDB)
115115
if (ANDROID)
116116
set(PORTABLE ON CACHE BOOL "portable")
117117
endif()
118+
set(WITH_GFLAGS OFF CACHE BOOL "build with GFlags")
118119
set(WITH_TESTS OFF CACHE BOOL "build with tests")
119120
set(WITH_TOOLS OFF CACHE BOOL "build with tools")
120121
set(FAIL_ON_WARNINGS OFF CACHE BOOL "fail on warnings")
@@ -231,7 +232,7 @@ elseif (CLANG OR GCC)
231232
if (APPLE)
232233
#use "-Wl,-exported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/export_list" for exported symbols
233234
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fvisibility=hidden -Wl,-dead_strip,-x,-S")
234-
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fvisibility=hidden -Wl,-dead_strip,-x,-S")
235+
#set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fvisibility=hidden -Wl,-dead_strip,-x,-S")
235236
else()
236237
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffunction-sections -fdata-sections")
237238
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--gc-sections -Wl,--exclude-libs,ALL")
@@ -385,6 +386,7 @@ add_subdirectory(validator)
385386
add_subdirectory(blockchain-explorer)
386387
add_subdirectory(validator-engine)
387388
add_subdirectory(validator-engine-console)
389+
add_subdirectory(create-hardfork)
388390
add_subdirectory(dht-server)
389391
add_subdirectory(utils)
390392
add_subdirectory(http)
@@ -445,6 +447,9 @@ if (NOT TON_ONLY_TONLIB)
445447
add_executable(test-db test/test-td-main.cpp ${TONDB_TEST_SOURCE})
446448
target_link_libraries(test-db PRIVATE ton_db memprof)
447449

450+
add_executable(test-rocksdb test/test-rocksdb.cpp)
451+
target_link_libraries(test-rocksdb PRIVATE memprof tddb tdutils)
452+
448453
add_executable(test-tddb test/test-td-main.cpp ${TDDB_TEST_SOURCE})
449454
target_link_libraries(test-tddb PRIVATE tdutils tddb ${CMAKE_THREAD_LIBS_INIT} memprof)
450455

0 commit comments

Comments
 (0)
Please sign in to comment.