blob: 846312032652885aea3af11f81168b3841c2058d [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 Marionaf7892c2020-10-22 14:23:47 +020014cmake_minimum_required(VERSION 3.10)
Damjan Marion612dd6a2018-07-30 12:45:07 +020015
Damjan Mariond22f1902021-04-14 18:48:22 +020016set(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 Marion4ba16a42020-04-28 13:29:37 +020025
Damjan Marion612dd6a2018-07-30 12:45:07 +020026project(vpp C)
27
Damjan Marion0d39cba2021-05-10 14:51:44 +020028if(CMAKE_VERSION VERSION_LESS 3.12)
29 macro(add_compile_definitions defs)
30 foreach(d ${defs})
31 add_compile_options(-D${d})
32 endforeach()
33 endmacro()
34endif()
Damjan Marion49a29252021-05-05 10:24:38 +020035
Damjan Marion612dd6a2018-07-30 12:45:07 +020036include(CheckCCompilerFlag)
Damjan Marionaf7892c2020-10-22 14:23:47 +020037include(CheckIPOSupported)
Damjan Marionff426932019-01-26 14:12:25 +010038include(cmake/misc.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +020039include(cmake/cpu.cmake)
40include(cmake/ccache.cmake)
Damjan Marion612dd6a2018-07-30 12:45:07 +020041
42##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +020043# VPP Version
44##############################################################################
45execute_process(
46 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
47 COMMAND scripts/version
48 OUTPUT_VARIABLE VPP_VERSION
49 OUTPUT_STRIP_TRAILING_WHITESPACE
50)
51string(REPLACE "-" ";" VPP_LIB_VERSION ${VPP_VERSION})
52list(GET VPP_LIB_VERSION 0 VPP_LIB_VERSION)
53
54##############################################################################
Damjan Mariondd395292019-01-15 00:36:03 +010055# cross compiling
56##############################################################################
57if(CMAKE_CROSSCOMPILING)
58 set(CMAKE_IGNORE_PATH
59 /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/
60 /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/lib/
61 )
62endif()
Damjan Marion64911362019-01-18 17:09:44 +010063set(CMAKE_C_COMPILER_TARGET ${CMAKE_SYSTEM_PROCESSOR}-linux-gnu)
Damjan Mariondd395292019-01-15 00:36:03 +010064
65##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +020066# build config
67##############################################################################
Damjan Marion847d5282019-01-17 18:25:11 +010068check_c_compiler_flag("-Wno-address-of-packed-member"
69 compiler_flag_no_address_of_packed_member)
Damjan Marion599efc62020-05-07 16:49:45 +020070set(VPP_RUNTIME_DIR "bin" CACHE STRING "Relative runtime directory path")
71set(VPP_LIBRARY_DIR "lib" CACHE STRING "Relative library directory path")
Damjan Marion847d5282019-01-17 18:25:11 +010072
Damjan Marion599efc62020-05-07 16:49:45 +020073set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_RUNTIME_DIR})
74set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_LIBRARY_DIR})
Damjan Marion88b2e362021-04-29 18:47:25 +020075set(VPP_BINARY_DIR ${CMAKE_BINARY_DIR}/CMakeFiles)
Damjan Marion7cf80af2021-05-25 19:28:21 +020076set(PYENV PYTHONPYCACHEPREFIX=${CMAKE_BINARY_DIR}/CMakeFile/__pycache__)
Damjan Marion612dd6a2018-07-30 12:45:07 +020077
Damjan Marion847d5282019-01-17 18:25:11 +010078if (CMAKE_BUILD_TYPE)
Damjan Marion0d39cba2021-05-10 14:51:44 +020079 add_compile_options(-g -fPIC -Werror -Wall)
Damjan Marion33ed3e42018-08-27 15:59:30 +020080endif()
81
Damjan Marion847d5282019-01-17 18:25:11 +010082if (compiler_flag_no_address_of_packed_member)
Damjan Marion0d39cba2021-05-10 14:51:44 +020083 add_compile_options(-Wno-address-of-packed-member)
Damjan Marion847d5282019-01-17 18:25:11 +010084endif()
85
Damjan Marion0d39cba2021-05-10 14:51:44 +020086string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LC)
Damjan Marion847d5282019-01-17 18:25:11 +010087string(TOUPPER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_UC)
88
Damjan Marion0d39cba2021-05-10 14:51:44 +020089set(CMAKE_C_FLAGS_RELEASE "")
90set(CMAKE_C_FLAGS_DEBUG "")
Damjan Marion952a7b82019-11-19 17:58:36 +010091
Damjan Marion0d39cba2021-05-10 14:51:44 +020092if (${CMAKE_BUILD_TYPE_LC} MATCHES "release")
93 add_compile_options(-O3 -fstack-protector -fno-common)
94 add_compile_definitions(_FORTIFY_SOURCE=2)
95 string(CONCAT CMAKE_EXE_LINKER_FLAGS_RELEASE "-pie")
96elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "debug")
97 add_compile_options(-O0 -fstack-protector -fno-common)
98 add_compile_definitions(CLIB_DEBUG)
99elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "coverity")
100 add_compile_options(-O0)
101 add_compile_definitions(__COVERITY__)
102elseif (${CMAKE_BUILD_TYPE_LC} MATCHES "gcov")
103 add_compile_options(-O0 -fprofile-arcs -ftest-coverage)
104 add_compile_definitions(CLIB_DEBUG CLIB_GCOV)
105endif()
106
107set(BUILD_TYPES release debug coverity gcov)
Damjan Marion3a533cd2021-05-03 12:40:27 +0200108string(REPLACE ";" " " BUILD_TYPES_STR "${BUILD_TYPES}")
Damjan Marion952a7b82019-11-19 17:58:36 +0100109set_property(CACHE CMAKE_BUILD_TYPE PROPERTY
Damjan Marion3a533cd2021-05-03 12:40:27 +0200110 HELPSTRING "Build type - valid options are: ${BUILD_TYPES_STR}")
Damjan Marion952a7b82019-11-19 17:58:36 +0100111
Damjan Marion612dd6a2018-07-30 12:45:07 +0200112##############################################################################
Damjan Marionaf7892c2020-10-22 14:23:47 +0200113# link time optimizations
114##############################################################################
115if (CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE")
116 check_ipo_supported(RESULT _result)
117 if (_result)
118 option(VPP_USE_LTO "Link time optimization of release binaries" ON)
119 endif()
120endif()
121
122##############################################################################
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200123# sanitizers
124##############################################################################
125
Damjan Marion599efc62020-05-07 16:49:45 +0200126option(VPP_ENABLE_SANITIZE_ADDR "Enable Address Sanitizer" OFF)
Benoît Ganne173484f2020-06-16 12:05:07 +0200127set(VPP_SANITIZE_ADDR_OPTIONS
Damjan Marionec3a3f12020-05-21 19:09:13 +0200128 "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1:detect_leaks=0"
129 CACHE
130 STRING "Address sanitizer arguments"
131)
132
Damjan Marion599efc62020-05-07 16:49:45 +0200133if (VPP_ENABLE_SANITIZE_ADDR)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200134 add_compile_options(-fsanitize=address)
135 add_compile_definitions(CLIB_SANITIZE_ADDR)
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200136 set(CMAKE_EXE_LINKER_FLAGS "-fsanitize=address ${CMAKE_EXE_LINKER_FLAGS}")
137 set(CMAKE_SHARED_LINKER_FLAGS "-fsanitize=address ${CMAKE_SHARED_LINKER_FLAGS}")
Damjan Marion599efc62020-05-07 16:49:45 +0200138endif (VPP_ENABLE_SANITIZE_ADDR)
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200139
140##############################################################################
Benoît Gannef89bbbe2021-03-04 14:31:03 +0100141# trajectory trace
142##############################################################################
143
144option(VPP_ENABLE_TRAJECTORY_TRACE "Build vpp with trajectory tracing enabled" OFF)
145if(VPP_ENABLE_TRAJECTORY_TRACE)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200146 add_compile_definitions(VLIB_BUFFER_TRACE_TRAJECTORY=1)
Benoît Gannef89bbbe2021-03-04 14:31:03 +0100147endif()
148
149##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200150# install config
151##############################################################################
Nathan Moos2c919222021-01-15 13:28:34 -0800152option(VPP_SET_RPATH "Set rpath for resulting binaries and libraries." ON)
153if(VPP_SET_RPATH)
154 set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
155endif()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200156set(CMAKE_INSTALL_MESSAGE NEVER)
157
Damjan Marion612dd6a2018-07-30 12:45:07 +0200158include_directories (
159 ${CMAKE_SOURCE_DIR}
Damjan Marion88b2e362021-04-29 18:47:25 +0200160 ${VPP_BINARY_DIR}
Damjan Marion612dd6a2018-07-30 12:45:07 +0200161)
162set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "vpp")
163
164set(THREADS_PREFER_PTHREAD_FLAG ON)
165find_package(Threads REQUIRED)
Damjan Marion612dd6a2018-07-30 12:45:07 +0200166
Damjan Marion1ee346a2019-03-18 17:06:51 +0100167include(cmake/syscall.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +0200168include(cmake/api.cmake)
Damjan Marion4553c952018-08-26 11:04:40 +0200169include(cmake/library.cmake)
170include(cmake/exec.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +0200171include(cmake/plugin.cmake)
Damjan Marion612dd6a2018-07-30 12:45:07 +0200172
173##############################################################################
Damjan Marion0abd4a22018-08-28 12:57:29 +0200174# subdirs - order matters
Damjan Marion612dd6a2018-07-30 12:45:07 +0200175##############################################################################
Damjan Marion599efc62020-05-07 16:49:45 +0200176option(VPP_HOST_TOOLS_ONLY "Build only host tools" OFF)
177if(VPP_HOST_TOOLS_ONLY)
178 set(SUBDIRS tools/vppapigen cmake)
179elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
Klement Sekeraefd4d702021-04-20 19:21:36 +0200180 find_package(OpenSSL)
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200181 set(SUBDIRS
Ole Troandf87f802020-11-18 19:17:48 +0100182 vppinfra svm vlib vlibmemory vlibapi vnet vpp vat vat2 vcl plugins
Damjan Marion5505ee82020-05-07 09:49:27 +0200183 vpp-api tools/vppapigen tools/g2 tools/perftool cmake pkg
Dave Barach0729f642019-03-24 16:25:03 -0400184 tools/appimage
Damjan Marion0fa900e2018-09-12 12:12:36 +0200185 )
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200186elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
187 set(SUBDIRS vppinfra)
188else()
189 message(FATAL_ERROR "Unsupported system: ${CMAKE_SYSTEM_NAME}")
190endif()
191
192foreach(DIR ${SUBDIRS})
Damjan Marion88b2e362021-04-29 18:47:25 +0200193 add_subdirectory(${DIR} ${VPP_BINARY_DIR}/${DIR})
Damjan Marion0abd4a22018-08-28 12:57:29 +0200194endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200195
Damjan Marioneeadc142018-09-13 20:02:12 +0200196##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +0200197# detect if we are inside git repo and add configure dependency
198##############################################################################
199execute_process(
200 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
201 COMMAND git rev-parse --show-toplevel
202 OUTPUT_VARIABLE VPP_GIT_TOPLEVEL_DIR
203 OUTPUT_STRIP_TRAILING_WHITESPACE
Damjan Marion6077c972019-01-28 17:55:59 +0100204 ERROR_QUIET
Damjan Marionc6c02462018-08-31 17:38:57 +0200205)
206
207if (VPP_GIT_TOPLEVEL_DIR)
208 set_property(
209 DIRECTORY APPEND PROPERTY
210 CMAKE_CONFIGURE_DEPENDS ${VPP_GIT_TOPLEVEL_DIR}/.git/index
211 )
212endif()
213
214##############################################################################
Damjan Marion88b2e362021-04-29 18:47:25 +0200215# custom targets
216##############################################################################
217
218add_custom_target(run
219 COMMAND ./${VPP_RUNTIME_DIR}/vpp -c startup.conf
220 COMMENT "Starting VPP..."
221 USES_TERMINAL
222)
223
224add_custom_target(debug
225 COMMAND gdb --args ./${VPP_RUNTIME_DIR}/vpp -c startup.conf
226 COMMENT "Starting VPP in the debugger..."
227 USES_TERMINAL
228)
229
Damjan Marionc8983242021-04-30 19:31:09 +0200230add_custom_target(config
Damjan Marion88b2e362021-04-29 18:47:25 +0200231 COMMAND ccmake ${CMAKE_BINARY_DIR}
232 COMMENT "Starting Configuration TUI..."
233 USES_TERMINAL
234)
235
Damjan Marion3a533cd2021-05-03 12:40:27 +0200236foreach(bt ${BUILD_TYPES})
237 add_custom_target(set-build-type-${bt}
238 COMMAND cmake -DCMAKE_BUILD_TYPE:STRING=${bt} .
239 COMMENT "Changing build type to ${bt}"
240 USES_TERMINAL
241 )
242endforeach()
243
Damjan Marion0d39cba2021-05-10 14:51:44 +0200244mark_as_advanced(CLEAR
245 CMAKE_C_FLAGS
246 CMAKE_C_COMPILER
247 CMAKE_EXPORT_COMPILE_COMMANDS
248 CMAKE_INSTALL_PREFIX
249 CMAKE_LINKER
250 CMAKE_SHARED_LINKER_FLAGS
251 CMAKE_VERBOSE_MAKEFILE
252)
253
Damjan Marion88b2e362021-04-29 18:47:25 +0200254##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +0200255# print configuration
256##############################################################################
257message(STATUS "Configuration:")
258pr("VPP version" "${VPP_VERSION}")
259pr("VPP library version" "${VPP_LIB_VERSION}")
260pr("GIT toplevel dir" "${VPP_GIT_TOPLEVEL_DIR}")
Damjan Marion847d5282019-01-17 18:25:11 +0100261pr("Build type" "${CMAKE_BUILD_TYPE}")
262pr("C flags" "${CMAKE_C_FLAGS}${CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_UC}}")
Damjan Marion2baa1152019-11-07 11:32:16 +0100263pr("Linker flags (apps)" "${CMAKE_EXE_LINKER_FLAGS}${CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}")
264pr("Linker flags (libs)" "${CMAKE_SHARED_LINKER_FLAGS}${CMAKE_SHARED_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}")
Damjan Mariondd395292019-01-15 00:36:03 +0100265pr("Host processor" "${CMAKE_HOST_SYSTEM_PROCESSOR}")
Damjan Marionc6c02462018-08-31 17:38:57 +0200266pr("Target processor" "${CMAKE_SYSTEM_PROCESSOR}")
Damjan Marion4a6cb832018-09-18 18:41:38 +0200267pr("Prefix path" "${CMAKE_PREFIX_PATH}")
Damjan Marionc6c02462018-08-31 17:38:57 +0200268pr("Install prefix" "${CMAKE_INSTALL_PREFIX}")