2021-04-21 10:15:06 +00:00
|
|
|
# Nimbus
|
2024-04-12 11:21:17 +00:00
|
|
|
# Copyright (c) 2021-2024 Status Research & Development GmbH
|
2021-04-21 10:15:06 +00:00
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
|
|
# according to those terms.
|
|
|
|
|
2024-07-22 18:10:04 +00:00
|
|
|
import
|
|
|
|
./db/core_db/base/base_config,
|
|
|
|
./db/ledger/base/base_config
|
|
|
|
|
2021-09-11 14:58:01 +00:00
|
|
|
func vmName(): string =
|
|
|
|
when defined(evmc_enabled):
|
|
|
|
"evmc"
|
|
|
|
else:
|
2022-12-02 04:39:12 +00:00
|
|
|
"nimvm"
|
2021-04-21 10:15:06 +00:00
|
|
|
|
2021-09-11 14:58:01 +00:00
|
|
|
const
|
2024-08-19 14:00:10 +00:00
|
|
|
chronicles_line_numbers {.strdefine.} = "0"
|
2021-09-11 14:58:01 +00:00
|
|
|
VmName* = vmName()
|
2022-04-08 04:54:11 +00:00
|
|
|
warningMsg = block:
|
2022-03-29 09:19:32 +00:00
|
|
|
var rc = "*** Compiling with " & VmName
|
2024-08-19 14:00:10 +00:00
|
|
|
if chronicles_line_numbers notin ["0", "off"]:
|
|
|
|
rc &= ", logger line numbers"
|
2023-03-02 09:57:58 +00:00
|
|
|
when defined(boehmgc):
|
|
|
|
rc &= ", boehm/gc"
|
2024-07-22 18:10:04 +00:00
|
|
|
when 0 < coreDbBaseConfigExtras.len:
|
|
|
|
rc &= ", " & coreDbBaseConfigExtras
|
|
|
|
when 0 < ledgerBaseConfigExtras.len:
|
|
|
|
rc &= ", " & ledgerBaseConfigExtras
|
2022-03-29 09:19:32 +00:00
|
|
|
rc &= " enabled"
|
|
|
|
rc
|
2021-04-21 10:15:06 +00:00
|
|
|
|
2021-09-11 14:58:01 +00:00
|
|
|
{.warning: warningMsg.}
|
2021-04-21 10:15:06 +00:00
|
|
|
|
|
|
|
{.used.}
|