build: add vppinfra/warnings.h to exported headers list
[vpp.git] / src / vppinfra / CMakeLists.txt
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 ##############################################################################
19 set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE})
20 option(VPP_USE_DLMALLOC "Use dlmalloc memory allocator." ON)
21 if(VPP_USE_DLMALLOC)
22   set(DLMALLOC 1)
23 else(VPP_USE_DLMALLOC)
24   set(DLMALLOC 0)
25 endif(VPP_USE_DLMALLOC)
26
27 configure_file(
28   ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in
29   ${CMAKE_BINARY_DIR}/vppinfra/config.h
30 )
31
32 install(
33   FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h
34   DESTINATION include/vppinfra
35   COMPONENT vpp-dev
36 )
37
38 ##############################################################################
39 # vppinfra sources
40 ##############################################################################
41 set(VPPINFRA_SRCS
42   backtrace.c
43   bihash_all_vector.c
44   cpu.c
45   cuckoo_template.c
46   elf.c
47   elog.c
48   error.c
49   fheap.c
50   fifo.c
51   format.c
52   graph.c
53   hash.c
54   heap.c
55   longjmp.S
56   macros.c
57   maplog.c
58   mhash.c
59   mpcap.c
60   pcap.c
61   pmalloc.c
62   pool.c
63   ptclosure.c
64   random.c
65   random_buffer.c
66   random_isaac.c
67   rbtree.c
68   serialize.c
69   slist.c
70   socket.c
71   std-formats.c
72   string.c
73   time.c
74   time_range.c
75   timing_wheel.c
76   tw_timer_2t_1w_2048sl.c
77   tw_timer_16t_2w_512sl.c
78   tw_timer_16t_1w_2048sl.c
79   tw_timer_4t_3w_256sl.c
80   tw_timer_1t_3w_1024sl_ov.c
81   unformat.c
82   unix-formats.c
83   unix-misc.c
84   valloc.c
85   vec.c
86   vector.c
87   zvec.c
88 )
89
90 set(VPPINFRA_HEADERS
91   bihash_16_8.h
92   bihash_24_8.h
93   bihash_40_8.h
94   bihash_48_8.h
95   bihash_8_8.h
96   bihash_template.c
97   bihash_template.h
98   bihash_vec8_8.h
99   bitmap.h
100   bitops.h
101   byte_order.h
102   cache.h
103   callback.h
104   clib_error.h
105   clib.h
106   cpu.h
107   crc32.h
108   dlist.h
109   dlmalloc.h
110   elf_clib.h
111   elf.h
112   elog.h
113   error_bootstrap.h
114   error.h
115   fheap.h
116   fifo.h
117   file.h
118   flowhash_24_16.h
119   flowhash_8_8.h
120   flowhash_template.h
121   format.h
122   graph.h
123   hash.h
124   heap.h
125   lb_hash_hash.h
126   llist.h
127   lock.h
128   longjmp.h
129   macros.h
130   maplog.h
131   math.h
132   memcpy_avx2.h
133   memcpy_avx512.h
134   memcpy_sse3.h
135   mem.h
136   mhash.h
137   mheap_bootstrap.h
138   mheap.h
139   mpcap.h
140   os.h
141   pcap.h
142   pcap_funcs.h
143   pipeline.h
144   pmalloc.h
145   pool.h
146   pmc.h
147   ptclosure.h
148   random_buffer.h
149   random.h
150   random_isaac.h
151   rbtree.h
152   serialize.h
153   sha2.h
154   slist.h
155   smp.h
156   socket.h
157   sparse_vec.h
158   string.h
159   time.h
160   time_range.h
161   timing_wheel.h
162   tw_timer_16t_1w_2048sl.h
163   tw_timer_16t_2w_512sl.h
164   tw_timer_1t_3w_1024sl_ov.h
165   tw_timer_2t_1w_2048sl.h
166   tw_timer_4t_3w_256sl.h
167   tw_timer_template.c
168   tw_timer_template.h
169   types.h
170   atomics.h
171   unix.h
172   valgrind.h
173   valloc.h
174   vec_bootstrap.h
175   vec.h
176   vector_altivec.h
177   vector_avx2.h
178   vector_avx512.h
179   vector_funcs.h
180   vector.h
181   vector_neon.h
182   vector_sse42.h
183   warnings.h
184   xxhash.h
185   xy.h
186   zvec.h
187   linux/syscall.h
188   linux/sysfs.h
189 )
190
191 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
192   list(APPEND VPPINFRA_SRCS
193     elf_clib.c
194     linux/mem.c
195     linux/sysfs.c
196    )
197 endif()
198
199
200 if(VPP_USE_DLMALLOC)
201   list(APPEND VPPINFRA_SRCS
202     dlmalloc.c
203     mem_dlmalloc.c
204   )
205 else(VPP_USE_DLMALLOC)
206   list(APPEND VPPINFRA_SRCS
207     mheap.c
208     mem_mheap.c
209   )
210 endif(VPP_USE_DLMALLOC)
211
212 add_vpp_library(vppinfra
213   SOURCES ${VPPINFRA_SRCS}
214   LINK_LIBRARIES m
215   INSTALL_HEADERS ${VPPINFRA_HEADERS}
216   COMPONENT libvppinfra
217 )
218
219 ##############################################################################
220 # vppinfra headers
221 ##############################################################################
222 option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
223 if(VPP_BUILD_VPPINFRA_TESTS)
224   foreach(test
225     bihash_vec88
226     cuckoo_template
227     dlist
228     elf
229     elog
230     fifo
231     flowhash_template
232     format
233     fpool
234     hash
235     heap
236     longjmp
237     macros
238     maplog
239     pmalloc
240     pool_iterate
241     ptclosure
242     random
243     random_isaac
244     rwlock
245     serialize
246     slist
247     socket
248     spinlock
249     time
250     time_range
251     timing_wheel
252     tw_timer
253     valloc
254     vec
255     zvec
256   )
257     add_vpp_executable(test_${test}
258       SOURCES test_${test}.c
259       LINK_LIBRARIES vppinfra pthread
260       )
261   endforeach()
262
263   foreach(test bihash_template cuckoo_bihash)
264     add_vpp_executable(test_${test}
265       SOURCES test_${test}.c
266       LINK_LIBRARIES vppinfra Threads::Threads
267       )
268   endforeach()
269 endif(VPP_BUILD_VPPINFRA_TESTS)