From 1f0ab2f935d8301ce83107705f0efcba53a5564b Mon Sep 17 00:00:00 2001 From: Ino Murko Date: Tue, 11 May 2021 16:12:20 +0200 Subject: [PATCH 1/2] rename the output binary, identify the binary from cmd version --- solc/CMakeLists.txt | 10 +++++----- solc/CommandLineInterface.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/solc/CMakeLists.txt b/solc/CMakeLists.txt index 3fbdefe6a9..8368ebe9ac 100644 --- a/solc/CMakeLists.txt +++ b/solc/CMakeLists.txt @@ -4,18 +4,18 @@ set( main.cpp ) -add_executable(solc ${sources}) -target_link_libraries(solc PRIVATE solidity Boost::boost Boost::program_options) +add_executable(osolc ${sources}) +target_link_libraries(osolc PRIVATE solidity Boost::boost Boost::program_options) include(GNUInstallDirs) -install(TARGETS solc DESTINATION "${CMAKE_INSTALL_BINDIR}") +install(TARGETS osolc DESTINATION "${CMAKE_INSTALL_BINDIR}") if(SOLC_LINK_STATIC AND UNIX AND NOT APPLE) - # Produce solc as statically linked binary (includes C/C++ standard libraries) + # Produce osolc as statically linked binary (includes C/C++ standard libraries) # This is not supported on macOS, see # https://developer.apple.com/library/content/qa/qa1118/_index.html. set_target_properties( - solc PROPERTIES + osolc PROPERTIES LINK_FLAGS -static LINK_SEARCH_START_STATIC ON LINK_SEARCH_END_STATIC ON diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index 05b0213797..0dc5f774a9 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -231,7 +231,7 @@ static set const g_yulDialectArgs static void version() { sout() << - "solc, the solidity compiler commandline interface" << + "osolc, the optimistc solidity compiler commandline interface" << endl << "Version: " << dev::solidity::VersionString << From da14fd41d58d6dc67828d8fab284591dc40b3dd8 Mon Sep 17 00:00:00 2001 From: Ino Murko Date: Tue, 11 May 2021 23:48:38 +0200 Subject: [PATCH 2/2] Update CommandLineInterface.cpp forgot an i --- solc/CommandLineInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index 0dc5f774a9..ff7c7335e6 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -231,7 +231,7 @@ static set const g_yulDialectArgs static void version() { sout() << - "osolc, the optimistc solidity compiler commandline interface" << + "osolc, the optimistic solidity compiler commandline interface" << endl << "Version: " << dev::solidity::VersionString <<