nimbus-eth1/execution_chain/compile_info.nim

32 lines
841 B
Nim
Raw Normal View History

# Nimbus
# Copyright (c) 2021-2025 Status Research & Development GmbH
# 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.
func vmName(): string =
when defined(evmc_enabled):
"evmc"
else:
2022-12-02 11:39:12 +07:00
"nimvm"
const
chronicles_line_numbers {.strdefine.} = "0"
VmName* = vmName()
2022-04-08 11:54:11 +07:00
warningMsg = block:
var rc = "*** Compiling with " & VmName
if chronicles_line_numbers notin ["0", "off"]:
rc &= ", logger line numbers"
when defined(boehmgc):
rc &= ", boehm/gc"
rc &= " enabled"
rc
{.warning: warningMsg.}
{.used.}