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 | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 14 | cmake_minimum_required(VERSION 3.10) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 15 | |
Damjan Marion | d22f190 | 2021-04-14 18:48:22 +0200 | [diff] [blame^] | 16 | set(CMAKE_C_COMPILER_NAMES |
| 17 | clang-12 |
| 18 | clang-11 |
| 19 | clang-10 |
| 20 | clang-9 |
| 21 | gcc-10 |
| 22 | gcc-9 |
| 23 | cc |
| 24 | ) |
Damjan Marion | 4ba16a4 | 2020-04-28 13:29:37 +0200 | [diff] [blame] | 25 | |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 26 | project(vpp C) |
| 27 | |
| 28 | include(CheckCCompilerFlag) |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 29 | include(CheckIPOSupported) |
Damjan Marion | ff42693 | 2019-01-26 14:12:25 +0100 | [diff] [blame] | 30 | include(cmake/misc.cmake) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 31 | include(cmake/cpu.cmake) |
| 32 | include(cmake/ccache.cmake) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 33 | |
| 34 | ############################################################################## |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 35 | # VPP Version |
| 36 | ############################################################################## |
| 37 | execute_process( |
| 38 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} |
| 39 | COMMAND scripts/version |
| 40 | OUTPUT_VARIABLE VPP_VERSION |
| 41 | OUTPUT_STRIP_TRAILING_WHITESPACE |
| 42 | ) |
| 43 | string(REPLACE "-" ";" VPP_LIB_VERSION ${VPP_VERSION}) |
| 44 | list(GET VPP_LIB_VERSION 0 VPP_LIB_VERSION) |
| 45 | |
| 46 | ############################################################################## |
Damjan Marion | dd39529 | 2019-01-15 00:36:03 +0100 | [diff] [blame] | 47 | # cross compiling |
| 48 | ############################################################################## |
| 49 | if(CMAKE_CROSSCOMPILING) |
| 50 | set(CMAKE_IGNORE_PATH |
| 51 | /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/ |
| 52 | /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/lib/ |
| 53 | ) |
| 54 | endif() |
Damjan Marion | 6491136 | 2019-01-18 17:09:44 +0100 | [diff] [blame] | 55 | set(CMAKE_C_COMPILER_TARGET ${CMAKE_SYSTEM_PROCESSOR}-linux-gnu) |
Damjan Marion | dd39529 | 2019-01-15 00:36:03 +0100 | [diff] [blame] | 56 | |
| 57 | ############################################################################## |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 58 | # build config |
| 59 | ############################################################################## |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 60 | check_c_compiler_flag("-Wno-address-of-packed-member" |
| 61 | compiler_flag_no_address_of_packed_member) |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 62 | set(VPP_RUNTIME_DIR "bin" CACHE STRING "Relative runtime directory path") |
| 63 | set(VPP_LIBRARY_DIR "lib" CACHE STRING "Relative library directory path") |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 64 | |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 65 | set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_RUNTIME_DIR}) |
| 66 | set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_LIBRARY_DIR}) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 67 | |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 68 | if (CMAKE_BUILD_TYPE) |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 69 | set(CMAKE_C_FLAGS "-g -fPIC -Werror -Wall ${CMAKE_C_FLAGS}") |
Damjan Marion | 33ed3e4 | 2018-08-27 15:59:30 +0200 | [diff] [blame] | 70 | endif() |
| 71 | |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 72 | if (compiler_flag_no_address_of_packed_member) |
| 73 | set(CMAKE_C_FLAGS "-Wno-address-of-packed-member ${CMAKE_C_FLAGS}") |
| 74 | endif() |
| 75 | |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 76 | # release |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 77 | list(APPEND BUILD_TYPES "release") |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 78 | string(CONCAT CMAKE_C_FLAGS_RELEASE |
| 79 | "-O2 " |
| 80 | "-fstack-protector " |
Neale Ranns | 2a81d9a | 2021-01-20 09:03:30 +0000 | [diff] [blame] | 81 | "-D_FORTIFY_SOURCE=2 " |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 82 | "-fno-common " |
| 83 | ) |
| 84 | |
| 85 | string(CONCAT CMAKE_EXE_LINKER_FLAGS_RELEASE "-pie") |
| 86 | |
| 87 | # debug |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 88 | list(APPEND BUILD_TYPES "debug") |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 89 | string(CONCAT CMAKE_C_FLAGS_DEBUG |
| 90 | "-O0 " |
| 91 | "-DCLIB_DEBUG " |
| 92 | "-fstack-protector " |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 93 | "-fno-common " |
| 94 | ) |
| 95 | |
| 96 | # coverity |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 97 | list(APPEND BUILD_TYPES "coverity") |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 98 | string(CONCAT CMAKE_C_FLAGS_COVERITY "-O2 -D__COVERITY__") |
| 99 | |
| 100 | # gcov |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 101 | list(APPEND BUILD_TYPES "gcov") |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 102 | string(CONCAT CMAKE_C_FLAGS_GCOV |
| 103 | "-O0 " |
| 104 | "-DCLIB_DEBUG " |
| 105 | "-DCLIB_GCOV " |
| 106 | "-fprofile-arcs " |
| 107 | "-ftest-coverage ") |
| 108 | |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 109 | string(TOUPPER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_UC) |
| 110 | |
Damjan Marion | 952a7b8 | 2019-11-19 17:58:36 +0100 | [diff] [blame] | 111 | |
| 112 | string(REPLACE ";" " " BUILD_TYPES "${BUILD_TYPES}") |
| 113 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY |
| 114 | HELPSTRING "Build type - valid options are: ${BUILD_TYPES}") |
| 115 | |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 116 | ############################################################################## |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 117 | # link time optimizations |
| 118 | ############################################################################## |
| 119 | if (CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE") |
| 120 | check_ipo_supported(RESULT _result) |
| 121 | if (_result) |
| 122 | option(VPP_USE_LTO "Link time optimization of release binaries" ON) |
| 123 | endif() |
| 124 | endif() |
| 125 | |
| 126 | ############################################################################## |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 127 | # sanitizers |
| 128 | ############################################################################## |
| 129 | |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 130 | option(VPP_ENABLE_SANITIZE_ADDR "Enable Address Sanitizer" OFF) |
Benoît Ganne | 173484f | 2020-06-16 12:05:07 +0200 | [diff] [blame] | 131 | set(VPP_SANITIZE_ADDR_OPTIONS |
Damjan Marion | ec3a3f1 | 2020-05-21 19:09:13 +0200 | [diff] [blame] | 132 | "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1:detect_leaks=0" |
| 133 | CACHE |
| 134 | STRING "Address sanitizer arguments" |
| 135 | ) |
| 136 | |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 137 | if (VPP_ENABLE_SANITIZE_ADDR) |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 138 | set(CMAKE_C_FLAGS "-fsanitize=address -DCLIB_SANITIZE_ADDR ${CMAKE_C_FLAGS}") |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 139 | set(CMAKE_EXE_LINKER_FLAGS "-fsanitize=address ${CMAKE_EXE_LINKER_FLAGS}") |
| 140 | set(CMAKE_SHARED_LINKER_FLAGS "-fsanitize=address ${CMAKE_SHARED_LINKER_FLAGS}") |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 141 | endif (VPP_ENABLE_SANITIZE_ADDR) |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 142 | |
| 143 | ############################################################################## |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 144 | # install config |
| 145 | ############################################################################## |
Nathan Moos | 2c91922 | 2021-01-15 13:28:34 -0800 | [diff] [blame] | 146 | option(VPP_SET_RPATH "Set rpath for resulting binaries and libraries." ON) |
| 147 | if(VPP_SET_RPATH) |
| 148 | set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") |
| 149 | endif() |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 150 | set(CMAKE_INSTALL_MESSAGE NEVER) |
| 151 | |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 152 | include_directories ( |
| 153 | ${CMAKE_SOURCE_DIR} |
| 154 | ${CMAKE_BINARY_DIR} |
| 155 | ${CMAKE_BINARY_DIR}/include |
| 156 | ) |
| 157 | set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "vpp") |
| 158 | |
| 159 | set(THREADS_PREFER_PTHREAD_FLAG ON) |
| 160 | find_package(Threads REQUIRED) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 161 | |
Damjan Marion | 1ee346a | 2019-03-18 17:06:51 +0100 | [diff] [blame] | 162 | include(cmake/syscall.cmake) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 163 | include(cmake/api.cmake) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 164 | include(cmake/library.cmake) |
| 165 | include(cmake/exec.cmake) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 166 | include(cmake/plugin.cmake) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 167 | |
| 168 | ############################################################################## |
Damjan Marion | 0abd4a2 | 2018-08-28 12:57:29 +0200 | [diff] [blame] | 169 | # subdirs - order matters |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 170 | ############################################################################## |
Damjan Marion | 599efc6 | 2020-05-07 16:49:45 +0200 | [diff] [blame] | 171 | option(VPP_HOST_TOOLS_ONLY "Build only host tools" OFF) |
| 172 | if(VPP_HOST_TOOLS_ONLY) |
| 173 | set(SUBDIRS tools/vppapigen cmake) |
| 174 | elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") |
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 175 | find_package(OpenSSL REQUIRED) |
| 176 | set(SUBDIRS |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 177 | vppinfra svm vlib vlibmemory vlibapi vnet vpp vat vat2 vcl plugins |
Damjan Marion | 5505ee8 | 2020-05-07 09:49:27 +0200 | [diff] [blame] | 178 | vpp-api tools/vppapigen tools/g2 tools/perftool cmake pkg |
Dave Barach | 0729f64 | 2019-03-24 16:25:03 -0400 | [diff] [blame] | 179 | tools/appimage |
Damjan Marion | 0fa900e | 2018-09-12 12:12:36 +0200 | [diff] [blame] | 180 | ) |
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 181 | elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") |
| 182 | set(SUBDIRS vppinfra) |
| 183 | else() |
| 184 | message(FATAL_ERROR "Unsupported system: ${CMAKE_SYSTEM_NAME}") |
| 185 | endif() |
| 186 | |
| 187 | foreach(DIR ${SUBDIRS}) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 188 | add_subdirectory(${DIR}) |
Damjan Marion | 0abd4a2 | 2018-08-28 12:57:29 +0200 | [diff] [blame] | 189 | endforeach() |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 190 | |
Damjan Marion | eeadc14 | 2018-09-13 20:02:12 +0200 | [diff] [blame] | 191 | ############################################################################## |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 192 | # detect if we are inside git repo and add configure dependency |
| 193 | ############################################################################## |
| 194 | execute_process( |
| 195 | WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} |
| 196 | COMMAND git rev-parse --show-toplevel |
| 197 | OUTPUT_VARIABLE VPP_GIT_TOPLEVEL_DIR |
| 198 | OUTPUT_STRIP_TRAILING_WHITESPACE |
Damjan Marion | 6077c97 | 2019-01-28 17:55:59 +0100 | [diff] [blame] | 199 | ERROR_QUIET |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 200 | ) |
| 201 | |
| 202 | if (VPP_GIT_TOPLEVEL_DIR) |
| 203 | set_property( |
| 204 | DIRECTORY APPEND PROPERTY |
| 205 | CMAKE_CONFIGURE_DEPENDS ${VPP_GIT_TOPLEVEL_DIR}/.git/index |
| 206 | ) |
| 207 | endif() |
| 208 | |
| 209 | ############################################################################## |
| 210 | # print configuration |
| 211 | ############################################################################## |
| 212 | message(STATUS "Configuration:") |
| 213 | pr("VPP version" "${VPP_VERSION}") |
| 214 | pr("VPP library version" "${VPP_LIB_VERSION}") |
| 215 | pr("GIT toplevel dir" "${VPP_GIT_TOPLEVEL_DIR}") |
Damjan Marion | 847d528 | 2019-01-17 18:25:11 +0100 | [diff] [blame] | 216 | pr("Build type" "${CMAKE_BUILD_TYPE}") |
| 217 | pr("C flags" "${CMAKE_C_FLAGS}${CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_UC}}") |
Damjan Marion | 2baa115 | 2019-11-07 11:32:16 +0100 | [diff] [blame] | 218 | pr("Linker flags (apps)" "${CMAKE_EXE_LINKER_FLAGS}${CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}") |
| 219 | pr("Linker flags (libs)" "${CMAKE_SHARED_LINKER_FLAGS}${CMAKE_SHARED_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}") |
Damjan Marion | dd39529 | 2019-01-15 00:36:03 +0100 | [diff] [blame] | 220 | pr("Host processor" "${CMAKE_HOST_SYSTEM_PROCESSOR}") |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 221 | pr("Target processor" "${CMAKE_SYSTEM_PROCESSOR}") |
Damjan Marion | 4a6cb83 | 2018-09-18 18:41:38 +0200 | [diff] [blame] | 222 | pr("Prefix path" "${CMAKE_PREFIX_PATH}") |
Damjan Marion | c6c0246 | 2018-08-31 17:38:57 +0200 | [diff] [blame] | 223 | pr("Install prefix" "${CMAKE_INSTALL_PREFIX}") |