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 | ############################################################################## | ||||
17 | # Generate vppinfra/config.h | ||||
18 | ############################################################################## | ||||
Damjan Marion | edc4387 | 2018-09-02 11:16:00 +0200 | [diff] [blame] | 19 | set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE}) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 20 | |
Dave Barach | 98bd757 | 2020-02-10 10:16:40 -0500 | [diff] [blame] | 21 | option(VPP_VECTOR_GROW_BY_ONE "Vectors grow by one, instead of 3/2" OFF) |
22 | if(VPP_VECTOR_GROW_BY_ONE) | ||||
23 | set(VECTOR_GROW_BY_ONE 1) | ||||
24 | else(VPP_VECTOR_GROW_BY_ONE) | ||||
25 | set(VECTOR_GROW_BY_ONE 0) | ||||
26 | endif(VPP_VECTOR_GROW_BY_ONE) | ||||
27 | |||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 28 | configure_file( |
29 | ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in | ||||
30 | ${CMAKE_BINARY_DIR}/vppinfra/config.h | ||||
31 | ) | ||||
32 | |||||
33 | install( | ||||
34 | FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h | ||||
35 | DESTINATION include/vppinfra | ||||
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 36 | COMPONENT vpp-dev |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 37 | ) |
38 | |||||
Damjan Marion | dae1c7e | 2020-10-17 13:32:25 +0200 | [diff] [blame] | 39 | add_definitions(-fvisibility=hidden) |
40 | |||||
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame^] | 41 | # Ensure symbols from cJSON are exported |
42 | set_source_files_properties( cJSON.c PROPERTIES | ||||
43 | COMPILE_DEFINITIONS " CJSON_API_VISIBILITY " ) | ||||
44 | |||||
45 | |||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 46 | ############################################################################## |
47 | # vppinfra sources | ||||
48 | ############################################################################## | ||||
49 | set(VPPINFRA_SRCS | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 50 | backtrace.c |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 51 | bihash_all_vector.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 52 | cpu.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 53 | dlmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 54 | elf.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 55 | elog.c |
56 | error.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 57 | fifo.c |
58 | format.c | ||||
59 | graph.c | ||||
60 | hash.c | ||||
61 | heap.c | ||||
62 | longjmp.S | ||||
63 | macros.c | ||||
64 | maplog.c | ||||
Damjan Marion | 57d1ec0 | 2020-09-16 21:15:44 +0200 | [diff] [blame] | 65 | mem.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 66 | mem_dlmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 67 | mhash.c |
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 68 | mpcap.c |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 69 | pcap.c |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 70 | pmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 71 | pool.c |
72 | ptclosure.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 73 | random_buffer.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 74 | random.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 75 | random_isaac.c |
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 76 | rbtree.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 77 | serialize.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 78 | socket.c |
79 | std-formats.c | ||||
80 | string.c | ||||
81 | time.c | ||||
82 | time_range.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 83 | timing_wheel.c |
Dave Barach | d7b828f | 2020-04-01 16:54:00 -0400 | [diff] [blame] | 84 | tw_timer_2t_2w_512sl.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 85 | tw_timer_16t_1w_2048sl.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 86 | tw_timer_16t_2w_512sl.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 87 | tw_timer_1t_3w_1024sl_ov.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 88 | tw_timer_2t_1w_2048sl.c |
89 | tw_timer_4t_3w_256sl.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 90 | unformat.c |
91 | unix-formats.c | ||||
92 | unix-misc.c | ||||
93 | valloc.c | ||||
94 | vec.c | ||||
95 | vector.c | ||||
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame^] | 96 | cJSON.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 97 | ) |
98 | |||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 99 | set(VPPINFRA_HEADERS |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 100 | sanitizer.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 101 | bihash_16_8.h |
102 | bihash_24_8.h | ||||
103 | bihash_40_8.h | ||||
104 | bihash_48_8.h | ||||
105 | bihash_8_8.h | ||||
jiangxiaoming | 498889a | 2020-10-22 09:08:04 +0800 | [diff] [blame] | 106 | bihash_8_16.h |
107 | bihash_24_16.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 108 | bihash_template.c |
109 | bihash_template.h | ||||
110 | bihash_vec8_8.h | ||||
111 | bitmap.h | ||||
112 | bitops.h | ||||
113 | byte_order.h | ||||
114 | cache.h | ||||
Dave Barach | 5f2cfb2 | 2019-05-20 10:28:57 -0400 | [diff] [blame] | 115 | callback.h |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 116 | callback_data.h |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame^] | 117 | cJSON.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 118 | clib_error.h |
119 | clib.h | ||||
120 | cpu.h | ||||
121 | crc32.h | ||||
122 | dlist.h | ||||
123 | dlmalloc.h | ||||
124 | elf_clib.h | ||||
125 | elf.h | ||||
126 | elog.h | ||||
127 | error_bootstrap.h | ||||
128 | error.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 129 | fifo.h |
130 | file.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 131 | format.h |
132 | graph.h | ||||
133 | hash.h | ||||
134 | heap.h | ||||
135 | lb_hash_hash.h | ||||
Florin Coras | b957d80 | 2019-07-09 19:02:33 -0700 | [diff] [blame] | 136 | llist.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 137 | lock.h |
138 | longjmp.h | ||||
139 | macros.h | ||||
140 | maplog.h | ||||
141 | math.h | ||||
142 | memcpy_avx2.h | ||||
143 | memcpy_avx512.h | ||||
144 | memcpy_sse3.h | ||||
145 | mem.h | ||||
146 | mhash.h | ||||
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 147 | mpcap.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 148 | os.h |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 149 | pcap.h |
150 | pcap_funcs.h | ||||
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 151 | pmalloc.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 152 | pool.h |
Dave Barach | 4d1a866 | 2018-09-10 12:31:15 -0400 | [diff] [blame] | 153 | pmc.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 154 | ptclosure.h |
155 | random_buffer.h | ||||
156 | random.h | ||||
157 | random_isaac.h | ||||
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 158 | rbtree.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 159 | serialize.h |
Damjan Marion | cf18ca9 | 2019-04-13 00:13:34 +0200 | [diff] [blame] | 160 | sha2.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 161 | smp.h |
162 | socket.h | ||||
163 | sparse_vec.h | ||||
164 | string.h | ||||
165 | time.h | ||||
166 | time_range.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 167 | timing_wheel.h |
Yu Sun | 6f5b72e | 2020-04-16 13:56:12 -0400 | [diff] [blame] | 168 | tw_timer_2t_2w_512sl.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 169 | tw_timer_16t_1w_2048sl.h |
170 | tw_timer_16t_2w_512sl.h | ||||
171 | tw_timer_1t_3w_1024sl_ov.h | ||||
172 | tw_timer_2t_1w_2048sl.h | ||||
173 | tw_timer_4t_3w_256sl.h | ||||
174 | tw_timer_template.c | ||||
175 | tw_timer_template.h | ||||
176 | types.h | ||||
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 177 | atomics.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 178 | unix.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 179 | valloc.h |
180 | vec_bootstrap.h | ||||
181 | vec.h | ||||
182 | vector_altivec.h | ||||
183 | vector_avx2.h | ||||
184 | vector_avx512.h | ||||
185 | vector_funcs.h | ||||
186 | vector.h | ||||
187 | vector_neon.h | ||||
188 | vector_sse42.h | ||||
Benoît Ganne | be7dbbb | 2020-04-24 14:37:10 +0200 | [diff] [blame] | 189 | warnings.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 190 | xxhash.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 191 | linux/syscall.h |
192 | linux/sysfs.h | ||||
193 | ) | ||||
194 | |||||
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 195 | if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") |
196 | list(APPEND VPPINFRA_SRCS | ||||
197 | elf_clib.c | ||||
198 | linux/mem.c | ||||
199 | linux/sysfs.c | ||||
200 | ) | ||||
201 | endif() | ||||
202 | |||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 203 | add_vpp_library(vppinfra |
204 | SOURCES ${VPPINFRA_SRCS} | ||||
Florin Coras | 4c95995 | 2020-02-09 18:09:31 +0000 | [diff] [blame] | 205 | LINK_LIBRARIES m |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 206 | INSTALL_HEADERS ${VPPINFRA_HEADERS} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 207 | COMPONENT libvppinfra |
Damjan Marion | af7892c | 2020-10-22 14:23:47 +0200 | [diff] [blame] | 208 | LTO |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 209 | ) |
210 | |||||
211 | ############################################################################## | ||||
212 | # vppinfra headers | ||||
213 | ############################################################################## | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 214 | option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF) |
215 | if(VPP_BUILD_VPPINFRA_TESTS) | ||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 216 | foreach(test |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 217 | bihash_vec88 |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 218 | dlist |
219 | elf | ||||
220 | elog | ||||
221 | fifo | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 222 | format |
223 | fpool | ||||
224 | hash | ||||
225 | heap | ||||
226 | longjmp | ||||
227 | macros | ||||
228 | maplog | ||||
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 229 | pmalloc |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 230 | pool_iterate |
231 | ptclosure | ||||
232 | random | ||||
233 | random_isaac | ||||
jaszha03 | 25ab6cf | 2019-07-01 17:20:52 -0500 | [diff] [blame] | 234 | rwlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 235 | serialize |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 236 | socket |
jaszha03 | 9a4e631 | 2019-06-19 14:07:05 -0500 | [diff] [blame] | 237 | spinlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 238 | time |
239 | time_range | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 240 | tw_timer |
241 | valloc | ||||
242 | vec | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 243 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 244 | add_vpp_executable(test_${test} |
245 | SOURCES test_${test}.c | ||||
Florin Coras | 4f94464 | 2019-08-01 10:54:06 -0700 | [diff] [blame] | 246 | LINK_LIBRARIES vppinfra pthread |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 247 | ) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 248 | endforeach() |
249 | |||||
Dave Barach | 053d093 | 2020-04-22 10:02:31 -0400 | [diff] [blame] | 250 | foreach(test bihash_template) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 251 | add_vpp_executable(test_${test} |
252 | SOURCES test_${test}.c | ||||
253 | LINK_LIBRARIES vppinfra Threads::Threads | ||||
254 | ) | ||||
255 | endforeach() | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 256 | endif(VPP_BUILD_VPPINFRA_TESTS) |