Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1 | # Copyright (c) 2018 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
Damjan Marion | c30f300 | 2021-12-02 14:03:02 +0100 | [diff] [blame] | 14 | cmake_minimum_required(VERSION 3.13) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 15 | |
Damjan Marion | 8cb5d36 | 2022-04-14 22:18:19 +0200 | [diff] [blame] | 16 | set(CMAKE_C_COMPILER_NAMES clang gcc cc) |
Damjan Marion | 4ba16a4 | 2020-04-28 13:29:37 +0200 | [diff] [blame] | 17 | |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 18 | project(vpp C) |
| 19 | |
Damjan Marion | 5546e43 | 2021-09-30 20:04:14 +0200 | [diff] [blame] | 20 | if(NOT DEFINED CMAKE_INSTALL_LIBDIR AND EXISTS "/etc/debian_version") |
| 21 | set(CMAKE_INSTALL_LIBDIR "lib/${CMAKE_LIBRARY_ARCHITECTURE}") |
| 22 | endif() |
| 23 | |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 24 | include(CheckCCompilerFlag) |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 25 | include(CheckIPOSupported) |
Nick Brown | e3cf4d0 | 2021-09-15 14:25:40 +0100 | [diff] [blame] | 26 | include(GNUInstallDirs) |
Damjan Marion | ff42693 | 2019-01-26 14:12:25 +0100 | [diff] [blame] | 27 | include(cmake/misc.cmake) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 28 | include(cmake/cpu.cmake) |
| 29 | include(cmake/ccache.cmake) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 30 | |
| 31 | ############################################################################## |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 32 | # VPP Version |
| 33 | ############################################################################## |
| 34 | execute_process( |
| 35 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} |
| 36 | COMMAND scripts/version |
| 37 | OUTPUT_VARIABLE VPP_VERSION |
| 38 | OUTPUT_STRIP_TRAILING_WHITESPACE |
| 39 | ) |
| 40 | string(REPLACE "-" ";" VPP_LIB_VERSION ${VPP_VERSION}) |
| 41 | list(GET VPP_LIB_VERSION 0 VPP_LIB_VERSION) |
| 42 | |
| 43 | ############################################################################## |
Damjan Marion | 8cb5d36 | 2022-04-14 22:18:19 +0200 | [diff] [blame] | 44 | # compiler specifics |
| 45 | ############################################################################## |
| 46 | |
| 47 | set(MIN_SUPPORTED_CLANG_C_COMPILER_VERSION 9.0.0) |
| 48 | set(MIN_SUPPORTED_GNU_C_COMPILER_VERSION 9.0.0) |
| 49 | |
| 50 | if(CMAKE_C_COMPILER_ID STREQUAL "Clang") |
| 51 | if (CMAKE_C_COMPILER_VERSION VERSION_LESS MIN_SUPPORTED_CLANG_C_COMPILER_VERSION) |
| 52 | set(COMPILER_TOO_OLD TRUE) |
| 53 | endif() |
| 54 | elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU") |
| 55 | if (CMAKE_C_COMPILER_VERSION VERSION_LESS MIN_SUPPORTED_GNU_C_COMPILER_VERSION) |
| 56 | set(COMPILER_TOO_OLD TRUE) |
| 57 | endif() |
Dave Wallace | 000a4eb | 2022-08-25 17:42:24 -0400 | [diff] [blame] | 58 | set(GCC_STRING_OVERFLOW_WARNING_DISABLE_VERSION 10.0.0) |
| 59 | if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL GCC_STRING_OVERFLOW_WARNING_DISABLE_VERSION) |
| 60 | add_compile_options(-Wno-stringop-overflow) |
| 61 | endif() |
Jieqiang Wang | 92ab407 | 2023-07-24 15:42:22 +0800 | [diff] [blame] | 62 | set(GCC_STRING_OVERREAD_WARNING_DISABLE_VERSION 12.0.0) |
| 63 | if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL GCC_STRING_OVERREAD_WARNING_DISABLE_VERSION) |
| 64 | add_compile_options(-Wno-stringop-overread) |
| 65 | endif() |
| 66 | set(GCC_ARRAY_BOUNDS_WARNING_DISABLE_VERSION 12.0.0) |
| 67 | if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL GCC_ARRAY_BOUNDS_WARNING_DISABLE_VERSION) |
| 68 | add_compile_options(-Wno-array-bounds) |
| 69 | endif() |
Damjan Marion | 8cb5d36 | 2022-04-14 22:18:19 +0200 | [diff] [blame] | 70 | else() |
| 71 | message(WARNING "WARNING: Unsupported C compiler `${CMAKE_C_COMPILER_ID}` is used") |
| 72 | set (PRINT_MIN_C_COMPILER_VER TRUE) |
| 73 | endif() |
| 74 | if (COMPILER_TOO_OLD) |
| 75 | message(WARNING "WARNING: C compiler version is too old and it's usage may result") |
| 76 | message(WARNING " in sub-optimal binaries or lack of support for specific CPU types.") |
| 77 | set (PRINT_MIN_C_COMPILER_VER TRUE) |
| 78 | endif() |
| 79 | |
| 80 | if (PRINT_MIN_C_COMPILER_VER) |
| 81 | string (APPEND _t "Supported C compilers are ") |
| 82 | string (APPEND _t "Clang ${MIN_SUPPORTED_CLANG_C_COMPILER_VERSION} or higher ") |
| 83 | string (APPEND _t "and GNU ${MIN_SUPPORTED_GNU_C_COMPILER_VERSION} or higher.") |
| 84 | message(WARNING " ${_t}") |
| 85 | unset (_t) |
| 86 | endif() |
| 87 | |
| 88 | ############################################################################## |
Damjan Marion | dd39529 | 2019-01-15 00:36:03 +0100 | [diff] [blame] | 89 | # cross compiling |
| 90 | ############################################################################## |
| 91 | if(CMAKE_CROSSCOMPILING) |
| 92 | set(CMAKE_IGNORE_PATH |
| 93 | /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/ |
| 94 | /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/lib/ |
| 95 | ) |
| 96 | endif() |
Damjan Marion | 6491136 | 2019-01-18 17:09:44 +0100 | [diff] [blame] | 97 | set(CMAKE_C_COMPILER_TARGET ${CMAKE_SYSTEM_PROCESSOR}-linux-gnu) |
Damjan Marion | dd39529 | 2019-01-15 00:36:03 +0100 | [diff] [blame] | 98 | |
| 99 | ############################################################################## |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 100 | # build config |
| 101 | ############################################################################## |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 102 | check_c_compiler_flag("-Wno-address-of-packed-member" |
| 103 | compiler_flag_no_address_of_packed_member) |
Nick Brown | e3cf4d0 | 2021-09-15 14:25:40 +0100 | [diff] [blame] | 104 | set(VPP_RUNTIME_DIR ${CMAKE_INSTALL_BINDIR} CACHE STRING "Relative runtime directory path") |
| 105 | set(VPP_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR} CACHE STRING "Relative library directory path") |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 106 | |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 107 | set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_RUNTIME_DIR}) |
| 108 | set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_LIBRARY_DIR}) |
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 109 | set(VPP_BINARY_DIR ${CMAKE_BINARY_DIR}/CMakeFiles) |
Damjan Marion | 99704b5 | 2021-12-09 11:34:44 +0100 | [diff] [blame] | 110 | set(PYENV PYTHONPYCACHEPREFIX=${CMAKE_BINARY_DIR}/CMakeFiles/__pycache__) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 111 | |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 112 | if (CMAKE_BUILD_TYPE) |
Damjan Marion | 9c412e9 | 2021-12-03 14:07:41 +0100 | [diff] [blame] | 113 | add_compile_options(-g -Werror -Wall) |
Damjan Marion | 33ed3e4 | 2018-08-27 15:59:30 +0200 | [diff] [blame] | 114 | endif() |
| 115 | |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 116 | if (compiler_flag_no_address_of_packed_member) |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 117 | add_compile_options(-Wno-address-of-packed-member) |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 118 | endif() |
| 119 | |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 120 | string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LC) |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 121 | string(TOUPPER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_UC) |
| 122 | |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 123 | set(CMAKE_C_FLAGS_RELEASE "") |
| 124 | set(CMAKE_C_FLAGS_DEBUG "") |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 125 | |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 126 | if (${CMAKE_BUILD_TYPE_LC} MATCHES "release") |
| 127 | add_compile_options(-O3 -fstack-protector -fno-common) |
| 128 | add_compile_definitions(_FORTIFY_SOURCE=2) |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 129 | elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "debug") |
| 130 | add_compile_options(-O0 -fstack-protector -fno-common) |
| 131 | add_compile_definitions(CLIB_DEBUG) |
| 132 | elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "coverity") |
| 133 | add_compile_options(-O0) |
| 134 | add_compile_definitions(__COVERITY__) |
| 135 | elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "gcov") |
| 136 | add_compile_options(-O0 -fprofile-arcs -ftest-coverage) |
| 137 | add_compile_definitions(CLIB_DEBUG CLIB_GCOV) |
Dave Wallace | 1c95e12 | 2023-06-21 23:14:38 -0400 | [diff] [blame] | 138 | link_libraries(gcov) |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 139 | endif() |
| 140 | |
| 141 | set(BUILD_TYPES release debug coverity gcov) |
Damjan Marion | 3a533cd | 2021-05-03 12:40:27 +0200 | [diff] [blame] | 142 | string(REPLACE ";" " " BUILD_TYPES_STR "${BUILD_TYPES}") |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 143 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY |
Damjan Marion | 3a533cd | 2021-05-03 12:40:27 +0200 | [diff] [blame] | 144 | HELPSTRING "Build type - valid options are: ${BUILD_TYPES_STR}") |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 145 | |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 146 | ############################################################################## |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 147 | # link time optimizations |
| 148 | ############################################################################## |
| 149 | if (CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE") |
| 150 | check_ipo_supported(RESULT _result) |
| 151 | if (_result) |
| 152 | option(VPP_USE_LTO "Link time optimization of release binaries" ON) |
| 153 | endif() |
| 154 | endif() |
| 155 | |
Damjan Marion | 1e26724 | 2021-11-06 17:09:37 +0100 | [diff] [blame] | 156 | if(VPP_USE_LTO) |
| 157 | check_c_compiler_flag("-Wno-stringop-overflow" |
| 158 | compiler_flag_no_stringop_overflow) |
| 159 | endif() |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 160 | ############################################################################## |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 161 | # sanitizers |
| 162 | ############################################################################## |
| 163 | |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 164 | option(VPP_ENABLE_SANITIZE_ADDR "Enable Address Sanitizer" OFF) |
Benoît Ganne | 173484f | 2020-06-16 12:05:07 +0200 | [diff] [blame] | 165 | set(VPP_SANITIZE_ADDR_OPTIONS |
Damjan Marion | ec3a3f1 | 2020-05-21 19:09:13 +0200 | [diff] [blame] | 166 | "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1:detect_leaks=0" |
| 167 | CACHE |
| 168 | STRING "Address sanitizer arguments" |
| 169 | ) |
| 170 | |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 171 | if (VPP_ENABLE_SANITIZE_ADDR) |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 172 | add_compile_options(-fsanitize=address) |
Damjan Marion | c30f300 | 2021-12-02 14:03:02 +0100 | [diff] [blame] | 173 | add_link_options(-fsanitize=address) |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 174 | endif (VPP_ENABLE_SANITIZE_ADDR) |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 175 | |
| 176 | ############################################################################## |
Benoît Ganne | f89bbbe | 2021-03-04 14:31:03 +0100 | [diff] [blame] | 177 | # trajectory trace |
| 178 | ############################################################################## |
| 179 | |
| 180 | option(VPP_ENABLE_TRAJECTORY_TRACE "Build vpp with trajectory tracing enabled" OFF) |
| 181 | if(VPP_ENABLE_TRAJECTORY_TRACE) |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 182 | add_compile_definitions(VLIB_BUFFER_TRACE_TRAJECTORY=1) |
Benoît Ganne | f89bbbe | 2021-03-04 14:31:03 +0100 | [diff] [blame] | 183 | endif() |
| 184 | |
| 185 | ############################################################################## |
Ole Troan | 9432340 | 2021-11-11 19:22:12 +0100 | [diff] [blame] | 186 | # unittest with clang ode coverage |
| 187 | ############################################################################## |
| 188 | |
| 189 | if("${CMAKE_VERSION}" VERSION_GREATER_EQUAL "3.13" AND "${CMAKE_C_COMPILER_ID}" MATCHES "(Apple)?[Cc]lang") |
| 190 | option(VPP_BUILD_TESTS_WITH_COVERAGE "Build unit tests with code coverage" OFF) |
| 191 | endif() |
| 192 | |
| 193 | ############################################################################## |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 194 | # install config |
| 195 | ############################################################################## |
Nathan Moos | 2c91922 | 2021-01-15 13:28:34 -0800 | [diff] [blame] | 196 | option(VPP_SET_RPATH "Set rpath for resulting binaries and libraries." ON) |
| 197 | if(VPP_SET_RPATH) |
Damjan Marion | 5546e43 | 2021-09-30 20:04:14 +0200 | [diff] [blame] | 198 | set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${VPP_LIBRARY_DIR}") |
Nathan Moos | 2c91922 | 2021-01-15 13:28:34 -0800 | [diff] [blame] | 199 | endif() |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 200 | set(CMAKE_INSTALL_MESSAGE NEVER) |
| 201 | |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 202 | include_directories ( |
| 203 | ${CMAKE_SOURCE_DIR} |
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 204 | ${VPP_BINARY_DIR} |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 205 | ) |
| 206 | set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "vpp") |
| 207 | |
| 208 | set(THREADS_PREFER_PTHREAD_FLAG ON) |
| 209 | find_package(Threads REQUIRED) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 210 | |
Damjan Marion | 1ee346a | 2019-03-18 17:06:51 +0100 | [diff] [blame] | 211 | include(cmake/syscall.cmake) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 212 | include(cmake/api.cmake) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 213 | include(cmake/library.cmake) |
| 214 | include(cmake/exec.cmake) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 215 | include(cmake/plugin.cmake) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 216 | |
| 217 | ############################################################################## |
Damjan Marion | 0abd4a2 | 2018-08-28 12:57:29 +0200 | [diff] [blame] | 218 | # subdirs - order matters |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 219 | ############################################################################## |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 220 | option(VPP_HOST_TOOLS_ONLY "Build only host tools" OFF) |
| 221 | if(VPP_HOST_TOOLS_ONLY) |
| 222 | set(SUBDIRS tools/vppapigen cmake) |
Guillaume Solignac | de04e02 | 2024-01-11 13:39:11 +0100 | [diff] [blame^] | 223 | install( |
| 224 | PROGRAMS |
| 225 | vpp-api/vapi/vapi_c_gen.py |
| 226 | vpp-api/vapi/vapi_cpp_gen.py |
| 227 | vpp-api/vapi/vapi_json_parser.py |
| 228 | DESTINATION ${VPP_RUNTIME_DIR} |
| 229 | COMPONENT vpp-dev |
| 230 | ) |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 231 | elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") |
Klement Sekera | efd4d70 | 2021-04-20 19:21:36 +0200 | [diff] [blame] | 232 | find_package(OpenSSL) |
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 233 | set(SUBDIRS |
Arthur de Kerhor | b2819dd | 2021-09-20 14:47:47 +0200 | [diff] [blame] | 234 | vppinfra svm vlib vlibmemory vlibapi vnet vpp vat vat2 vcl vpp-api |
| 235 | plugins tools/vppapigen tools/g2 tools/perftool cmake pkg |
Dave Barach | 0729f64 | 2019-03-24 16:25:03 -0400 | [diff] [blame] | 236 | tools/appimage |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 237 | ) |
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 238 | elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") |
| 239 | set(SUBDIRS vppinfra) |
| 240 | else() |
| 241 | message(FATAL_ERROR "Unsupported system: ${CMAKE_SYSTEM_NAME}") |
| 242 | endif() |
| 243 | |
| 244 | foreach(DIR ${SUBDIRS}) |
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 245 | add_subdirectory(${DIR} ${VPP_BINARY_DIR}/${DIR}) |
Damjan Marion | 0abd4a2 | 2018-08-28 12:57:29 +0200 | [diff] [blame] | 246 | endforeach() |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 247 | |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 248 | ############################################################################## |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 249 | # detect if we are inside git repo and add configure dependency |
| 250 | ############################################################################## |
| 251 | execute_process( |
| 252 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} |
| 253 | COMMAND git rev-parse --show-toplevel |
| 254 | OUTPUT_VARIABLE VPP_GIT_TOPLEVEL_DIR |
| 255 | OUTPUT_STRIP_TRAILING_WHITESPACE |
Damjan Marion | 6077c97 | 2019-01-28 17:55:59 +0100 | [diff] [blame] | 256 | ERROR_QUIET |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 257 | ) |
| 258 | |
| 259 | if (VPP_GIT_TOPLEVEL_DIR) |
| 260 | set_property( |
| 261 | DIRECTORY APPEND PROPERTY |
| 262 | CMAKE_CONFIGURE_DEPENDS ${VPP_GIT_TOPLEVEL_DIR}/.git/index |
| 263 | ) |
| 264 | endif() |
| 265 | |
| 266 | ############################################################################## |
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 267 | # custom targets |
| 268 | ############################################################################## |
| 269 | |
| 270 | add_custom_target(run |
| 271 | COMMAND ./${VPP_RUNTIME_DIR}/vpp -c startup.conf |
| 272 | COMMENT "Starting VPP..." |
| 273 | USES_TERMINAL |
| 274 | ) |
| 275 | |
| 276 | add_custom_target(debug |
| 277 | COMMAND gdb --args ./${VPP_RUNTIME_DIR}/vpp -c startup.conf |
| 278 | COMMENT "Starting VPP in the debugger..." |
| 279 | USES_TERMINAL |
| 280 | ) |
| 281 | |
Damjan Marion | c898324 | 2021-04-30 19:31:09 +0200 | [diff] [blame] | 282 | add_custom_target(config |
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 283 | COMMAND ccmake ${CMAKE_BINARY_DIR} |
| 284 | COMMENT "Starting Configuration TUI..." |
| 285 | USES_TERMINAL |
| 286 | ) |
| 287 | |
Damjan Marion | 3a533cd | 2021-05-03 12:40:27 +0200 | [diff] [blame] | 288 | foreach(bt ${BUILD_TYPES}) |
| 289 | add_custom_target(set-build-type-${bt} |
| 290 | COMMAND cmake -DCMAKE_BUILD_TYPE:STRING=${bt} . |
| 291 | COMMENT "Changing build type to ${bt}" |
| 292 | USES_TERMINAL |
| 293 | ) |
| 294 | endforeach() |
| 295 | |
Damjan Marion | 0d39cba | 2021-05-10 14:51:44 +0200 | [diff] [blame] | 296 | mark_as_advanced(CLEAR |
| 297 | CMAKE_C_FLAGS |
| 298 | CMAKE_C_COMPILER |
| 299 | CMAKE_EXPORT_COMPILE_COMMANDS |
| 300 | CMAKE_INSTALL_PREFIX |
| 301 | CMAKE_LINKER |
| 302 | CMAKE_SHARED_LINKER_FLAGS |
| 303 | CMAKE_VERBOSE_MAKEFILE |
| 304 | ) |
| 305 | |
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 306 | ############################################################################## |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 307 | # print configuration |
| 308 | ############################################################################## |
| 309 | message(STATUS "Configuration:") |
Damjan Marion | f2912e0 | 2021-07-16 12:44:22 +0200 | [diff] [blame] | 310 | pr("VPP version" ${VPP_VERSION}) |
| 311 | pr("VPP library version" ${VPP_LIB_VERSION}) |
| 312 | pr("GIT toplevel dir" ${VPP_GIT_TOPLEVEL_DIR}) |
| 313 | pr("Build type" ${CMAKE_BUILD_TYPE}) |
Damjan Marion | d545f04 | 2022-03-25 00:05:53 +0100 | [diff] [blame] | 314 | pr("C compiler" "${CMAKE_C_COMPILER} (${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION})") |
Damjan Marion | f2912e0 | 2021-07-16 12:44:22 +0200 | [diff] [blame] | 315 | pr("C flags" ${CMAKE_C_FLAGS}${CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_UC}}) |
| 316 | pr("Linker flags (apps)" ${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}) |
| 317 | pr("Linker flags (libs)" ${CMAKE_SHARED_LINKER_FLAGS} ${CMAKE_SHARED_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}) |
| 318 | pr("Host processor" ${CMAKE_HOST_SYSTEM_PROCESSOR}) |
| 319 | pr("Target processor" ${CMAKE_SYSTEM_PROCESSOR}) |
| 320 | pr("Prefix path" ${CMAKE_PREFIX_PATH}) |
| 321 | pr("Install prefix" ${CMAKE_INSTALL_PREFIX}) |
Damjan Marion | 2e3a79f | 2021-11-05 20:08:05 +0100 | [diff] [blame] | 322 | pr("Library dir" ${VPP_LIBRARY_DIR}) |
Damjan Marion | 45e0539 | 2022-04-25 12:38:40 +0200 | [diff] [blame] | 323 | pr("Multiarch variants" ${MARCH_VARIANTS_NAMES}) |