blob: 3dc99cc9db6c76515e36ae6bf6b663008c7f0bdb [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
14enable_language(ASM)
15
16##############################################################################
17# Generate vppinfra/config.h
18##############################################################################
Damjan Marionedc43872018-09-02 11:16:00 +020019set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE})
Damjan Marion612dd6a2018-07-30 12:45:07 +020020
Dave Barach98bd7572020-02-10 10:16:40 -050021option(VPP_VECTOR_GROW_BY_ONE "Vectors grow by one, instead of 3/2" OFF)
22if(VPP_VECTOR_GROW_BY_ONE)
23 set(VECTOR_GROW_BY_ONE 1)
24else(VPP_VECTOR_GROW_BY_ONE)
25 set(VECTOR_GROW_BY_ONE 0)
26endif(VPP_VECTOR_GROW_BY_ONE)
27
Damjan Marion612dd6a2018-07-30 12:45:07 +020028configure_file(
29 ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in
30 ${CMAKE_BINARY_DIR}/vppinfra/config.h
31)
32
33install(
34 FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h
35 DESTINATION include/vppinfra
Damjan Marion43b06062018-08-29 22:20:45 +020036 COMPONENT vpp-dev
Damjan Marion612dd6a2018-07-30 12:45:07 +020037)
38
Damjan Mariondae1c7e2020-10-17 13:32:25 +020039add_definitions(-fvisibility=hidden)
40
Ole Troandf87f802020-11-18 19:17:48 +010041# Ensure symbols from cJSON are exported
42set_source_files_properties( cJSON.c PROPERTIES
43 COMPILE_DEFINITIONS " CJSON_API_VISIBILITY " )
44
45
Damjan Marion612dd6a2018-07-30 12:45:07 +020046##############################################################################
47# vppinfra sources
48##############################################################################
49set(VPPINFRA_SRCS
Damjan Marion612dd6a2018-07-30 12:45:07 +020050 backtrace.c
Dave Barach32dcd3b2019-07-08 12:25:38 -040051 bihash_all_vector.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020052 cpu.c
Dave Barach2c8e0022020-02-11 15:06:34 -050053 dlmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020054 elf.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020055 elog.c
56 error.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020057 fifo.c
58 format.c
59 graph.c
60 hash.c
61 heap.c
Damjan Marion94100532020-11-06 23:25:57 +010062 interrupt.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020063 longjmp.S
64 macros.c
65 maplog.c
Damjan Marion57d1ec02020-09-16 21:15:44 +020066 mem.c
Damjan Marion0da81682020-12-22 14:58:56 +010067 mem_bulk.c
Dave Barach2c8e0022020-02-11 15:06:34 -050068 mem_dlmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020069 mhash.c
Gary Boona9ed6f72019-07-22 10:57:56 -040070 mpcap.c
Dave Barach3ae28732018-11-16 17:19:00 -050071 pcap.c
Damjan Marion68b4da62018-09-30 18:26:20 +020072 pmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020073 pool.c
74 ptclosure.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020075 random_buffer.c
Dave Barach2c8e0022020-02-11 15:06:34 -050076 random.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020077 random_isaac.c
Florin Coras672d5fc2019-04-15 17:28:51 -070078 rbtree.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020079 serialize.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020080 socket.c
81 std-formats.c
82 string.c
83 time.c
84 time_range.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020085 timing_wheel.c
Dave Barachd7b828f2020-04-01 16:54:00 -040086 tw_timer_2t_2w_512sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020087 tw_timer_16t_1w_2048sl.c
Dave Barach2c8e0022020-02-11 15:06:34 -050088 tw_timer_16t_2w_512sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020089 tw_timer_1t_3w_1024sl_ov.c
Dave Barach2c8e0022020-02-11 15:06:34 -050090 tw_timer_2t_1w_2048sl.c
91 tw_timer_4t_3w_256sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020092 unformat.c
93 unix-formats.c
94 unix-misc.c
95 valloc.c
96 vec.c
97 vector.c
Ole Troandf87f802020-11-18 19:17:48 +010098 cJSON.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020099)
100
Damjan Marion4553c952018-08-26 11:04:40 +0200101set(VPPINFRA_HEADERS
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200102 sanitizer.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200103 bihash_16_8.h
104 bihash_24_8.h
Matthew Smithf613a442021-01-20 08:59:10 -0600105 bihash_32_8.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200106 bihash_40_8.h
107 bihash_48_8.h
108 bihash_8_8.h
jiangxiaoming498889a2020-10-22 09:08:04 +0800109 bihash_8_16.h
110 bihash_24_16.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200111 bihash_template.c
112 bihash_template.h
113 bihash_vec8_8.h
114 bitmap.h
115 bitops.h
116 byte_order.h
117 cache.h
Dave Barach5f2cfb22019-05-20 10:28:57 -0400118 callback.h
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000119 callback_data.h
Ole Troandf87f802020-11-18 19:17:48 +0100120 cJSON.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200121 clib_error.h
122 clib.h
123 cpu.h
124 crc32.h
125 dlist.h
126 dlmalloc.h
127 elf_clib.h
128 elf.h
129 elog.h
130 error_bootstrap.h
131 error.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200132 fifo.h
133 file.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200134 format.h
135 graph.h
136 hash.h
137 heap.h
Damjan Marion94100532020-11-06 23:25:57 +0100138 interrupt.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200139 lb_hash_hash.h
Florin Corasb957d802019-07-09 19:02:33 -0700140 llist.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200141 lock.h
142 longjmp.h
143 macros.h
144 maplog.h
145 math.h
146 memcpy_avx2.h
147 memcpy_avx512.h
148 memcpy_sse3.h
149 mem.h
150 mhash.h
Gary Boona9ed6f72019-07-22 10:57:56 -0400151 mpcap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200152 os.h
Dave Barach3ae28732018-11-16 17:19:00 -0500153 pcap.h
154 pcap_funcs.h
Damjan Marion68b4da62018-09-30 18:26:20 +0200155 pmalloc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200156 pool.h
157 ptclosure.h
158 random_buffer.h
159 random.h
160 random_isaac.h
Florin Coras672d5fc2019-04-15 17:28:51 -0700161 rbtree.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200162 serialize.h
Damjan Marioncf18ca92019-04-13 00:13:34 +0200163 sha2.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200164 smp.h
165 socket.h
166 sparse_vec.h
167 string.h
168 time.h
169 time_range.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200170 timing_wheel.h
Yu Sun6f5b72e2020-04-16 13:56:12 -0400171 tw_timer_2t_2w_512sl.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200172 tw_timer_16t_1w_2048sl.h
173 tw_timer_16t_2w_512sl.h
174 tw_timer_1t_3w_1024sl_ov.h
175 tw_timer_2t_1w_2048sl.h
176 tw_timer_4t_3w_256sl.h
177 tw_timer_template.c
178 tw_timer_template.h
179 types.h
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000180 atomics.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200181 unix.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200182 valloc.h
183 vec_bootstrap.h
184 vec.h
185 vector_altivec.h
186 vector_avx2.h
187 vector_avx512.h
188 vector_funcs.h
189 vector.h
190 vector_neon.h
191 vector_sse42.h
Benoît Gannebe7dbbb2020-04-24 14:37:10 +0200192 warnings.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200193 xxhash.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200194 linux/syscall.h
195 linux/sysfs.h
196)
197
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200198if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
199 list(APPEND VPPINFRA_SRCS
200 elf_clib.c
201 linux/mem.c
202 linux/sysfs.c
203 )
204endif()
205
Nathan Moos67d7acd2021-01-15 15:50:59 -0800206option(VPP_USE_EXTERNAL_LIBEXECINFO "Use external libexecinfo (useful for non-glibc targets)." OFF)
207if(VPP_USE_EXTERNAL_LIBEXECINFO)
208 set(EXECINFO_LIB execinfo)
209endif()
Damjan Marion4553c952018-08-26 11:04:40 +0200210add_vpp_library(vppinfra
211 SOURCES ${VPPINFRA_SRCS}
Nathan Moos67d7acd2021-01-15 15:50:59 -0800212 LINK_LIBRARIES m ${EXECINFO_LIB}
Damjan Marion4553c952018-08-26 11:04:40 +0200213 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200214 COMPONENT libvppinfra
Damjan Marionaf7892c2020-10-22 14:23:47 +0200215 LTO
Damjan Marion4553c952018-08-26 11:04:40 +0200216)
217
218##############################################################################
219# vppinfra headers
220##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200221option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
222if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200223 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200224 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200225 dlist
226 elf
227 elog
228 fifo
Damjan Marion612dd6a2018-07-30 12:45:07 +0200229 format
230 fpool
231 hash
232 heap
233 longjmp
234 macros
235 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200236 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200237 pool_iterate
238 ptclosure
239 random
240 random_isaac
jaszha0325ab6cf2019-07-01 17:20:52 -0500241 rwlock
Damjan Marion612dd6a2018-07-30 12:45:07 +0200242 serialize
Damjan Marion612dd6a2018-07-30 12:45:07 +0200243 socket
jaszha039a4e6312019-06-19 14:07:05 -0500244 spinlock
Damjan Marion612dd6a2018-07-30 12:45:07 +0200245 time
246 time_range
Damjan Marion612dd6a2018-07-30 12:45:07 +0200247 tw_timer
248 valloc
249 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200250 )
Damjan Marion4553c952018-08-26 11:04:40 +0200251 add_vpp_executable(test_${test}
252 SOURCES test_${test}.c
Florin Coras4f944642019-08-01 10:54:06 -0700253 LINK_LIBRARIES vppinfra pthread
Damjan Marion4553c952018-08-26 11:04:40 +0200254 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200255 endforeach()
256
Dave Barach053d0932020-04-22 10:02:31 -0400257 foreach(test bihash_template)
Damjan Marion4553c952018-08-26 11:04:40 +0200258 add_vpp_executable(test_${test}
259 SOURCES test_${test}.c
260 LINK_LIBRARIES vppinfra Threads::Threads
261 )
262 endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200263endif(VPP_BUILD_VPPINFRA_TESTS)