build: default to Berkeley DB for 32 bit and ARM

release-v0.4.0.1
moneromooo-monero 9 years ago
parent 791d8cb038
commit 180bcde866
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -216,8 +216,17 @@ if (DATABASE STREQUAL "lmdb")
endif() endif()
endif() endif()
endif() endif()
if (BERKELEY_DB AND (ARCH_WIDTH STREQUAL "32" OR ARM6 OR ARM7))
message(STATUS "Using Berkeley DB as default DB type")
add_definitions("-DDEFAULT_DB_TYPE=\"berkeley\"")
else()
message(STATUS "Using LMDB as default DB type")
add_definitions("-DDEFAULT_DB_TYPE=\"lmdb\"")
endif()
elseif (DATABASE STREQUAL "memory") elseif (DATABASE STREQUAL "memory")
set(BLOCKCHAIN_DB DB_MEMORY) set(BLOCKCHAIN_DB DB_MEMORY)
add_definitions("-DDEFAULT_DB_TYPE=\"memory\"")
else() else()
die("Invalid database type: ${DATABASE}") die("Invalid database type: ${DATABASE}")
endif() endif()

@ -73,7 +73,7 @@ namespace daemon_args
const command_line::arg_descriptor<std::string> arg_db_type = { const command_line::arg_descriptor<std::string> arg_db_type = {
"db-type" "db-type"
, "Specify database type" , "Specify database type"
, "lmdb" , DEFAULT_DB_TYPE
}; };
const command_line::arg_descriptor<uint64_t> arg_prep_blocks_threads = { const command_line::arg_descriptor<uint64_t> arg_prep_blocks_threads = {
"prep-blocks-threads" "prep-blocks-threads"

Loading…
Cancel
Save