blob: 4d66671edc550e590480c3b77761d95fea1db87d [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 Marion8c698872020-10-10 19:17:58 +020016set(CMAKE_C_COMPILER_NAMES clang-11 clang-10 clang-9 gcc-10 gcc-9 cc)
Damjan Marion4ba16a42020-04-28 13:29:37 +020017
Damjan Marion612dd6a2018-07-30 12:45:07 +020018project(vpp C)
19
20include(CheckCCompilerFlag)
Damjan Marionaf7892c2020-10-22 14:23:47 +020021include(CheckIPOSupported)
Damjan Marionff426932019-01-26 14:12:25 +010022include(cmake/misc.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +020023include(cmake/cpu.cmake)
24include(cmake/ccache.cmake)
Damjan Marion612dd6a2018-07-30 12:45:07 +020025
26##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +020027# VPP Version
28##############################################################################
29execute_process(
30 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
31 COMMAND scripts/version
32 OUTPUT_VARIABLE VPP_VERSION
33 OUTPUT_STRIP_TRAILING_WHITESPACE
34)
35string(REPLACE "-" ";" VPP_LIB_VERSION ${VPP_VERSION})
36list(GET VPP_LIB_VERSION 0 VPP_LIB_VERSION)
37
38##############################################################################
Damjan Mariondd395292019-01-15 00:36:03 +010039# cross compiling
40##############################################################################
41if(CMAKE_CROSSCOMPILING)
42 set(CMAKE_IGNORE_PATH
43 /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/
44 /usr/lib/${CMAKE_HOST_SYSTEM_PROCESSOR}-linux-gnu/lib/
45 )
46endif()
Damjan Marion64911362019-01-18 17:09:44 +010047set(CMAKE_C_COMPILER_TARGET ${CMAKE_SYSTEM_PROCESSOR}-linux-gnu)
Damjan Mariondd395292019-01-15 00:36:03 +010048
49##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +020050# build config
51##############################################################################
Damjan Marion847d5282019-01-17 18:25:11 +010052check_c_compiler_flag("-Wno-address-of-packed-member"
53 compiler_flag_no_address_of_packed_member)
Damjan Marion599efc62020-05-07 16:49:45 +020054set(VPP_RUNTIME_DIR "bin" CACHE STRING "Relative runtime directory path")
55set(VPP_LIBRARY_DIR "lib" CACHE STRING "Relative library directory path")
Damjan Marion847d5282019-01-17 18:25:11 +010056
Damjan Marion599efc62020-05-07 16:49:45 +020057set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_RUNTIME_DIR})
58set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${VPP_LIBRARY_DIR})
Damjan Marion612dd6a2018-07-30 12:45:07 +020059
Damjan Marion847d5282019-01-17 18:25:11 +010060if (CMAKE_BUILD_TYPE)
Damjan Marion2baa1152019-11-07 11:32:16 +010061 set(CMAKE_C_FLAGS "-g -fPIC -Werror -Wall ${CMAKE_C_FLAGS}")
Damjan Marion33ed3e42018-08-27 15:59:30 +020062endif()
63
Damjan Marion847d5282019-01-17 18:25:11 +010064if (compiler_flag_no_address_of_packed_member)
65 set(CMAKE_C_FLAGS "-Wno-address-of-packed-member ${CMAKE_C_FLAGS}")
66endif()
67
Damjan Marion2baa1152019-11-07 11:32:16 +010068# release
Damjan Marion952a7b82019-11-19 17:58:36 +010069list(APPEND BUILD_TYPES "release")
Damjan Marion2baa1152019-11-07 11:32:16 +010070string(CONCAT CMAKE_C_FLAGS_RELEASE
71 "-O2 "
72 "-fstack-protector "
Neale Ranns2a81d9a2021-01-20 09:03:30 +000073 "-D_FORTIFY_SOURCE=2 "
Damjan Marion2baa1152019-11-07 11:32:16 +010074 "-fno-common "
75)
76
77string(CONCAT CMAKE_EXE_LINKER_FLAGS_RELEASE "-pie")
78
79# debug
Damjan Marion952a7b82019-11-19 17:58:36 +010080list(APPEND BUILD_TYPES "debug")
Damjan Marion2baa1152019-11-07 11:32:16 +010081string(CONCAT CMAKE_C_FLAGS_DEBUG
82 "-O0 "
83 "-DCLIB_DEBUG "
84 "-fstack-protector "
Damjan Marion2baa1152019-11-07 11:32:16 +010085 "-fno-common "
86)
87
88# coverity
Damjan Marion952a7b82019-11-19 17:58:36 +010089list(APPEND BUILD_TYPES "coverity")
Damjan Marion2baa1152019-11-07 11:32:16 +010090string(CONCAT CMAKE_C_FLAGS_COVERITY "-O2 -D__COVERITY__")
91
92# gcov
Damjan Marion952a7b82019-11-19 17:58:36 +010093list(APPEND BUILD_TYPES "gcov")
Damjan Marion2baa1152019-11-07 11:32:16 +010094string(CONCAT CMAKE_C_FLAGS_GCOV
95 "-O0 "
96 "-DCLIB_DEBUG "
97 "-DCLIB_GCOV "
98 "-fprofile-arcs "
99 "-ftest-coverage ")
100
Damjan Marion847d5282019-01-17 18:25:11 +0100101string(TOUPPER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_UC)
102
Damjan Marion952a7b82019-11-19 17:58:36 +0100103
104string(REPLACE ";" " " BUILD_TYPES "${BUILD_TYPES}")
105set_property(CACHE CMAKE_BUILD_TYPE PROPERTY
106 HELPSTRING "Build type - valid options are: ${BUILD_TYPES}")
107
Damjan Marion612dd6a2018-07-30 12:45:07 +0200108##############################################################################
Damjan Marionaf7892c2020-10-22 14:23:47 +0200109# link time optimizations
110##############################################################################
111if (CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE")
112 check_ipo_supported(RESULT _result)
113 if (_result)
114 option(VPP_USE_LTO "Link time optimization of release binaries" ON)
115 endif()
116endif()
117
118##############################################################################
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200119# sanitizers
120##############################################################################
121
Damjan Marion599efc62020-05-07 16:49:45 +0200122option(VPP_ENABLE_SANITIZE_ADDR "Enable Address Sanitizer" OFF)
Benoît Ganne173484f2020-06-16 12:05:07 +0200123set(VPP_SANITIZE_ADDR_OPTIONS
Damjan Marionec3a3f12020-05-21 19:09:13 +0200124 "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1:detect_leaks=0"
125 CACHE
126 STRING "Address sanitizer arguments"
127)
128
Damjan Marion599efc62020-05-07 16:49:45 +0200129if (VPP_ENABLE_SANITIZE_ADDR)
Damjan Marioncea46522020-05-21 16:47:05 +0200130 set(CMAKE_C_FLAGS "-fsanitize=address -DCLIB_SANITIZE_ADDR ${CMAKE_C_FLAGS}")
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200131 set(CMAKE_EXE_LINKER_FLAGS "-fsanitize=address ${CMAKE_EXE_LINKER_FLAGS}")
132 set(CMAKE_SHARED_LINKER_FLAGS "-fsanitize=address ${CMAKE_SHARED_LINKER_FLAGS}")
Damjan Marion599efc62020-05-07 16:49:45 +0200133endif (VPP_ENABLE_SANITIZE_ADDR)
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200134
135##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200136# install config
137##############################################################################
Nathan Moos2c919222021-01-15 13:28:34 -0800138option(VPP_SET_RPATH "Set rpath for resulting binaries and libraries." ON)
139if(VPP_SET_RPATH)
140 set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
141endif()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200142set(CMAKE_INSTALL_MESSAGE NEVER)
143
Damjan Marion612dd6a2018-07-30 12:45:07 +0200144include_directories (
145 ${CMAKE_SOURCE_DIR}
146 ${CMAKE_BINARY_DIR}
147 ${CMAKE_BINARY_DIR}/include
148)
149set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "vpp")
150
151set(THREADS_PREFER_PTHREAD_FLAG ON)
152find_package(Threads REQUIRED)
Damjan Marion612dd6a2018-07-30 12:45:07 +0200153
Damjan Marion1ee346a2019-03-18 17:06:51 +0100154include(cmake/syscall.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +0200155include(cmake/api.cmake)
Damjan Marion4553c952018-08-26 11:04:40 +0200156include(cmake/library.cmake)
157include(cmake/exec.cmake)
Damjan Mariond16004d2018-08-26 10:14:52 +0200158include(cmake/plugin.cmake)
Damjan Marion612dd6a2018-07-30 12:45:07 +0200159
160##############################################################################
Damjan Marion0abd4a22018-08-28 12:57:29 +0200161# subdirs - order matters
Damjan Marion612dd6a2018-07-30 12:45:07 +0200162##############################################################################
Damjan Marion599efc62020-05-07 16:49:45 +0200163option(VPP_HOST_TOOLS_ONLY "Build only host tools" OFF)
164if(VPP_HOST_TOOLS_ONLY)
165 set(SUBDIRS tools/vppapigen cmake)
166elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200167 find_package(OpenSSL REQUIRED)
168 set(SUBDIRS
Ole Troandf87f802020-11-18 19:17:48 +0100169 vppinfra svm vlib vlibmemory vlibapi vnet vpp vat vat2 vcl plugins
Damjan Marion5505ee82020-05-07 09:49:27 +0200170 vpp-api tools/vppapigen tools/g2 tools/perftool cmake pkg
Dave Barach0729f642019-03-24 16:25:03 -0400171 tools/appimage
Damjan Marion0fa900e2018-09-12 12:12:36 +0200172 )
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200173elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
174 set(SUBDIRS vppinfra)
175else()
176 message(FATAL_ERROR "Unsupported system: ${CMAKE_SYSTEM_NAME}")
177endif()
178
179foreach(DIR ${SUBDIRS})
Damjan Marion612dd6a2018-07-30 12:45:07 +0200180 add_subdirectory(${DIR})
Damjan Marion0abd4a22018-08-28 12:57:29 +0200181endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200182
Damjan Marioneeadc142018-09-13 20:02:12 +0200183##############################################################################
Damjan Marionc6c02462018-08-31 17:38:57 +0200184# detect if we are inside git repo and add configure dependency
185##############################################################################
186execute_process(
187 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
188 COMMAND git rev-parse --show-toplevel
189 OUTPUT_VARIABLE VPP_GIT_TOPLEVEL_DIR
190 OUTPUT_STRIP_TRAILING_WHITESPACE
Damjan Marion6077c972019-01-28 17:55:59 +0100191 ERROR_QUIET
Damjan Marionc6c02462018-08-31 17:38:57 +0200192)
193
194if (VPP_GIT_TOPLEVEL_DIR)
195 set_property(
196 DIRECTORY APPEND PROPERTY
197 CMAKE_CONFIGURE_DEPENDS ${VPP_GIT_TOPLEVEL_DIR}/.git/index
198 )
199endif()
200
201##############################################################################
202# print configuration
203##############################################################################
204message(STATUS "Configuration:")
205pr("VPP version" "${VPP_VERSION}")
206pr("VPP library version" "${VPP_LIB_VERSION}")
207pr("GIT toplevel dir" "${VPP_GIT_TOPLEVEL_DIR}")
Damjan Marion847d5282019-01-17 18:25:11 +0100208pr("Build type" "${CMAKE_BUILD_TYPE}")
209pr("C flags" "${CMAKE_C_FLAGS}${CMAKE_C_FLAGS_${CMAKE_BUILD_TYPE_UC}}")
Damjan Marion2baa1152019-11-07 11:32:16 +0100210pr("Linker flags (apps)" "${CMAKE_EXE_LINKER_FLAGS}${CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}")
211pr("Linker flags (libs)" "${CMAKE_SHARED_LINKER_FLAGS}${CMAKE_SHARED_LINKER_FLAGS_${CMAKE_BUILD_TYPE_UC}}")
Damjan Mariondd395292019-01-15 00:36:03 +0100212pr("Host processor" "${CMAKE_HOST_SYSTEM_PROCESSOR}")
Damjan Marionc6c02462018-08-31 17:38:57 +0200213pr("Target processor" "${CMAKE_SYSTEM_PROCESSOR}")
Damjan Marion4a6cb832018-09-18 18:41:38 +0200214pr("Prefix path" "${CMAKE_PREFIX_PATH}")
Damjan Marionc6c02462018-08-31 17:38:57 +0200215pr("Install prefix" "${CMAKE_INSTALL_PREFIX}")