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 | |||||
14 | enable_language(ASM) | ||||
15 | |||||
16 | ############################################################################## | ||||
Damjan Marion | 7892560 | 2024-05-23 13:06:39 +0000 | [diff] [blame] | 17 | # find libdl |
18 | ############################################################################## | ||||
Guillaume Solignac | fb9dd88 | 2024-06-19 13:32:47 +0200 | [diff] [blame] | 19 | list(APPEND VPPINFRA_LIBS ${CMAKE_DL_LIBS}) |
Damjan Marion | 7892560 | 2024-05-23 13:06:39 +0000 | [diff] [blame] | 20 | |
21 | ############################################################################## | ||||
22 | # find libunwind | ||||
23 | ############################################################################## | ||||
24 | vpp_find_path(LIBUNWIND_INCLUDE_DIR unwind.h) | ||||
25 | vpp_find_library(LIBUNWIND_LIB NAMES unwind libunwind) | ||||
26 | |||||
27 | if (LIBUNWIND_INCLUDE_DIR AND LIBUNWIND_LIB) | ||||
28 | message(STATUS "libunwind found at ${LIBUNWIND_LIB}") | ||||
29 | list(APPEND VPPINFRA_LIBS ${LIBUNWIND_LIB}) | ||||
30 | add_definitions(-DHAVE_LIBUNWIND=1) | ||||
31 | else() | ||||
32 | message(WARNING "libunwind not found - stack traces disabled") | ||||
33 | add_definitions(-DHAVE_LIBUNWIND=0) | ||||
34 | endif() | ||||
35 | |||||
36 | ############################################################################## | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 37 | # Generate vppinfra/config.h |
38 | ############################################################################## | ||||
Damjan Marion | edc4387 | 2018-09-02 11:16:00 +0200 | [diff] [blame] | 39 | set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE}) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 40 | |
Dave Barach | 98bd757 | 2020-02-10 10:16:40 -0500 | [diff] [blame] | 41 | option(VPP_VECTOR_GROW_BY_ONE "Vectors grow by one, instead of 3/2" OFF) |
42 | if(VPP_VECTOR_GROW_BY_ONE) | ||||
43 | set(VECTOR_GROW_BY_ONE 1) | ||||
44 | else(VPP_VECTOR_GROW_BY_ONE) | ||||
45 | set(VECTOR_GROW_BY_ONE 0) | ||||
46 | endif(VPP_VECTOR_GROW_BY_ONE) | ||||
47 | |||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 48 | configure_file( |
49 | ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in | ||||
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 50 | ${CMAKE_CURRENT_BINARY_DIR}/config.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 51 | ) |
52 | |||||
53 | install( | ||||
Damjan Marion | 88b2e36 | 2021-04-29 18:47:25 +0200 | [diff] [blame] | 54 | FILES ${CMAKE_CURRENT_BINARY_DIR}/config.h |
Nick Brown | e3cf4d0 | 2021-09-15 14:25:40 +0100 | [diff] [blame] | 55 | DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/vppinfra |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 56 | COMPONENT vpp-dev |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 57 | ) |
58 | |||||
Damjan Marion | dae1c7e | 2020-10-17 13:32:25 +0200 | [diff] [blame] | 59 | add_definitions(-fvisibility=hidden) |
60 | |||||
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 61 | # Ensure symbols from cJSON are exported |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 62 | set_source_files_properties( cJSON.c jsonformat.c PROPERTIES |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 63 | COMPILE_DEFINITIONS " CJSON_API_VISIBILITY " ) |
64 | |||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 65 | ############################################################################## |
66 | # vppinfra sources | ||||
67 | ############################################################################## | ||||
68 | set(VPPINFRA_SRCS | ||||
Damjan Marion | 7f57f50 | 2021-04-15 16:13:20 +0200 | [diff] [blame] | 69 | bitmap.c |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 70 | bihash_all_vector.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 71 | cpu.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 72 | dlmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 73 | elf.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 74 | elog.c |
75 | error.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 76 | fifo.c |
77 | format.c | ||||
Nathan Skrzypczak | 0e65840 | 2021-09-17 11:51:46 +0200 | [diff] [blame] | 78 | format_table.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 79 | hash.c |
80 | heap.c | ||||
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 81 | interrupt.c |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 82 | jsonformat.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 83 | longjmp.S |
84 | macros.c | ||||
85 | maplog.c | ||||
Damjan Marion | 57d1ec0 | 2020-09-16 21:15:44 +0200 | [diff] [blame] | 86 | mem.c |
Damjan Marion | 0da8168 | 2020-12-22 14:58:56 +0100 | [diff] [blame] | 87 | mem_bulk.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 88 | mem_dlmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 89 | mhash.c |
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 90 | mpcap.c |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 91 | pcap.c |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 92 | pmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 93 | pool.c |
94 | ptclosure.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 95 | random_buffer.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 96 | random.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 97 | random_isaac.c |
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 98 | rbtree.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 99 | serialize.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 100 | socket.c |
Damjan Marion | 7892560 | 2024-05-23 13:06:39 +0000 | [diff] [blame] | 101 | stack.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 102 | std-formats.c |
103 | string.c | ||||
104 | time.c | ||||
105 | time_range.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 106 | timing_wheel.c |
Dave Barach | d7b828f | 2020-04-01 16:54:00 -0400 | [diff] [blame] | 107 | tw_timer_2t_2w_512sl.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 108 | tw_timer_16t_1w_2048sl.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 109 | tw_timer_16t_2w_512sl.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 110 | tw_timer_1t_3w_1024sl_ov.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 111 | tw_timer_2t_1w_2048sl.c |
112 | tw_timer_4t_3w_256sl.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 113 | unformat.c |
114 | unix-formats.c | ||||
115 | unix-misc.c | ||||
116 | valloc.c | ||||
117 | vec.c | ||||
118 | vector.c | ||||
Damjan Marion | 2e5921b | 2021-11-28 22:57:15 +0100 | [diff] [blame] | 119 | vector/toeplitz.c |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 120 | cJSON.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 121 | ) |
122 | |||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 123 | set(VPPINFRA_HEADERS |
Damjan Marion | d51250f | 2021-12-22 12:22:59 +0100 | [diff] [blame] | 124 | bihash_12_4.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 125 | bihash_16_8.h |
126 | bihash_24_8.h | ||||
Matthew Smith | f613a44 | 2021-01-20 08:59:10 -0600 | [diff] [blame] | 127 | bihash_32_8.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 128 | bihash_40_8.h |
129 | bihash_48_8.h | ||||
130 | bihash_8_8.h | ||||
jiangxiaoming | 498889a | 2020-10-22 09:08:04 +0800 | [diff] [blame] | 131 | bihash_8_16.h |
132 | bihash_24_16.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 133 | bihash_template.c |
134 | bihash_template.h | ||||
135 | bihash_vec8_8.h | ||||
136 | bitmap.h | ||||
137 | bitops.h | ||||
138 | byte_order.h | ||||
139 | cache.h | ||||
Dave Barach | 5f2cfb2 | 2019-05-20 10:28:57 -0400 | [diff] [blame] | 140 | callback.h |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 141 | callback_data.h |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 142 | cJSON.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 143 | clib_error.h |
144 | clib.h | ||||
145 | cpu.h | ||||
146 | crc32.h | ||||
Damjan Marion | b47376f | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 147 | crypto/sha2.h |
148 | crypto/ghash.h | ||||
149 | crypto/aes.h | ||||
150 | crypto/aes_cbc.h | ||||
Damjan Marion | 9caef2a | 2024-01-08 19:05:40 +0000 | [diff] [blame] | 151 | crypto/aes_ctr.h |
Damjan Marion | b47376f | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 152 | crypto/aes_gcm.h |
Damjan Marion | 003330c | 2023-04-12 12:19:05 +0000 | [diff] [blame] | 153 | crypto/poly1305.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 154 | dlist.h |
155 | dlmalloc.h | ||||
156 | elf_clib.h | ||||
157 | elf.h | ||||
158 | elog.h | ||||
159 | error_bootstrap.h | ||||
160 | error.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 161 | fifo.h |
162 | file.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 163 | format.h |
Damjan Marion | 7892560 | 2024-05-23 13:06:39 +0000 | [diff] [blame] | 164 | format_ansi.h |
Nathan Skrzypczak | 0e65840 | 2021-09-17 11:51:46 +0200 | [diff] [blame] | 165 | format_table.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 166 | hash.h |
167 | heap.h | ||||
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 168 | interrupt.h |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 169 | jsonformat.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 170 | lb_hash_hash.h |
Florin Coras | b957d80 | 2019-07-09 19:02:33 -0700 | [diff] [blame] | 171 | llist.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 172 | lock.h |
173 | longjmp.h | ||||
174 | macros.h | ||||
175 | maplog.h | ||||
176 | math.h | ||||
Damjan Marion | 856d062 | 2021-04-21 21:11:35 +0200 | [diff] [blame] | 177 | memcpy.h |
Damjan Marion | 56f54af | 2021-10-12 20:30:02 +0200 | [diff] [blame] | 178 | memcpy_x86_64.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 179 | mem.h |
180 | mhash.h | ||||
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 181 | mpcap.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 182 | os.h |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 183 | pcap.h |
184 | pcap_funcs.h | ||||
BenoƮt Ganne | 5527a78 | 2022-01-18 15:56:41 +0100 | [diff] [blame] | 185 | pcg.h |
Damjan Marion | d5045e6 | 2022-04-06 21:16:37 +0200 | [diff] [blame] | 186 | perfmon/perfmon.h |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 187 | pmalloc.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 188 | pool.h |
189 | ptclosure.h | ||||
190 | random_buffer.h | ||||
191 | random.h | ||||
192 | random_isaac.h | ||||
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 193 | rbtree.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 194 | serialize.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 195 | smp.h |
196 | socket.h | ||||
197 | sparse_vec.h | ||||
Damjan Marion | 7892560 | 2024-05-23 13:06:39 +0000 | [diff] [blame] | 198 | stack.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 199 | string.h |
200 | time.h | ||||
201 | time_range.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 202 | timing_wheel.h |
Yu Sun | 6f5b72e | 2020-04-16 13:56:12 -0400 | [diff] [blame] | 203 | tw_timer_2t_2w_512sl.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 204 | tw_timer_16t_1w_2048sl.h |
205 | tw_timer_16t_2w_512sl.h | ||||
206 | tw_timer_1t_3w_1024sl_ov.h | ||||
207 | tw_timer_2t_1w_2048sl.h | ||||
208 | tw_timer_4t_3w_256sl.h | ||||
209 | tw_timer_template.c | ||||
210 | tw_timer_template.h | ||||
211 | types.h | ||||
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 212 | atomics.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 213 | unix.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 214 | valloc.h |
215 | vec_bootstrap.h | ||||
216 | vec.h | ||||
217 | vector_altivec.h | ||||
218 | vector_avx2.h | ||||
219 | vector_avx512.h | ||||
Mohsin Kazmi | 0ec7dad | 2021-07-15 10:34:36 +0000 | [diff] [blame] | 220 | vector/array_mask.h |
Damjan Marion | 4c276f0 | 2021-11-06 13:17:31 +0100 | [diff] [blame] | 221 | vector/compress.h |
222 | vector/count_equal.h | ||||
Damjan Marion | 4c53ff4 | 2021-10-28 23:03:04 +0200 | [diff] [blame] | 223 | vector/index_to_ptr.h |
Damjan Marion | aa63bc6 | 2021-11-08 11:18:30 +0000 | [diff] [blame] | 224 | vector/ip_csum.h |
Damjan Marion | 4c276f0 | 2021-11-06 13:17:31 +0100 | [diff] [blame] | 225 | vector/mask_compare.h |
Damjan Marion | 2e5921b | 2021-11-28 22:57:15 +0100 | [diff] [blame] | 226 | vector/toeplitz.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 227 | vector.h |
228 | vector_neon.h | ||||
229 | vector_sse42.h | ||||
BenoƮt Ganne | be7dbbb | 2020-04-24 14:37:10 +0200 | [diff] [blame] | 230 | warnings.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 231 | xxhash.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 232 | linux/sysfs.h |
233 | ) | ||||
234 | |||||
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 235 | if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") |
236 | list(APPEND VPPINFRA_SRCS | ||||
237 | elf_clib.c | ||||
238 | linux/mem.c | ||||
239 | linux/sysfs.c | ||||
Nathan Skrzypczak | 4cef6de | 2021-07-19 18:21:43 +0200 | [diff] [blame] | 240 | linux/netns.c |
Tom Jones | 000b5e1 | 2024-01-26 14:13:39 +0000 | [diff] [blame] | 241 | # TODO: Temporarily don't build perfmon on non-Linux |
242 | perfmon/bundle_default.c | ||||
243 | perfmon/bundle_core_power.c | ||||
244 | perfmon/perfmon.c | ||||
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 245 | ) |
Tom Jones | e12f69f | 2024-01-26 17:04:23 +0000 | [diff] [blame] | 246 | elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "FreeBSD") |
247 | list(APPEND VPPINFRA_SRCS | ||||
248 | elf_clib.c | ||||
249 | freebsd/mem.c | ||||
250 | ) | ||||
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 251 | endif() |
252 | |||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 253 | add_vpp_library(vppinfra |
254 | SOURCES ${VPPINFRA_SRCS} | ||||
Damjan Marion | 7892560 | 2024-05-23 13:06:39 +0000 | [diff] [blame] | 255 | LINK_LIBRARIES m ${VPPINFRA_LIBS} |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 256 | INSTALL_HEADERS ${VPPINFRA_HEADERS} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 257 | COMPONENT libvppinfra |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 258 | LTO |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 259 | ) |
260 | |||||
261 | ############################################################################## | ||||
262 | # vppinfra headers | ||||
263 | ############################################################################## | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 264 | option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF) |
265 | if(VPP_BUILD_VPPINFRA_TESTS) | ||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 266 | foreach(test |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 267 | bihash_vec88 |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 268 | dlist |
269 | elf | ||||
270 | elog | ||||
271 | fifo | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 272 | format |
273 | fpool | ||||
274 | hash | ||||
275 | heap | ||||
Damjan Marion | 7f75e80 | 2023-11-03 21:57:42 +0000 | [diff] [blame] | 276 | interrupt |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 277 | longjmp |
278 | macros | ||||
279 | maplog | ||||
Vladislav Grishenko | 7032892 | 2023-12-14 17:48:28 +0100 | [diff] [blame] | 280 | mhash |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 281 | pmalloc |
Vladislav Grishenko | 8a4b797 | 2022-09-28 13:37:02 +0500 | [diff] [blame] | 282 | pool_alloc |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 283 | pool_iterate |
284 | ptclosure | ||||
285 | random | ||||
286 | random_isaac | ||||
jaszha03 | 25ab6cf | 2019-07-01 17:20:52 -0500 | [diff] [blame] | 287 | rwlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 288 | serialize |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 289 | socket |
jaszha03 | 9a4e631 | 2019-06-19 14:07:05 -0500 | [diff] [blame] | 290 | spinlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 291 | time |
292 | time_range | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 293 | tw_timer |
294 | valloc | ||||
295 | vec | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 296 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 297 | add_vpp_executable(test_${test} |
298 | SOURCES test_${test}.c | ||||
Florin Coras | 4f94464 | 2019-08-01 10:54:06 -0700 | [diff] [blame] | 299 | LINK_LIBRARIES vppinfra pthread |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 300 | ) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 301 | endforeach() |
302 | |||||
Dave Barach | 053d093 | 2020-04-22 10:02:31 -0400 | [diff] [blame] | 303 | foreach(test bihash_template) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 304 | add_vpp_executable(test_${test} |
305 | SOURCES test_${test}.c | ||||
306 | LINK_LIBRARIES vppinfra Threads::Threads | ||||
307 | ) | ||||
308 | endforeach() | ||||
Damjan Marion | c3542e1 | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 309 | endif(VPP_BUILD_VPPINFRA_TESTS) |
Damjan Marion | e3e3555 | 2021-05-06 17:34:49 +0200 | [diff] [blame] | 310 | |
311 | set(test_files | ||||
Damjan Marion | b47376f | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 312 | test/aes_cbc.c |
Damjan Marion | 9caef2a | 2024-01-08 19:05:40 +0000 | [diff] [blame] | 313 | test/aes_ctr.c |
Damjan Marion | b47376f | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 314 | test/aes_gcm.c |
Damjan Marion | 003330c | 2023-04-12 12:19:05 +0000 | [diff] [blame] | 315 | test/poly1305.c |
Damjan Marion | c3542e1 | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 316 | test/array_mask.c |
317 | test/compress.c | ||||
318 | test/count_equal.c | ||||
Andrew Yourtchenko | f39485f | 2023-03-14 09:28:35 +0000 | [diff] [blame] | 319 | test/crc32c.c |
Damjan Marion | c3542e1 | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 320 | test/index_to_ptr.c |
321 | test/ip_csum.c | ||||
322 | test/mask_compare.c | ||||
323 | test/memcpy_x86_64.c | ||||
324 | test/sha2.c | ||||
325 | test/toeplitz.c | ||||
Damjan Marion | e3e3555 | 2021-05-06 17:34:49 +0200 | [diff] [blame] | 326 | ) |
327 | |||||
Damjan Marion | c3542e1 | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 328 | add_vpp_executable(test_infra |
Damjan Marion | e3e3555 | 2021-05-06 17:34:49 +0200 | [diff] [blame] | 329 | SOURCES |
Damjan Marion | c3542e1 | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 330 | test/test.c |
Damjan Marion | e3e3555 | 2021-05-06 17:34:49 +0200 | [diff] [blame] | 331 | ${test_files} |
332 | LINK_LIBRARIES vppinfra | ||||
Tianyu Li | b53b88a | 2023-03-21 06:49:38 +0000 | [diff] [blame] | 333 | NO_INSTALL |
Damjan Marion | e3e3555 | 2021-05-06 17:34:49 +0200 | [diff] [blame] | 334 | ) |
335 | |||||
Damjan Marion | c3542e1 | 2023-03-15 11:42:06 +0000 | [diff] [blame] | 336 | vpp_library_set_multiarch_sources(test_infra |
Damjan Marion | e3e3555 | 2021-05-06 17:34:49 +0200 | [diff] [blame] | 337 | SOURCES |
338 | ${test_files} | ||||
339 | ) | ||||
340 |