|
| 1 | +# Copyright (c) 2024-present The Bitcoin Core developers |
| 2 | +# Distributed under the MIT software license, see the accompanying |
| 3 | +# file COPYING or https://opensource.org/license/mit/. |
| 4 | + |
| 5 | +include_guard(GLOBAL) |
| 6 | + |
| 7 | +function(normalize_preprocessor_definitions definitions) |
| 8 | + if(MSVC) |
| 9 | + set(flag "/D") |
| 10 | + else() |
| 11 | + set(flag "-D") |
| 12 | + endif() |
| 13 | + separate_arguments(${definitions}) |
| 14 | + set(result "") |
| 15 | + foreach(d IN LISTS ${definitions}) |
| 16 | + if(NOT d) |
| 17 | + continue() |
| 18 | + endif() |
| 19 | + if(NOT d MATCHES "${flag}.*") |
| 20 | + string(PREPEND d "${flag}") |
| 21 | + endif() |
| 22 | + string(STRIP "${result} ${d}" result) |
| 23 | + endforeach() |
| 24 | + set(${definitions} "${result}" PARENT_SCOPE) |
| 25 | +endfunction() |
| 26 | + |
| 27 | +function(flags_summary) |
| 28 | + include(GetTargetInterface) |
| 29 | + get_target_interface(definitions core_interface COMPILE_DEFINITIONS) |
| 30 | + include(ProcessConfigurations) |
| 31 | + separate_by_configs(definitions) |
| 32 | + |
| 33 | + if(CMAKE_CROSSCOMPILING) |
| 34 | + set(cross_status "TRUE, for ${CMAKE_SYSTEM_NAME}, ${CMAKE_SYSTEM_PROCESSOR}") |
| 35 | + else() |
| 36 | + set(cross_status "FALSE") |
| 37 | + endif() |
| 38 | + message("Cross compiling ....................... ${cross_status}") |
| 39 | + |
| 40 | + get_property(is_multi_config GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) |
| 41 | + if(is_multi_config) |
| 42 | + list(JOIN CMAKE_CONFIGURATION_TYPES ", " configs) |
| 43 | + message("Available build configurations ........ ${configs}") |
| 44 | + if(CMAKE_GENERATOR MATCHES "Visual Studio") |
| 45 | + set(default_config "Debug") |
| 46 | + else() |
| 47 | + list(GET CMAKE_CONFIGURATION_TYPES 0 default_config) |
| 48 | + endif() |
| 49 | + message("Default build configuration ........... ${default_config}") |
| 50 | + string(TOUPPER "${default_config}" config_uppercase) |
| 51 | + else() |
| 52 | + message("Build configuration ................... ${CMAKE_BUILD_TYPE}") |
| 53 | + string(TOUPPER "${CMAKE_BUILD_TYPE}" config_uppercase) |
| 54 | + endif() |
| 55 | + |
| 56 | + string(STRIP "${definitions_ALL} ${definitions_${config_uppercase}}" combined_cpp_flags) |
| 57 | + normalize_preprocessor_definitions(combined_cpp_flags) |
| 58 | + message("Preprocessor defined macros ........... ${combined_cpp_flags}") |
| 59 | + |
| 60 | + message("C compiler ............................ ${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}, ${CMAKE_C_COMPILER}") |
| 61 | + string(STRIP "${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_${config_uppercase}}" combined_c_flags) |
| 62 | + list(JOIN DEPENDS_C_COMPILER_FLAGS " " depends_c_flags) |
| 63 | + string(STRIP "${combined_c_flags} ${depends_c_flags}" combined_c_flags) |
| 64 | + get_target_interface(common_compile_options core_interface COMPILE_OPTIONS) |
| 65 | + string(STRIP "${combined_c_flags} ${common_compile_options}" combined_c_flags) |
| 66 | + message("C compiler flags ...................... ${combined_c_flags}") |
| 67 | + |
| 68 | + message("C++ compiler .......................... ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}, ${CMAKE_CXX_COMPILER}") |
| 69 | + string(STRIP "${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_${config_uppercase}}" combined_cxx_flags) |
| 70 | + list(JOIN DEPENDS_CXX_COMPILER_FLAGS " " depends_cxx_flags) |
| 71 | + string(STRIP "${combined_cxx_flags} ${depends_cxx_flags}" combined_cxx_flags) |
| 72 | + string(STRIP "${combined_cxx_flags} ${common_compile_options}" combined_cxx_flags) |
| 73 | + message("C++ compiler flags .................... ${combined_cxx_flags}") |
| 74 | + |
| 75 | + get_target_interface(common_link_options core_interface LINK_OPTIONS) |
| 76 | + string(STRIP "${CMAKE_EXE_LINKER_FLAGS} ${common_link_options}" combined_linker_flags) |
| 77 | + message("Linker flags .......................... ${combined_linker_flags}") |
| 78 | +endfunction() |
0 commit comments