blob: de0c24135d7f27d3a27779565acefa4e2d25f75c [file] [log] [blame]
Damjan Marion612dd6a2018-07-30 12:45:07 +02001# 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 Marionc30f3002021-12-02 14:03:02 +010014cmake_minimum_required(VERSION 3.13)
Damjan Marion612dd6a2018-07-30 12:45:07 +020015
Damjan Marion8cb5d362022-04-14 22:18:19 +020016set(CMAKE_C_COMPILER_NAMES clang gcc cc)
Damjan Marion4ba16a42020-04-28 13:29:37 +020017
Damjan Marion612dd6a2018-07-30 12:45:07 +020018project(vpp C)
19
Damjan Marion5546e432021-09-30 20:04:14 +020020if(NOT DEFINED CMAKE_INSTALL_LIBDIR AND EXISTS "/etc/debian_version")
21 set(CMAKE_INSTALL_LIBDIR "lib/${CMAKE_LIBRARY_ARCHITECTURE}")
22endif()
23
Damjan Marion612dd6a2018-07-30 12:45:07 +020024include(CheckCCompilerFlag)
Damjan Marionaf7892c2020-10-22 14:23:47 +020025include(CheckIPOSupported)
Nick Browne3cf4d02021-09-15 14:25:40 +010026include(GNUInstallDirs)
Damjan Marionff426932019-01-26 14:12:25 +010027include(cmake/misc.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +020028include(cmake/cpu.cmake)
29include(cmake/ccache.cmake)
Damjan Marion612dd6a2018-07-30 12:45:07 +020030
31##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +020032# VPP Version
33##############################################################################
34execute_process(
35 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
36 COMMAND scripts/version
37 OUTPUT_VARIABLE VPP_VERSION
38 OUTPUT_STRIP_TRAILING_WHITESPACE
39)
40string(REPLACE "-" ";" VPP_LIB_VERSION ${VPP_VERSION})
41list(GET VPP_LIB_VERSION 0 VPP_LIB_VERSION)
42
43##############################################################################
Damjan Marion8cb5d362022-04-14 22:18:19 +020044# compiler specifics
45##############################################################################
46
47set(MIN_SUPPORTED_CLANG_C_COMPILER_VERSION 9.0.0)
48set(MIN_SUPPORTED_GNU_C_COMPILER_VERSION 9.0.0)
49
50if(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()
54elseif(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()
58else()
59 message(WARNING "WARNING: Unsupported C compiler `${CMAKE_C_COMPILER_ID}` is used")
60 set (PRINT_MIN_C_COMPILER_VER TRUE)
61endif()
62if (COMPILER_TOO_OLD)
63 message(WARNING "WARNING: C compiler version is too old and it's usage may result")
64 message(WARNING " in sub-optimal binaries or lack of support for specific CPU types.")
65 set (PRINT_MIN_C_COMPILER_VER TRUE)
66endif()
67
68if (PRINT_MIN_C_COMPILER_VER)
69 string (APPEND _t "Supported C compilers are ")
70 string (APPEND _t "Clang ${MIN_SUPPORTED_CLANG_C_COMPILER_VERSION} or higher ")
71 string (APPEND _t "and GNU ${MIN_SUPPORTED_GNU_C_COMPILER_VERSION} or higher.")
72 message(WARNING " ${_t}")
73 unset (_t)
74endif()
75
76##############################################################################
Damjan Mariondd395292019-01-15 00:36:03 +010077# cross compiling
78##############################################################################
79if(CMAKE_CROSSCOMPILING)
80 set(CMAKE_IGNORE_PATH
81 /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/
82 /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/lib/
83 )
84endif()
Damjan Marion64911362019-01-18 17:09:44 +010085set(CMAKE_C_COMPILER_TARGET ${CMAKE_SYSTEM_PROCESSOR}-linux-gnu)
Damjan Mariondd395292019-01-15 00:36:03 +010086
87##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +020088# build config
89##############################################################################
Damjan Marion847d5282019-01-17 18:25:11 +010090check_c_compiler_flag("-Wno-address-of-packed-member"
91 compiler_flag_no_address_of_packed_member)
Nick Browne3cf4d02021-09-15 14:25:40 +010092set(VPP_RUNTIME_DIR ${CMAKE_INSTALL_BINDIR} CACHE STRING "Relative runtime directory path")
93set(VPP_LIBRARY_DIR ${CMAKE_INSTALL_LIBDIR} CACHE STRING "Relative library directory path")
Damjan Marion847d5282019-01-17 18:25:11 +010094
Damjan Marion599efc62020-05-07 16:49:45 +020095set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_RUNTIME_DIR})
96set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_LIBRARY_DIR})
Damjan Marion88b2e362021-04-29 18:47:25 +020097set(VPP_BINARY_DIR ${CMAKE_BINARY_DIR}/CMakeFiles)
Damjan Marion99704b52021-12-09 11:34:44 +010098set(PYENV PYTHONPYCACHEPREFIX=${CMAKE_BINARY_DIR}/CMakeFiles/__pycache__)
Damjan Marion612dd6a2018-07-30 12:45:07 +020099
Damjan Marion847d5282019-01-17 18:25:11 +0100100if (CMAKE_BUILD_TYPE)
Damjan Marion9c412e92021-12-03 14:07:41 +0100101 add_compile_options(-g -Werror -Wall)
Damjan Marion33ed3e42018-08-27 15:59:30 +0200102endif()
103
Damjan Marion847d5282019-01-17 18:25:11 +0100104if (compiler_flag_no_address_of_packed_member)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200105 add_compile_options(-Wno-address-of-packed-member)
Damjan Marion847d5282019-01-17 18:25:11 +0100106endif()
107
Damjan Marion0d39cba2021-05-10 14:51:44 +0200108string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LC)
Damjan Marion847d5282019-01-17 18:25:11 +0100109string(TOUPPER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_UC)
110
Damjan Marion0d39cba2021-05-10 14:51:44 +0200111set(CMAKE_C_FLAGS_RELEASE "")
112set(CMAKE_C_FLAGS_DEBUG "")
Damjan Marion952a7b82019-11-19 17:58:36 +0100113
Damjan Marion0d39cba2021-05-10 14:51:44 +0200114if (${CMAKE_BUILD_TYPE_LC} MATCHES "release")
115 add_compile_options(-O3 -fstack-protector -fno-common)
116 add_compile_definitions(_FORTIFY_SOURCE=2)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200117elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "debug")
118 add_compile_options(-O0 -fstack-protector -fno-common)
119 add_compile_definitions(CLIB_DEBUG)
120elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "coverity")
121 add_compile_options(-O0)
122 add_compile_definitions(__COVERITY__)
123elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "gcov")
124 add_compile_options(-O0 -fprofile-arcs -ftest-coverage)
125 add_compile_definitions(CLIB_DEBUG CLIB_GCOV)
126endif()
127
128set(BUILD_TYPES release debug coverity gcov)
Damjan Marion3a533cd2021-05-03 12:40:27 +0200129string(REPLACE ";" " " BUILD_TYPES_STR "${BUILD_TYPES}")
Damjan Marion952a7b82019-11-19 17:58:36 +0100130set_property(CACHE CMAKE_BUILD_TYPE PROPERTY
Damjan Marion3a533cd2021-05-03 12:40:27 +0200131 HELPSTRING "Build type - valid options are: ${BUILD_TYPES_STR}")
Damjan Marion952a7b82019-11-19 17:58:36 +0100132
Damjan Marion612dd6a2018-07-30 12:45:07 +0200133##############################################################################
Damjan Marionaf7892c2020-10-22 14:23:47 +0200134# link time optimizations
135##############################################################################
136if (CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE")
137 check_ipo_supported(RESULT _result)
138 if (_result)
139 option(VPP_USE_LTO "Link time optimization of release binaries" ON)
140 endif()
141endif()
142
Damjan Marion1e267242021-11-06 17:09:37 +0100143if(VPP_USE_LTO)
144 check_c_compiler_flag("-Wno-stringop-overflow"
145 compiler_flag_no_stringop_overflow)
146endif()
Damjan Marionaf7892c2020-10-22 14:23:47 +0200147##############################################################################
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200148# sanitizers
149##############################################################################
150
Damjan Marion599efc62020-05-07 16:49:45 +0200151option(VPP_ENABLE_SANITIZE_ADDR "Enable Address Sanitizer" OFF)
Benoît Ganne173484f2020-06-16 12:05:07 +0200152set(VPP_SANITIZE_ADDR_OPTIONS
Damjan Marionec3a3f12020-05-21 19:09:13 +0200153 "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1:detect_leaks=0"
154 CACHE
155 STRING "Address sanitizer arguments"
156)
157
Damjan Marion599efc62020-05-07 16:49:45 +0200158if (VPP_ENABLE_SANITIZE_ADDR)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200159 add_compile_options(-fsanitize=address)
Damjan Marionc30f3002021-12-02 14:03:02 +0100160 add_link_options(-fsanitize=address)
Damjan Marion599efc62020-05-07 16:49:45 +0200161endif (VPP_ENABLE_SANITIZE_ADDR)
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200162
163##############################################################################
Benoît Gannef89bbbe2021-03-04 14:31:03 +0100164# trajectory trace
165##############################################################################
166
167option(VPP_ENABLE_TRAJECTORY_TRACE "Build vpp with trajectory tracing enabled" OFF)
168if(VPP_ENABLE_TRAJECTORY_TRACE)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200169 add_compile_definitions(VLIB_BUFFER_TRACE_TRAJECTORY=1)
Benoît Gannef89bbbe2021-03-04 14:31:03 +0100170endif()
171
172##############################################################################
Ole Troan94323402021-11-11 19:22:12 +0100173# unittest with clang ode coverage
174##############################################################################
175
176if("${CMAKE_VERSION}" VERSION_GREATER_EQUAL "3.13" AND "${CMAKE_C_COMPILER_ID}" MATCHES "(Apple)?[Cc]lang")
177 option(VPP_BUILD_TESTS_WITH_COVERAGE "Build unit tests with code coverage" OFF)
178endif()
179
180##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200181# install config
182##############################################################################
Nathan Moos2c919222021-01-15 13:28:34 -0800183option(VPP_SET_RPATH "Set rpath for resulting binaries and libraries." ON)
184if(VPP_SET_RPATH)
Damjan Marion5546e432021-09-30 20:04:14 +0200185 set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${VPP_LIBRARY_DIR}")
Nathan Moos2c919222021-01-15 13:28:34 -0800186endif()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200187set(CMAKE_INSTALL_MESSAGE NEVER)
188
Damjan Marion612dd6a2018-07-30 12:45:07 +0200189include_directories (
190 ${CMAKE_SOURCE_DIR}
Damjan Marion88b2e362021-04-29 18:47:25 +0200191 ${VPP_BINARY_DIR}
Damjan Marion612dd6a2018-07-30 12:45:07 +0200192)
193set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "vpp")
194
195set(THREADS_PREFER_PTHREAD_FLAG ON)
196find_package(Threads REQUIRED)
Damjan Marion612dd6a2018-07-30 12:45:07 +0200197
Damjan Marion1ee346a2019-03-18 17:06:51 +0100198include(cmake/syscall.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +0200199include(cmake/api.cmake)
Damjan Marion4553c952018-08-26 11:04:40 +0200200include(cmake/library.cmake)
201include(cmake/exec.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +0200202include(cmake/plugin.cmake)
Damjan Marion612dd6a2018-07-30 12:45:07 +0200203
204##############################################################################
Damjan Marion0abd4a22018-08-28 12:57:29 +0200205# subdirs - order matters
Damjan Marion612dd6a2018-07-30 12:45:07 +0200206##############################################################################
Damjan Marion599efc62020-05-07 16:49:45 +0200207option(VPP_HOST_TOOLS_ONLY "Build only host tools" OFF)
208if(VPP_HOST_TOOLS_ONLY)
209 set(SUBDIRS tools/vppapigen cmake)
210elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
Klement Sekeraefd4d702021-04-20 19:21:36 +0200211 find_package(OpenSSL)
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200212 set(SUBDIRS
Arthur de Kerhorb2819dd2021-09-20 14:47:47 +0200213 vppinfra svm vlib vlibmemory vlibapi vnet vpp vat vat2 vcl vpp-api
214 plugins tools/vppapigen tools/g2 tools/perftool cmake pkg
Dave Barach0729f642019-03-24 16:25:03 -0400215 tools/appimage
Damjan Marion0fa900e2018-09-12 12:12:36 +0200216 )
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200217elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
218 set(SUBDIRS vppinfra)
219else()
220 message(FATAL_ERROR "Unsupported system: ${CMAKE_SYSTEM_NAME}")
221endif()
222
223foreach(DIR ${SUBDIRS})
Damjan Marion88b2e362021-04-29 18:47:25 +0200224 add_subdirectory(${DIR} ${VPP_BINARY_DIR}/${DIR})
Damjan Marion0abd4a22018-08-28 12:57:29 +0200225endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200226
Damjan Marioneeadc142018-09-13 20:02:12 +0200227##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +0200228# detect if we are inside git repo and add configure dependency
229##############################################################################
230execute_process(
231 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
232 COMMAND git rev-parse --show-toplevel
233 OUTPUT_VARIABLE VPP_GIT_TOPLEVEL_DIR
234 OUTPUT_STRIP_TRAILING_WHITESPACE
Damjan Marion6077c972019-01-28 17:55:59 +0100235 ERROR_QUIET
Damjan Marionc6c02462018-08-31 17:38:57 +0200236)
237
238if (VPP_GIT_TOPLEVEL_DIR)
239 set_property(
240 DIRECTORY APPEND PROPERTY
241 CMAKE_CONFIGURE_DEPENDS ${VPP_GIT_TOPLEVEL_DIR}/.git/index
242 )
243endif()
244
245##############################################################################
Damjan Marion88b2e362021-04-29 18:47:25 +0200246# custom targets
247##############################################################################
248
249add_custom_target(run
250 COMMAND ./${VPP_RUNTIME_DIR}/vpp -c startup.conf
251 COMMENT "Starting VPP..."
252 USES_TERMINAL
253)
254
255add_custom_target(debug
256 COMMAND gdb --args ./${VPP_RUNTIME_DIR}/vpp -c startup.conf
257 COMMENT "Starting VPP in the debugger..."
258 USES_TERMINAL
259)
260
Damjan Marionc8983242021-04-30 19:31:09 +0200261add_custom_target(config
Damjan Marion88b2e362021-04-29 18:47:25 +0200262 COMMAND ccmake ${CMAKE_BINARY_DIR}
263 COMMENT "Starting Configuration TUI..."
264 USES_TERMINAL
265)
266
Damjan Marion3a533cd2021-05-03 12:40:27 +0200267foreach(bt ${BUILD_TYPES})
268 add_custom_target(set-build-type-${bt}
269 COMMAND cmake -DCMAKE_BUILD_TYPE:STRING=${bt} .
270 COMMENT "Changing build type to ${bt}"
271 USES_TERMINAL
272 )
273endforeach()
274
Damjan Marion0d39cba2021-05-10 14:51:44 +0200275mark_as_advanced(CLEAR
276 CMAKE_C_FLAGS
277 CMAKE_C_COMPILER
278 CMAKE_EXPORT_COMPILE_COMMANDS
279 CMAKE_INSTALL_PREFIX
280 CMAKE_LINKER
281 CMAKE_SHARED_LINKER_FLAGS
282 CMAKE_VERBOSE_MAKEFILE
283)
284
Damjan Marion88b2e362021-04-29 18:47:25 +0200285##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +0200286# print configuration
287##############################################################################
288message(STATUS "Configuration:")
Damjan Marionf2912e02021-07-16 12:44:22 +0200289pr("VPP version" ${VPP_VERSION})
290pr("VPP library version" ${VPP_LIB_VERSION})
291pr("GIT toplevel dir" ${VPP_GIT_TOPLEVEL_DIR})
292pr("Build type" ${CMAKE_BUILD_TYPE})
Damjan Mariond545f042022-03-25 00:05:53 +0100293pr("C compiler" "${CMAKE_C_COMPILER} (${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION})")
Damjan Marionf2912e02021-07-16 12:44:22 +0200294pr("C flags" ${CMAKE_C_FLAGS}${CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_UC}})
295pr("Linker flags (apps)" ${CMAKE_EXE_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}})
296pr("Linker flags (libs)" ${CMAKE_SHARED_LINKER_FLAGS} ${CMAKE_SHARED_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}})
297pr("Host processor" ${CMAKE_HOST_SYSTEM_PROCESSOR})
298pr("Target processor" ${CMAKE_SYSTEM_PROCESSOR})
299pr("Prefix path" ${CMAKE_PREFIX_PATH})
300pr("Install prefix" ${CMAKE_INSTALL_PREFIX})
Damjan Marion2e3a79f2021-11-05 20:08:05 +0100301pr("Library dir" ${VPP_LIBRARY_DIR})