Skip to content

Commit

Permalink
Merge pull request #612 from ethereum/evmone-t8n-version
Browse files Browse the repository at this point in the history
Add t8n full version printing
  • Loading branch information
rodiazet authored Apr 20, 2023
2 parents 31fd534 + 990ef97 commit 4211942
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
3 changes: 3 additions & 0 deletions cmake/cable/CableBuildInfo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
#
# CHANGELOG
#
# 1.0.1 - 2023-04-19
# - Fix -Wstrict-prototypes warning in buildinfo source files.
#
# 1.0.0 - 2022-02-12

include_guard(GLOBAL)
Expand Down
2 changes: 1 addition & 1 deletion cmake/cable/buildinfo/buildinfo.c.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include "buildinfo.h"

const struct buildinfo* @FUNCTION_NAME@()
const struct buildinfo* @FUNCTION_NAME@(void)
{
static const struct buildinfo buildinfo = {
.project_name = "@PROJECT_NAME@",
Expand Down
2 changes: 1 addition & 1 deletion cmake/cable/buildinfo/buildinfo.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct buildinfo
const char* build_type;
};

const struct buildinfo* @FUNCTION_NAME@();
const struct buildinfo* @FUNCTION_NAME@(void);

#ifdef __cplusplus
}
Expand Down
11 changes: 4 additions & 7 deletions test/t8n/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@
# Copyright 2022 The evmone Authors.
# SPDX-License-Identifier: Apache-2.0

include(CableBuildInfo)
cable_add_buildinfo_library(PROJECT_NAME evmone)

hunter_add_package(nlohmann_json)
find_package(nlohmann_json CONFIG REQUIRED)

add_executable(evmone-t8n)
target_link_libraries(evmone-t8n PRIVATE evmone::statetestutils nlohmann_json::nlohmann_json)
target_link_libraries(evmone-t8n PRIVATE evmc::evmc evmone)
target_link_libraries(evmone-t8n PRIVATE evmc::evmc evmone evmone-buildinfo)
target_sources(evmone-t8n PRIVATE t8n.cpp)

# Provide the project version to selected source files.
set_source_files_properties(
t8n.cpp
PROPERTIES COMPILE_DEFINITIONS PROJECT_VERSION="${PROJECT_VERSION}"
)
3 changes: 2 additions & 1 deletion test/t8n/t8n.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "../state/rlp.hpp"
#include "../statetest/statetest.hpp"
#include <evmone/evmone.h>
#include <evmone/version.h>
#include <nlohmann/json.hpp>
#include <filesystem>
#include <fstream>
Expand Down Expand Up @@ -39,7 +40,7 @@ int main(int argc, const char* argv[])

if (arg == "-v")
{
std::cout << "evmone-t8n " PROJECT_VERSION "\n";
std::cout << "evmone-t8n " EVMONE_VERSION "\n";
return 0;
}
if (arg == "--state.fork" && ++i < argc)
Expand Down

0 comments on commit 4211942

Please sign in to comment.