forked from scylladb/seastar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
992 lines (811 loc) · 25.8 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
#
# This file is open source software, licensed to you under the terms
# of the Apache License, Version 2.0 (the "License"). See the NOTICE file
# distributed with this work for additional information regarding copyright
# ownership. You may not use this file except in compliance with the License.
#
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
#
# Copyright (C) 2018 Scylladb, Ltd.
#
cmake_minimum_required (VERSION 2.8)
project (seastar)
message (WARNING "CMake is not yet supported as the Seastar build system. Please use with caution.")
get_filename_component (SEASTAR_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR} ABSOLUTE)
get_filename_component (SEASTAR_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ABSOLUTE)
#
# Prologue.
#
# We define these manually because we want to be explicit about the options that are defined and because CMake defines
# NDEBUG by default, and we don't wish to.
set (CMAKE_CXX_FLAGS_DEBUG "-O0 -g")
set (CMAKE_CXX_FLAGS_RELEASE "-O2")
set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g")
set (CMAKE_CXX_FLAGS_MINSIZEREL "-Os")
# Set an option defined in a sub-directory.
# Courtesy of http://edsiper.linuxchile.cl/blog/2016/01/08/cmake-override-subdirectory-options/
macro (set_option option value)
set (${option} ${value} CACHE INTERNAL "" FORCE)
endmacro ()
#
# Configuration options.
#
option (SEASTAR_ENABLE_TESTS
"If OFF, used to disable testing altogether." ON)
option (SEASTAR_EXCLUDE_TESTS_BY_DEFAULT
"If ON, then tests are not built by default when the build tool is invoked"
ON)
option (SEASTAR_EXCLUDE_APPS_BY_DEFAULT
"If ON, then applications are not build by default when the build tool is invoked"
ON)
option(SEASTAR_ENABLE_WERROR "If ON, add -Werror to compile flags" ON)
set (SEASTAR_CXX_DIALECT
"gnu++17"
CACHE
STRING
"C++ dialect to build with.")
set (SEASTAR_CXX_OPTIMIZATION_FLAGS
""
CACHE
STRING
"Extra optimization flags for non-debug builds.")
set (SEASTAR_USER_CXXFLAGS
""
CACHE
STRING
"Extra CXXFLAGS, separated by semicolon.")
set (SEASTAR_USER_CFLAGS
""
CACHE
STRING
"Extra CFLAGS, separated by semicolon for DPDK submodule.")
set (SEASTAR_USER_LDFLAGS
""
CACHE
STRING
"Extra LDFLAGS, separated by semicolon.")
option (SEASTAR_ENABLE_HWLOC
"Enable hwloc support."
ON)
option (SEASTAR_ENABLE_DPDK
"Enable DPDK (from bundled sources)."
OFF)
option (SEASTAR_ENABLE_EXCEPTION_SCALABILITY_WORKAROUND
"Override the dl_iterate_phdr symbol to workaround C++ exception scalability issues."
OFF)
set (SEASTAR_ALLOCATOR_PAGE_SIZE
""
CACHE
STRING
"Override the allocator page size in bytes.")
option (SEASTAR_ENABLE_ALLOC_FAILURE_INJECTOR
"Enable allocation failure injection."
OFF)
option (SEASTAR_ENABLE_GCC6_CONCEPTS
"Enable experimental support for C++ concepts as implemented in GCC 6."
OFF)
option (SEASTAR_LINK_STATIC_BOOST
"Link with the Boost library statically."
OFF)
option (SEASTAR_LINK_STATIC_YAML_CPP
"Link with the yaml-cpp library statically."
OFF)
option (SEASTAR_EXECUTE_ONLY_FAST_TESTS
"Execute fast unit tests only, where applicable."
OFF)
set (SEASTAR_JENKINS
""
CACHE
STRING
"Configure the build and tests for execution within a Jenkins context, with the given identifier.")
#
# Link pools (only supported for the Ninja generator).
#
if (${CMAKE_GENERATOR} STREQUAL "Ninja")
exec_program ("${CMAKE_CURRENT_SOURCE_DIR}/cmake-tools/query_link_pool_depth.py"
OUTPUT_VARIABLE link_pool_depth
RETURN_VALUE query_pool_depth_code)
if (NOT ("${query_pool_depth_code}" STREQUAL 0))
MESSAGE (FATAL_ERROR "tools/query_link_pool_depth.py had a non-zero exit code.")
endif ()
set_property (GLOBAL PROPERTY
JOB_POOLS
seastar_link_pool=${link_pool_depth})
set_property (GLOBAL PROPERTY
CMAKE_JOB_POOL_LINK seastar_link_pool)
endif ()
#
# External projects.
#
set_option (CARES_STATIC YES)
set_option (CARES_SHARED NO)
set_option (CARES_INSTALL NO)
set_option (CARES_STATIC_PIC YES)
add_subdirectory (c-ares)
add_subdirectory (fmt)
#
# System dependencies.
#
set (CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
##
## Unconditional dependencies.
##
if (${SEASTAR_LINK_STATIC_BOOST})
set (Boost_USE_STATIC_LIBS ON)
endif ()
if (NOT TARGET Boost)
find_package (Boost COMPONENTS program_options filesystem unit_test_framework thread REQUIRED)
endif()
if (${Boost_VERSION} VERSION_LESS "1.58")
message(error "Seastar requires Boost >= 1.58")
endif ()
find_package (GnuTLS REQUIRED)
find_package (Protobuf REQUIRED)
find_package (Cryptopp REQUIRED)
find_package (Lz4 REQUIRED)
find_package (Yaml-cpp REQUIRED)
find_library (RT_LIBRARY rt DOC "The Posix Realtime extension library.")
find_program (Ragel_EXECUTABLE NAMES ragel DOC "Path to the ragel executable.")
##
## Conditional dependencies.
##
if (${SEASTAR_ENABLE_HWLOC})
find_package (HWLoc REQUIRED)
find_package (LibXml2 REQUIRED)
find_package (ZLIB REQUIRED)
find_library (NUMA_LIBRARY numa DOC "The NUMA support library.")
find_library (PCIAccess_LIBRARY pciaccess DOC "The pciaccess library.")
endif ()
#
# Code generation.
#
add_subdirectory (proto)
function (seastar_ragel_generate file output_var)
set (abs_file "${CMAKE_CURRENT_SOURCE_DIR}/${file}")
get_filename_component (base_name ${file} NAME_WE)
set (output_name "${base_name}.hh")
add_custom_command (
OUTPUT "${output_name}"
MAIN_DEPENDENCY ${abs_file}
COMMAND ${Ragel_EXECUTABLE} -G2 -o ${output_name} ${abs_file}
# sed away a bug in ragel 7 that emits some extraneous _nfa* variables.
COMMAND sed -i -e '1h\;2,$$H\;$$!d\;g' -re 's/static const char _nfa[^\;]*\;//g' ${output_name})
set ("${output_var}" "${CMAKE_CURRENT_BINARY_DIR}/${output_name}" PARENT_SCOPE)
endfunction ()
function (seastar_swagger_generate file output_var)
set (abs_file "${CMAKE_CURRENT_SOURCE_DIR}/${file}")
set (output_name "${file}.hh")
set (output_path "${CMAKE_CURRENT_BINARY_DIR}/${output_name}")
add_custom_command (
OUTPUT ${output_path}
MAIN_DEPENDENCY ${abs_file}
COMMAND "${SEASTAR_SOURCE_DIR}/json/json2code.py" -f ${abs_file} -o ${output_path})
set ("${output_var}" ${output_path} PARENT_SCOPE)
endfunction ()
add_subdirectory (http)
#
# Sources.
#
set (core_files
core/abort_source.hh
core/alien.hh core/alien.cc
core/align.hh
core/execution_stage.hh core/execution_stage.cc
core/aligned_buffer.hh
core/app-template.hh core/app-template.cc
core/apply.hh
core/array_map.hh
core/bitops.hh
core/bitset-iter.hh
core/byteorder.hh
core/cacheline.hh
core/checked_ptr.hh
core/chunked_fifo.hh
core/circular_buffer.hh
core/circular_buffer_fixed_capacity.hh
core/condition-variable.hh
core/deleter.hh
core/distributed.hh
core/do_with.hh
core/dpdk_rte.hh core/dpdk_rte.cc
core/enum.hh
core/exception_hacks.hh core/exception_hacks.cc
core/execution_stage.hh
core/expiring_fifo.hh
core/fair_queue.hh
core/file-impl.hh
core/file.hh
core/fsqual.hh core/fsqual.cc
core/fstream.hh core/fstream.cc
core/function_traits.hh
core/future-util.hh core/future-util.cc
core/future.hh
core/gate.hh
core/iostream-impl.hh
core/iostream.hh
core/linux-aio.hh core/linux-aio.cc
core/lowres_clock.hh
core/manual_clock.hh
core/memory.hh core/memory.cc
core/metrics.hh core/metrics.cc
core/metrics_api.hh
core/metrics_registration.hh
core/metrics_types.hh
core/pipe.hh
core/posix.hh core/posix.cc
core/preempt.hh
core/prefetch.hh
core/print.hh
core/prometheus.hh core/prometheus.cc
core/queue.hh
core/ragel.hh
core/reactor.hh core/reactor.cc
core/report_exception.hh
core/resource.hh core/resource.cc
core/rwlock.hh
core/scattered_message.hh
core/scheduling.hh
core/scollectd-impl.hh
core/scollectd.hh core/scollectd.cc
core/scollectd_api.hh
core/seastar.hh
core/semaphore.hh
core/sharded.hh
core/shared_future.hh
core/shared_mutex.hh
core/shared_ptr.hh
core/shared_ptr_debug_helper.hh
core/shared_ptr_incomplete.hh
core/simple-stream.hh
core/slab.hh
core/sleep.hh
core/sstring.hh
core/stall_sampler.hh
core/stream.hh
core/systemwide_memory_barrier.hh core/systemwide_memory_barrier.cc
core/task.hh
core/temporary_buffer.hh
core/thread.hh core/thread.cc
core/thread_impl.hh
core/timer-set.hh
core/timer.hh
core/transfer.hh
core/unaligned.hh
core/units.hh
core/vector-data-sink.hh
core/vla.hh
core/weak_ptr.hh)
set (http_files
http/api_docs.hh http/api_docs.cc
http/common.hh http/common.cc
http/exception.hh
http/file_handler.hh http/file_handler.cc
http/function_handlers.hh
http/handlers.hh
http/httpd.hh http/httpd.cc
http/json_path.hh http/json_path.cc
http/matcher.hh http/matcher.cc
http/matchrules.hh
http/mime_types.hh http/mime_types.cc
http/reply.hh http/reply.cc
http/request.hh
http/routes.hh http/routes.cc
http/transformers.hh http/transformers.cc)
set (json_files
json/formatter.hh json/formatter.cc
json/json_elements.hh json/json_elements.cc)
set (net_files
net/api.hh
net/arp.hh net/arp.cc
net/byteorder.hh
net/config.hh net/config.cc
net/const.hh
net/dhcp.hh net/dhcp.cc
net/dns.hh net/dns.cc
net/dpdk.hh net/dpdk.cc
net/ethernet.hh net/ethernet.cc
net/inet_address.hh net/inet_address.cc
net/ip.hh net/ip.cc
net/ip_checksum.hh net/ip_checksum.cc
net/native-stack-impl.hh
net/native-stack.hh net/native-stack.cc
net/net.hh net/net.cc
net/packet-data-source.hh
net/packet-util.hh
net/packet.hh net/packet.cc
net/posix-stack.hh net/posix-stack.cc
net/proxy.hh net/proxy.cc
net/socket_defs.hh
net/stack.hh net/stack.cc
net/tcp-stack.hh
net/tcp.hh net/tcp.cc
net/tls.hh net/tls.cc
net/toeplitz.hh
net/udp.hh net/udp.cc
net/virtio-interface.hh
net/virtio.hh net/virtio.cc)
set (rpc_files
rpc/lz4_compressor.hh rpc/lz4_compressor.cc
rpc/multi_algo_compressor_factory.hh
rpc/rpc.hh rpc/rpc.cc
rpc/rpc_impl.hh
rpc/rpc_types.hh)
set (util_files
util/alloc_failure_injector.hh util/alloc_failure_injector.cc
util/backtrace.hh util/backtrace.cc
util/bool_class.hh
util/conversions.hh util/conversions.cc
util/defer.hh
util/eclipse.hh
util/function_input_iterator.hh
util/gcc6-concepts.hh
util/indirect.hh
util/is_smart_ptr.hh
util/lazy.hh
util/log.hh util/log.cc
util/log-cli.hh
util/noncopyable_function.hh
util/optimized_optional.hh
util/print_safe.hh
util/program-options.hh util/program-options.cc
util/reference_wrapper.hh
util/spinlock.hh
util/transform_iterator.hh
util/tuple_utils.hh
util/variant_utils.hh)
add_library (seastar
${core_files}
${http_files}
${json_files}
${net_files}
${rpc_files}
${util_files}
$<TARGET_OBJECTS:seastar-protobuf>)
add_dependencies (seastar
seastar-http-response-parser
seastar-http-request-parser)
add_library (Seastar::seastar ALIAS seastar)
#
# DPDK.
#
if (${SEASTAR_ENABLE_DPDK})
set (dpdk_source_dir "${CMAKE_CURRENT_SOURCE_DIR}/dpdk")
set (dpdk_binary_dir "${CMAKE_CURRENT_BINARY_DIR}/dpdk")
#
# Oh, CMake...
#
set (arch "")
foreach (flag ${SEASTAR_USER_CXXFLAGS})
if (${flag} MATCHES "-march=(.+)")
set (arch ${CMAKE_MATCH_1})
endif ()
endforeach ()
if ("${arch}" STREQUAL "nehalem")
set (dpdk_machine "nhm")
elseif ("${arch}" STREQUAL "westmere")
set (dpdk_machine "wsm")
elseif ("${arch}" STREQUAL "sandybridge")
set (dpdk_machine "snb")
elseif ("${arch}" STREQUAL "ivybridge")
set (dpdk_machine "ivb")
else ()
set (dpdk_machine "native")
endif ()
if (EXISTS "${dpdk_binary_dir}/.config")
file (REMOVE "${dpdk_binary_dir}/.config")
endif ()
exec_program (make
ARGS -C ${dpdk_source_dir} RTE_OUTPUT=${dpdk_binary_dir} config "T=x86_64-${dpdk_machine}-linuxapp-gcc")
exec_program ("${CMAKE_CURRENT_SOURCE_DIR}/cmake-tools/dpdk_adjust_variables.py"
ARGS "${dpdk_binary_dir}/.config" ${dpdk_machine})
exec_program ("${CMAKE_CURRENT_SOURCE_DIR}/cmake-tools/dpdk_query_cflags.py"
ARGS ${dpdk_binary_dir} ${dpdk_machine}
OUTPUT_VARIABLE dpdk_cflags)
add_custom_target (seastar-dpdk
COMMAND make -C ${dpdk_binary_dir} CC=\"${CMAKE_C_COMPILER} -Wno-implicit-fallthrough -Wno-format-truncation -Wno-bool-operation -Wno-maybe-uninitialized ${SEASTAR_USER_CFLAGS}\")
add_dependencies (seastar seastar-dpdk)
target_include_directories (seastar SYSTEM PUBLIC "${dpdk_binary_dir}/include")
target_compile_options (seastar PUBLIC "${dpdk_cflags}")
endif ()
#
# Compilation flags and definitions.
#
target_compile_options (seastar
PRIVATE
-Wall
PUBLIC
"-std=${SEASTAR_CXX_DIALECT}"
-Wno-error=deprecated-declarations
-fvisibility=hidden
-U_FORTIFY_SOURCE)
if(SEASTAR_ENABLE_WERROR)
target_compile_options (seastar PRIVATE
-Werror
)
endif()
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
target_compile_options (seastar PUBLIC
-fsanitize=address
-fsanitize=leak
-fsanitize=undefined)
target_compile_definitions (seastar PUBLIC
SEASTAR_DEBUG
SEASTAR_DEBUG_SHARED_PTR
SEASTAR_DEFAULT_ALLOCATOR
SEASTAR_THREAD_STACK_GUARDS
SEASTAR_ASAN_ENABLED
SEASTAR_SHUFFLE_TASK_QUEUE)
else ()
target_compile_options (seastar PUBLIC "${SEASTAR_CXX_OPTIMIZATION_FLAGS}")
endif ()
if (${SEASTAR_ENABLE_GCC6_CONCEPTS})
target_compile_options (seastar PUBLIC -fconcepts)
target_compile_definitions (seastar PUBLIC SEASTAR_HAVE_GCC6_CONCEPTS)
endif ()
if (NOT ${SEASTAR_ENABLE_EXCEPTION_SCALABILITY_WORKAROUND})
target_compile_definitions (seastar PUBLIC
SEASTAR_NO_EXCEPTION_HACK)
endif ()
if (${SEASTAR_ENABLE_HWLOC})
target_compile_definitions (seastar PUBLIC
SEASTAR_HAVE_HWLOC SEASTAR_HAVE_NUMA)
endif ()
if (${SEASTAR_ENABLE_DPDK})
target_compile_options (seastar PUBLIC
-Wno-error=literal-suffix
-Wno-literal-suffix
-Wno-invalid-offsetof)
target_compile_definitions (seastar PUBLIC
SEASTAR_HAVE_DPDK)
endif ()
if (${SEASTAR_ALLOCATOR_PAGE_SIZE})
target_compile_definitions (seastar PUBLIC
SEASTAR_OVERRIDE_ALLOCATOR_PAGE_SIZE=${SEASTAR_ALLOCATOR_PAGE_SIZE})
endif ()
if (${SEASTAR_ENABLE_ALLOC_FAILURE_INJECTOR})
target_compile_definitions (seastar PUBLIC
SEASTAR_ENABLE_ALLOC_FAILURE_INJECTION)
endif ()
##
## Code tests.
##
###
### have_lz4_compress_default
###
set (CMAKE_REQUIRED_INCLUDES ${Lz4_INCLUDE_DIRS})
set (CMAKE_REQUIRED_LIBRARIES ${Lz4_LIBRARIES})
check_symbol_exists (LZ4_compress_default lz4.h have_lz4_compress_default)
if (${have_lz4_compress_default})
target_compile_definitions (seastar PUBLIC SEASTAR_HAVE_LZ4_COMPRESS_DEFAULT)
endif ()
###
### have_asan_fiber_support
###
try_compile (have_asan_fiber_support
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/cmake-tests/asan_fiber.cc
LINK_LIBRARIES -fsanitize=address)
if (${have_asan_fiber_support})
target_compile_definitions (seastar PUBLIC SEASTAR_HAVE_ASAN_FIBER_SUPPORT)
endif ()
###
### have_sanitize_vptr_flag
###
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67258
check_cxx_compiler_flag (-fsanitize=vptr have_sanitize_vptr_flag)
set (ENV{UBSAN_OPTIONS} "exitcode=1")
try_run (sanitize_vptr_run sanitize_vptr_compile
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/cmake-tests/sanitize_vptr.cc
CMAKE_FLAGS -DCMAKE_CXX_FLAGS="-fsanitize=undefined -fno-sanitize-recover")
# TODO: -fsanitize=vptr is broken even when the test passes.
if ((NOT "${have_sanitize_vptr_flag}") OR "${sanitize_vptr_run}" AND FALSE)
else ()
if ("${CMAKE_BUILD_TYPE}" STREQUAL Debug)
message (STATUS "-fsanitize=vptr is broken; disabling. Some debug-mode tests are bypassed.")
target_compile_options (seastar PUBLIC -fno-sanitize=vptr)
endif ()
endif ()
###
### visibility_flags_compile
###
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80947
try_compile (visiblity_flags_compile
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/cmake-tests/visibility_flags.cc
CMAKE_FLAGS -DCMAKE_CXX_FLAGS="-fvisibility=hidden -std=gnu++1y -Werror=attributes")
if (NOT "${visibility_flags_compile}")
message (STATUS "Disabling -Wattributes due to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80947")
target_compile_options (seastar PUBLIC -Wno-attributes)
endif ()
###
### have_membarrier
###
try_compile (have_membarrier
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/cmake-tests/have_membarrier.cc)
if (${have_membarrier})
target_compile_definitions (seastar PUBLIC SEASTAR_HAS_MEMBARRIER)
endif ()
##
## Warnings.
##
function (seastar_add_warning_if_supported warning)
# GCC ignores the `-Wno` prefix even when the warning is not recognized, so strip it.
string (REGEX REPLACE "^-Wno-" "-W" adjusted ${warning})
string (REGEX REPLACE "^-W" "warning_" human_name_prefix ${adjusted})
set (result "${human_name_prefix}_supported")
check_cxx_compiler_flag (${adjusted} ${result})
if ("${${result}}")
target_compile_options (seastar PUBLIC ${warning})
endif ()
endfunction ()
# Clang-only.
seastar_add_warning_if_supported (-Wno-mismatched-tags)
# Clang-only: moving a temporary object prevents copy elision.
seastar_add_warning_if_supported (-Wno-pessimizing-move)
# Clang-only: redundant move in return statement.
seastar_add_warning_if_supported (-Wno-redundant-move)
# Clang-only: 'x' overrides a member function but is not marked 'override'.
seastar_add_warning_if_supported (-Wno-inconsistent-missing-override)
# Clang-only: private field 'x' is not used.
seastar_add_warning_if_supported (-Wno-unused-private-field)
# Clang-only: unknown attribute 'x' ignored (x in this case is gnu::externally_visible).
seastar_add_warning_if_supported (-Wno-unknown-attributes)
# Clang-only: 'x' function 'y' declared in header file should be declared 'z'.
seastar_add_warning_if_supported (-Wno-unneeded-internal-declaration)
# Clang-only: inline function 'x' is not defined.
seastar_add_warning_if_supported (-Wno-undefined-inline)
# Clang-only: 'x' hides overloaded virtual functions.
seastar_add_warning_if_supported (-Wno-overloaded-virtual)
seastar_add_warning_if_supported (-Wno-maybe-uninitialized)
# GCC: Overzealous: false positives.
seastar_add_warning_if_supported (-Wno-stringop-overflow)
seastar_add_warning_if_supported (-Wno-error=cpp)
##
## Extra flags at the end.
##
target_compile_options (seastar PUBLIC "${SEASTAR_USER_CXXFLAGS}")
#
# Configuration.
#
target_include_directories (seastar SYSTEM
PUBLIC
${GNUTLS_INCLUDE_DIR})
target_include_directories (seastar PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR})
if (${SEASTAR_NABLE_HWLOC})
target_include_directories (seastar SYSTEM
PUBLIC
${LIBXML2_INCLUDE_DIRS})
endif ()
target_link_libraries (seastar PUBLIC
-Wl,--no-as-needed
-fvisibility=hidden)
target_link_libraries (seastar PUBLIC
debug -fsanitize=address
debug -fsanitize=leak
debug -fsanitize=undefined
stdc++fs
-ldl
-lgcc_s
${CMAKE_THREAD_LIBS_INIT}
${GNUTLS_LIBRARIES}
${PROTOBUF_LIBRARIES}
${RT_LIBRARY}
Boost::boost # Headers only.
Cryptopp::cryptopp
Lz4::lz4
fmt::fmt
c-ares::cares)
function (seastar_maybe_link_statically static_flag)
string (REPLACE ";" "," joined_targets "${ARGN}")
if (${static_flag})
target_link_libraries (seastar PUBLIC "-Wl,-Bstatic" "${joined_targets}" "-Wl,-Bdynamic")
else ()
target_link_libraries (seastar PUBLIC "${ARGN}")
endif ()
endfunction ()
seastar_maybe_link_statically (${SEASTAR_LINK_STATIC_BOOST}
Boost::program_options
Boost::filesystem
Boost::thread)
seastar_maybe_link_statically (${SEASTAR_LINK_STATIC_YAML_CPP}
Yaml-cpp::yaml-cpp)
if (${SEASTAR_ENABLE_HWLOC})
target_link_libraries (seastar PUBLIC
${NUMA_LIBRARY}
${PCIAccess_LIBRARY}
${LIBXML2_LIBRARIES}
HWLoc::hwloc
ZLIB::ZLIB)
endif ()
if (${SEASTAR_ENABLE_DPDK})
set (dpdk_libraries
-lrte_pmd_vmxnet3_uio
-lrte_pmd_i40e
-lrte_pmd_ixgbe
-lrte_pmd_e1000
-lrte_pmd_ring
-lrte_pmd_bnxt
-lrte_pmd_cxgbe
-lrte_pmd_ena
-lrte_pmd_enic
-lrte_pmd_fm10k
-lrte_pmd_nfp
-lrte_pmd_qede
-lrte_pmd_sfc_efx
-lrte_hash
-lrte_kvargs
-lrte_mbuf
-lrte_ethdev
-lrte_eal
-lrte_mempool
-lrte_ring
-lrte_cmdline
-lrte_cfgfile)
string (REPLACE ";" "," joined_dpdk_libraries "${dpdk_libraries}")
target_link_libraries (seastar PUBLIC
-L"${dpdk_binary_dir}/lib"
-Wl,--whole-archive,${joined_dpdk_libraries},--no-whole-archive)
endif ()
target_link_libraries (seastar PUBLIC "${SEASTAR_USER_LDFLAGS}")
#
# Applications.
#
if (${SEASTAR_EXCLUDE_APPS_BY_DEFAULT})
set (exclude_apps EXCLUDE_FROM_ALL)
else ()
set (exclude_apps "")
endif ()
add_subdirectory (apps ${exclude_apps})
#
# Tests.
#
enable_testing ()
if (${SEASTAR_EXCLUDE_TESTS_BY_DEFAULT})
set (exclude_tests EXCLUDE_FROM_ALL)
else ()
set (exclude_tests "")
endif ()
if(${SEASTAR_ENABLE_TESTS})
add_subdirectory (tests ${exclude_tests})
endif()
#
# Documentation.
#
add_custom_target (tutorial-html
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMAND
pandoc
--self-contained
--smart
--toc
-c doc/template.css
-V documentclas=report
--chapters
--number-sections
-f markdown_github+pandoc_title_block
--highlight-style tango
doc/tutorial.md
-o doc/tutorial.html)
add_custom_target (tutorial-html-split
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/doc"
COMMAND mkdir -p split && ./htmlsplit.py
DEPENDS tutorial-html)
add_custom_target (tutorial-pdf
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMAND
pandoc
-f markdown_github+pandoc_title_block
--highlight-style tango
--template=doc/template.tex
doc/tutorial.md
-o doc/tutorial.pdf)
#
# Source code navigation tools.
#
add_custom_target (cscope
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMAND sh -c find -name '*.[chS]' -o -name '*.cc' -o -name '*.hh' | cscope -bq -i-)
#
# Generate pkg-config specification.
#
# This is quite ugly, since we need to extract information from imported targets
# (like `Boost::program_options`) and resolve generator expessions ($<...>).
# CMake doesn't make it easy to do either.
set (imported_target_regex "[a-zA-Z0-9_\\-]+::[a-zA-ZA0-9_\\-]+")
set (pc_cflags "")
set (pc_libs "")
##
## Query an imported target for all its non-linking compiler options.
##
function (seastar_expand_imported_target_cflags target output)
get_target_property (definitions ${target} INTERFACE_COMPILE_DEFINITIONS)
get_target_property (options ${target} INTERFACE_COMPILE_OPTIONS)
get_target_property (include_dirs ${target} INTERFACE_INCLUDE_DIRECTORIES)
set (cflags "")
if (definitions)
# All definitions need to be prefixed with -D.
string (REGEX REPLACE "([^;]+)" -D\\1 definitions_args "${definitions}")
list (APPEND cflags "${definitions_args}")
endif ()
if (options)
list (APPEND cflags "${options}")
endif ()
if (include_dirs)
list (REMOVE_DUPLICATES include_dirs)
##
## All directories need to be prefixed with -I. We only care about
## BUILD_INTERFACE directories, so we have to manually remove the
## INSTALL_INTERFACE ones.
##
string (REGEX REPLACE "([^;]+)" -I\\1 include_dirs_args "${include_dirs}")
string (REGEX REPLACE "-I\\$<INSTALL_INTERFACE:.+>" "" include_dirs_args_no_empty "${include_dirs_args}")
list (APPEND cflags "${include_dirs_args_no_empty}")
endif ()
set ("${output}" "${cflags}" PARENT_SCOPE)
endfunction ()
function (seastar_expand_imported_target_libs target output)
get_target_property (libs ${target} INTERFACE_LINK_LIBRARIES)
set ("${output}" "${libs}" PARENT_SCOPE)
endfunction ()
##
## Start with the CMAKE_CXX cflags.
##
string (TOUPPER "${CMAKE_BUILD_TYPE}" build_type_uppercase)
string (REGEX REPLACE "[ ]+" ";" global_cflags "${CMAKE_CXX_FLAGS_${build_type_uppercase}}")
list (APPEND pc_cflags "${global_cflags}")
seastar_expand_imported_target_cflags (Seastar::seastar seastar_cflags)
list (APPEND pc_cflags "${seastar_cflags}")
##
## We expand the seastar library flags and process each one, looking for imported targets.
##
seastar_expand_imported_target_libs (Seastar::seastar seastar_libs_raw)
foreach (lib ${seastar_libs_raw})
if (${lib} MATCHES ${imported_target_regex})
##
## For an imported target, expand its CFLAGS.
##
seastar_expand_imported_target_cflags (${lib} lib_cflags)
list (APPEND pc_cflags "${lib_cflags}")
##
## For non-header-only libraries, add the imported target's actual library file.
##
get_target_property (lib_type ${lib} TYPE)
if (NOT ("${lib_type}" STREQUAL INTERFACE_LIBRARY))
set (lib_location $<TARGET_FILE:${lib}>)
list (APPEND pc_libs "${lib_location}")
endif ()
else ()
list (APPEND pc_libs "${lib}")
endif ()
endforeach ()
list (REMOVE_DUPLICATES pc_cflags)
set (pc_file "${CMAKE_CURRENT_BINARY_DIR}/seastar.pc")
# At this point, both pc_libs and pc_cflags can contain generator expressions
# ($<...>). CMake gives us no way to evaluate these in code. They are evaluated
# by CMake internally at the build phase (but not the configure phase). Creating
# a target and echoing the strings forces their evaluation at the right time.
# This would not be possible with CONFIGURE_FILE.
#
# Note that seastar needs to be listed prior to other static libraries to
# prevent symbols from being omitted from them.
add_custom_target (pkg-config ALL
COMMAND echo "Name: Seastar" > ${pc_file}
COMMAND echo "URL: http://seastar-project.org/" >> ${pc_file}
COMMAND echo "Description: Advanced C++ framework for high-performance server applications on modern hardware." >> ${pc_file}
COMMAND echo "Version: 1.0" >> ${pc_file}
COMMAND echo "Libs:" '-Wl,--whole-archive,$<TARGET_FILE:Seastar::seastar>,--no-whole-archive' '${pc_libs}' >> ${pc_file}
COMMAND echo "Cflags:" '${pc_cflags}' >> ${pc_file})