-
Notifications
You must be signed in to change notification settings - Fork 448
/
CMakeLists.txt
1466 lines (1278 loc) · 55 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
993
994
995
996
997
998
999
1000
cmake_minimum_required(VERSION 3.16)
# Required for LLVM / JIT, alternative to setting CMP0065 to OLD
set(CMAKE_ENABLE_EXPORTS True)
set(ENABLE_CONDA OFF)
if(DEFINED ENV{CONDA_PREFIX})
set(ENABLE_CONDA ON)
list(APPEND CMAKE_PREFIX_PATH "$ENV{CONDA_PREFIX}")
# add a compile definition for conda build
add_definitions("-DCONDA_BUILD")
# resolves link issue for zlib
link_directories("$ENV{CONDA_PREFIX}/lib" "$ENV{CONDA_PREFIX}/Library/lib")
# various fixes and workarounds
add_definitions("-Dsecure_getenv=getenv")
# fixes `undefined reference to `boost::system::detail::system_category_instance'`:
add_definitions("-DBOOST_ERROR_CODE_HEADER_ONLY")
# Adding formating macros
add_definitions("-D__STDC_FORMAT_MACROS=1")
# fixes always_inline attribute errors
add_compile_options("$<$<COMPILE_LANGUAGE:CXX>:-fno-semantic-interposition>")
# Adding `--sysroot=...` resolves `no member named 'signbit' in the global namespace` error:
set(CMAKE_SYSROOT "$ENV{CONDA_BUILD_SYSROOT}")
endif(DEFINED ENV{CONDA_PREFIX})
# force `Release` build type if left unspecified
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
endif()
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER)
if("${CMAKE_VERSION}" VERSION_GREATER 3.11.999)
cmake_policy(SET CMP0074 NEW)
endif()
find_program(CCACHE_EXE ccache)
if(CCACHE_EXE)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_EXE}")
endif()
option(ENABLE_IWYU "Enable include-what-you-use" OFF)
if(ENABLE_IWYU)
find_program(IWYU_EXE include-what-you-use)
if(IWYU_EXE)
set(CMAKE_CXX_INCLUDE_WHAT_YOU_USE "${IWYU_EXE}")
endif()
endif()
project(heavyai)
# ENABLE_IWYU: Generates .iwyu files suitable for input into include-what-you-use's fix_includes.py tool.
option(ENABLE_IWYU "Enable include-what-you-use advice (.iwyu files for fix_includes.py)" OFF)
if(ENABLE_IWYU)
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
find_program(IWYU_EXE include-what-you-use)
if(IWYU_EXE)
set(CMAKE_CXX_INCLUDE_WHAT_YOU_USE "${CMAKE_SOURCE_DIR}/scripts/do-iwyu;${IWYU_EXE};-Xiwyu --cxx17ns")
else()
message(FATAL_ERROR "ENABLE_IWYU failed to find the include-what-you-use binary")
endif()
else()
message(FATAL_ERROR "ENABLE_IWYU may only be used with the clang compiler (need to set CMAKE_CXX_COMPILER)")
endif()
endif()
# ENABLE_TIME_TRACE: Generates .json files with build timings viewable in a chrome://tracing/ flame graph.
option(ENABLE_TIME_TRACE "Enable build time tracing (.json files for chrome://tracing/)" OFF)
if(ENABLE_TIME_TRACE)
if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 9.0))
add_compile_options("$<$<COMPILE_LANGUAGE:CXX>:-ftime-trace>")
# Adding -ftime-trace to clang++ for linking seems to have no effect.
# Leaving the commented-out setting here for further investigation.
#add_link_options("$<$<LINK_LANGUAGE:CXX>:-ftime-trace>") # For after we upgrade to: cmake 3.18+
#add_link_options("-ftime-trace")
else()
message(FATAL_ERROR "ENABLE_TIME_TRACE may only be used with the clang compiler 9.0+ (need to set CMAKE_CXX_COMPILER)")
endif()
endif()
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/Rendering")
set(MAPD_EDITION "OS")
elseif(NOT DEFINED MAPD_EDITION)
set(MAPD_EDITION "EE")
endif()
set(MAPD_EDITION "${MAPD_EDITION}" CACHE STRING "MapD edition" FORCE)
set_property(CACHE MAPD_EDITION PROPERTY STRINGS "EE" "CE" "OS")
add_definitions("-DMAPD_EDITION_${MAPD_EDITION}")
string(TOLOWER "${MAPD_EDITION}" MAPD_EDITION_LOWER)
# HeavyDB version number
set(MAPD_VERSION_MAJOR "8")
set(MAPD_VERSION_MINOR "0")
set(MAPD_VERSION_PATCH "0")
set(MAPD_VERSION_EXTRA "dev")
set(MAPD_VERSION_RAW "${MAPD_VERSION_MAJOR}.${MAPD_VERSION_MINOR}.${MAPD_VERSION_PATCH}${MAPD_VERSION_EXTRA}")
set(MAPD_IMMERSE_BUILD_ID "immerse-v2-latest-master-prod" CACHE STRING "Immerse Build ID")
set(MAPD_IMMERSE_URL "http://builds.mapd.com/frontend/${MAPD_IMMERSE_BUILD_ID}.zip")
string(TIMESTAMP MAPD_BUILD_DATE "%Y%m%d")
if($ENV{BUILD_NUMBER})
set(MAPD_BUILD_NUMBER "$ENV{BUILD_NUMBER}")
else()
set(MAPD_BUILD_NUMBER "dev")
endif()
set(MAPD_VERSION "${MAPD_VERSION_RAW}-${MAPD_BUILD_NUMBER}")
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")
add_custom_target(clean-all
COMMAND ${CMAKE_BUILD_TOOL} clean
)
macro(set_alternate_linker linker)
find_program(LINKER_EXECUTABLE ld.${USE_ALTERNATE_LINKER} ${USE_ALTERNATE_LINKER})
if(LINKER_EXECUTABLE)
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" AND "${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS 12.0.0)
add_link_options("-ld-path=${USE_ALTERNATE_LINKER}")
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND "${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS 12.1.0 AND "${USE_ALTERNATE_LINKER}" STREQUAL "mold")
# LINKER_EXECUTABLE will be a full path to ld.mold, so we replace the end of the path, resulting in the relative
# libexec/mold dir, and tell GCC to look there first for an override version of executables, in this case, ld
string(REPLACE "bin/ld.mold" "libexec/mold" PATH_TO_LIBEXEC_MOLD ${LINKER_EXECUTABLE})
add_link_options("-B${PATH_TO_LIBEXEC_MOLD}")
else()
add_link_options("-fuse-ld=${USE_ALTERNATE_LINKER}")
endif()
else()
set(USE_ALTERNATE_LINKER "" CACHE STRING "Use alternate linker" FORCE)
endif()
endmacro()
macro(InstallVersionFile)
# `touch mapd_deps_version.txt` from build dir to silence warning.
find_file(MapdDepsVersion_FILE mapd_deps_version.txt PATH ${CMAKE_BINARY_DIR} NO_CACHE)
if(NOT MapdDepsVersion_FILE)
message(WARNING "Build could NOT find deps version file mapd_deps_version.txt")
else()
message(STATUS "Found deps version file ${MapdDepsVersion_FILE}")
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/version)
set(HEAVY_DEPS_CUSTOM ${CMAKE_BINARY_DIR}/version/heavyai_deps_version.txt)
# cp mapd_version data to heavyai deps, removing un-tagged lines.
add_custom_command(OUTPUT ${HEAVY_DEPS_CUSTOM}
DEPENDS ${MapdDepsVersion_FILE}
COMMAND ${CMAKE_COMMAND} -E copy ${MapdDepsVersion_FILE} ${HEAVY_DEPS_CUSTOM}
# In the copied deps files leave the first line with the deps generated info
# and any other line starting with 'Public Release:', though remove the public release tag
VERBATIM
COMMAND "sed" "-i" "-n" "/^Public Release:/s/^Public Release://p" ${HEAVY_DEPS_CUSTOM})
add_custom_target(HeavyDepsVersionTarget DEPENDS ${HEAVY_DEPS_CUSTOM})
add_dependencies(heavydb HeavyDepsVersionTarget)
install(FILES ${HEAVY_DEPS_CUSTOM} DESTINATION "." COMPONENT "doc")
endif()
endmacro()
set(USE_ALTERNATE_LINKER "" CACHE STRING "Use alternate linker. Leave empty for system default; alternatives are 'gold', 'lld', 'bfd', 'mold'")
if(NOT "${USE_ALTERNATE_LINKER}" STREQUAL "")
set_alternate_linker(${USE_ALTERNATE_LINKER})
endif()
# Ensure that boost's uuid implementation links bcrypt correctly under windows;
# see issue described here: https://github.com/microsoft/vcpkg/issues/4481
if(WIN32)
message(STATUS "Defining BOOST_UUID_FORCE_AUTO_LINK")
add_definitions(-DBOOST_UUID_FORCE_AUTO_LINK)
endif()
option(PREFER_STATIC_LIBS "Prefer linking against static libraries" OFF)
if(PREFER_STATIC_LIBS)
set(CMAKE_FIND_LIBRARY_SUFFIXES .lib .a ${CMAKE_FIND_LIBRARY_SUFFIXES})
set(Arrow_USE_STATIC_LIBS ON)
set(Boost_USE_STATIC_LIBS ON)
set(OPENSSL_USE_STATIC_LIBS ON)
set(Thrift_USE_STATIC_LIBS ON)
if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++")
endif()
set(CUDA_USE_STATIC_CUDA_RUNTIME ON CACHE STRING "Use static CUDA runtime")
# On ppc, build failures occur for targets that depend on locale related functions due to unresolved symbols that are
# present in the stdc++ library. Add the library flag to these targets to be used in resolving these symbols.
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "ppc64le")
set(LOCALE_LINK_FLAG "-lstdc++")
endif()
else()
add_definitions("-DBOOST_LOG_DYN_LINK")
endif()
# Required for macOS with Boost 1.71.0+
# See https://gitlab.kitware.com/cmake/cmake/issues/19714
set(Boost_NO_BOOST_CMAKE 1)
option(ENABLE_JAVA_REMOTE_DEBUG "Enable Java Remote Debug" OFF )
if(ENABLE_JAVA_REMOTE_DEBUG)
add_definitions("-DENABLE_JAVA_REMOTE_DEBUG")
endif()
# Disable by default until a more satisfactory resolution to QE-215 is found.
option(ENABLE_UTM_TRANSFORM "Enable ST_TRANSFORM() with UTM Support" OFF )
if(ENABLE_UTM_TRANSFORM )
add_definitions("-DENABLE_UTM_TRANSFORM")
endif()
option(ENABLE_L0 "Enable level zero support" OFF)
if(ENABLE_L0)
find_package(LevelZero REQUIRED COMPONENTS ${LevelZero_COMPONENTS})
add_definitions("-DHAVE_L0")
endif()
option(ENABLE_CUDA "Enable CUDA support" ON)
if(ENABLE_CUDA)
enable_language(CUDA)
include_directories(${CMAKE_CUDA_TOOLKIT_INCLUDE_DIRECTORIES})
list(APPEND CUDA_LIBRARIES cuda)
add_definitions("-DHAVE_CUDA")
else()
set(CUDA_LIBRARIES "")
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-cpu")
endif()
# CUDA architecture flags
if("${CMAKE_BUILD_TYPE_LOWER}" STREQUAL "debug")
option(ENABLE_ONLY_ONE_ARCH "Enable quicker building for only one GPU arch" ON)
else()
option(ENABLE_ONLY_ONE_ARCH "Enable quicker building for only one GPU arch" OFF)
endif()
if(ENABLE_CUDA)
set(MAPD_CUDA_OPTIONS)
# Set Thrust debug mode for CUDA compilation project-wide
string(TOUPPER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_UPPERCASE)
if(CMAKE_BUILD_TYPE_UPPERCASE MATCHES DEBUG)
list(APPEND MAPD_CUDA_OPTIONS -DTHRUST_DEBUG --debug)
else()
list(APPEND MAPD_CUDA_OPTIONS -O3)
endif()
list(APPEND MAPD_CUDA_OPTIONS -Xcompiler -fPIC -D_FORCE_INLINES -std=c++17)
if(ENABLE_ONLY_ONE_ARCH)
execute_process(
COMMAND cmake -S ${CMAKE_SOURCE_DIR}/NvidiaComputeCapability -B NvidiaComputeCapability
OUTPUT_QUIET
ERROR_QUIET
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
)
execute_process(
COMMAND cmake --build NvidiaComputeCapability
OUTPUT_FILE ${CMAKE_BINARY_DIR}/NvidiaComputeCapability/build.out.txt
ERROR_FILE ${CMAKE_BINARY_DIR}/NvidiaComputeCapability/build.err.txt
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
)
set(NVIDIA_COMPUTE_CAPABILITY "")
if (EXISTS ${CMAKE_BINARY_DIR}/NvidiaComputeCapability.txt)
file(STRINGS ${CMAKE_BINARY_DIR}/NvidiaComputeCapability.txt NVIDIA_COMPUTE_CAPABILITY)
endif()
endif()
if (ENABLE_ONLY_ONE_ARCH AND NOT "${NVIDIA_COMPUTE_CAPABILITY}" STREQUAL "")
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.18.0")
set(CMAKE_CUDA_ARCHITECTURES ${NVIDIA_COMPUTE_CAPABILITY}-virtual)
list(APPEND MAPD_CUDA_OPTIONS -Wno-deprecated-gpu-targets)
message(STATUS "CUDA_ARCHITECTURES: ${CMAKE_CUDA_ARCHITECTURES}")
else()
set (CUDA_COMPILATION_ARCH
-gencode=arch=compute_${NVIDIA_COMPUTE_CAPABILITY},code=compute_${NVIDIA_COMPUTE_CAPABILITY}
-Wno-deprecated-gpu-targets
)
message(STATUS "CUDA_COMPILATION_ARCH: ${CUDA_COMPILATION_ARCH}")
add_compile_options("$<$<COMPILE_LANGUAGE:CUDA>:${CUDA_COMPILATION_ARCH}>")
endif()
add_custom_target(clean_nvidia_compute_capability
COMMAND ${CMAKE_BUILD_TOOL} clean
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/NvidiaComputeCapability
)
add_dependencies(clean-all clean_nvidia_compute_capability)
else()
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.18.0")
message(STATUS "CMake 3.18+, Setting CUDA_ARCHITECTURES.")
set(CMAKE_CUDA_ARCHITECTURES
50-virtual
60-virtual
70-virtual
75-virtual
80-virtual)
list(APPEND MAPD_CUDA_OPTIONS -Wno-deprecated-gpu-targets)
message(STATUS "CUDA_ARCHITECTURES: ${CMAKE_CUDA_ARCHITECTURES}")
else()
message(STATUS "CMake 3.17 or under, setting CUDA architecture flags manually.")
set(CUDA_COMPILATION_ARCH
-gencode=arch=compute_50,code=compute_50;
-gencode=arch=compute_60,code=compute_60;
-gencode=arch=compute_70,code=compute_70;
-gencode=arch=compute_75,code=compute_75;
-gencode=arch=compute_80,code=compute_80;
-Wno-deprecated-gpu-targets)
message(STATUS "CUDA_COMPILATION_ARCH: ${CUDA_COMPILATION_ARCH}")
list(APPEND MAPD_CUDA_OPTIONS ${CUDA_COMPILATION_ARCH})
endif()
if(ENABLE_ONLY_ONE_ARCH)
message(STATUS "ENABLE_ONLY_ONE_ARCH ignored because NvidiaComputeCapability.txt not found or not readable")
endif()
endif()
if("${CMAKE_CUDA_COMPILER_ID}" STREQUAL "NVIDIA")
include(ProcessorCount)
ProcessorCount(N)
if(CMAKE_CUDA_COMPILER_VERSION GREATER_EQUAL 11.3 AND NOT N EQUAL 0)
message(STATUS "Enabling NVCC multi-threaded compilation with ${N} threads.")
# Adding to MAPD_CUDA_OPTIONS ensures that code that is compiled via generator expression (eg thrust) uses threads
# This breaks the VSCode language server with CMake versions > 16.5, so disable this for now
# list(APPEND MAPD_CUDA_OPTIONS --threads ${N})
set(NVCC_THREADS --threads ${N}) # used in explicit custom build steps which is most kernel compilation
endif()
endif()
add_compile_options("$<$<COMPILE_LANGUAGE:CUDA>:${MAPD_CUDA_OPTIONS}>")
endif()
option(ENABLE_NVTX "Enable NVidia Tools Extension library" OFF)
if(ENABLE_NVTX)
if(NOT ENABLE_CUDA)
set(ENABLE_NVTX OFF CACHE BOOL "Enable NVidia Tools Extension library" FORCE)
message(STATUS "Cuda must be enabled to use NVTX, disabling NVTX support.")
else()
find_package(NVTX)
if (NVTX_FOUND)
message(STATUS "Using NVTX profiling markers")
add_definitions("-DHAVE_NVTX")
else()
set(ENABLE_NVTX OFF CACHE BOOL "Enable NVidia Tools Extension library" FORCE)
message(STATUS "NVTX not found, disabling NVTX support.")
endif()
endif()
endif()
option(SUPPRESS_NULL_LOGGER_DEPRECATION_WARNINGS "Suppress NullLogger deprecated warnings.")
if (SUPPRESS_NULL_LOGGER_DEPRECATION_WARNINGS)
add_definitions("-DSUPPRESS_NULL_LOGGER_DEPRECATION_WARNINGS")
endif()
option(ENABLE_CUDA_KERNEL_DEBUG "Enable debugging symbols for CUDA device Kernels" OFF)
option(ENABLE_JIT_DEBUG "Enable debugging symbols for the JIT" OFF)
if (ENABLE_JIT_DEBUG)
add_definitions("-DWITH_JIT_DEBUG")
endif()
if(XCODE)
if(ENABLE_CUDA)
set(CMAKE_EXE_LINKER_FLAGS "-F/Library/Frameworks -framework CUDA")
endif()
add_definitions("-DXCODE")
endif()
option(ENABLE_GEOS "Enable GEOS Support" ON)
if (ENABLE_GEOS)
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(ENABLE_GEOS OFF CACHE BOOL "Enable GEOS support" FORCE)
message(STATUS "GEOS functionality is not supported on macOS.")
else()
find_package(GEOS)
if(GEOS_NOTFOUND)
set(ENABLE_GEOS OFF CACHE BOOL "Enable GEOS support" FORCE)
message(STATUS "GEOS not found, disabling support.")
else()
set(GEOS_LIBRARY_FILENAME '"${GEOS_LIBRARY}"')
add_definitions("-DENABLE_GEOS -DGEOS_LIBRARY_FILENAME=${GEOS_LIBRARY_FILENAME}")
set(GEOS_RT_DEFINITIONS "-DENABLE_GEOS")
endif()
endif()
endif()
# fixme: hack works for Homebrew, might not work for Conda
if(ENABLE_CONDA)
set(OPENSSL_ROOT_DIR "$ENV{CONDA_PREFIX}")
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" )
set(OPENSSL_ROOT_DIR "/usr/local/opt/openssl/")
endif()
find_package(OpenSSL REQUIRED)
add_definitions("-DOPENSSL_SUPPRESS_DEPRECATED")
include_directories(${OPENSSL_INCLUDE_DIR})
if(MSVC)
add_definitions(/bigobj)
find_package(Thrift CONFIG REQUIRED)
set(Thrift_INCLUDE_DIRS ${THRIFT_INCLUDE_DIR})
set(Thrift_EXECUTABLE "${THRIFT_BIN_DIR}/thrift.exe")
set(Thrift_LIBRARIES ${THRIFT_LIBRARIES})
else()
find_package(Thrift REQUIRED)
endif()
include_directories(${Thrift_INCLUDE_DIRS})
if("${Thrift_VERSION}" VERSION_LESS "0.13.0")
add_definitions("-DHAVE_THRIFT_PLATFORMTHREADFACTORY")
else()
add_definitions("-DHAVE_THRIFT_THREADFACTORY")
if("${Thrift_VERSION}" VERSION_GREATER_EQUAL "0.14.0")
add_definitions("-DHAVE_THRIFT_MESSAGE_LIMIT")
endif()
endif()
find_package(Git)
find_package(PNG REQUIRED)
find_package(ZLIB REQUIRED)
find_package(GDAL REQUIRED)
find_package(GDALExtra REQUIRED)
find_package(BLOSC REQUIRED)
list(APPEND GDAL_LIBRARIES ${PNG_LIBRARIES} ${GDALExtra_LIBRARIES})
include_directories(${GDAL_INCLUDE_DIRS})
option(ENABLE_FOLLY "Use Folly" ON)
if(ENABLE_FOLLY)
find_package(Folly)
if(NOT Folly_FOUND)
set(ENABLE_FOLLY OFF CACHE BOOL "Use Folly" FORCE)
else()
include_directories(${Folly_INCLUDE_DIRS})
add_definitions("-DHAVE_FOLLY")
# TODO: use Folly::folly_deps?
if(MSVC)
find_package(Libevent COMPONENTS core REQUIRED)
list(APPEND Folly_LIBRARIES libevent::core)
endif()
endif()
endif()
option(ENABLE_SYSTEM_TFS "Enable system table functions" ON)
option(ENABLE_ML_ONEDAL_TFS "Enable Intel oneDal ML system table functions" ON)
option(ENABLE_ML_MLPACK_TFS "Enable MLPack ML system table functions" OFF)
option(ENABLE_RUNTIME_LIBS "Enable runtime library support" OFF)
option(ENABLE_TORCH_TFS "Enable Torch system table functions" OFF)
option(ENABLE_PDAL "Enable PDAL support" ON)
option(ENABLE_POINT_CLOUD_TFS "Enable point cloud table functions" ON)
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
# Clang will not complile these tests quickly enough to avoid timeout
option(ENABLE_RF_PROP_TFS "Enable RF Propagation module" OFF)
else()
option(ENABLE_RF_PROP_TFS "Enable RF Propagation module" ON)
endif()
if (ENABLE_PDAL)
find_package(PDAL)
if(PDAL_FOUND)
include_directories(${PDAL_INCLUDE_DIRS})
add_definitions( ${PDAL_DEFINITIONS} )
set(ENABLE_PDAL ON)
add_definitions("-DHAVE_PDAL")
else()
set(ENABLE_PDAL OFF CACHE BOOL "Enable PDAL support" FORCE)
set(ENABLE_POINT_CLOUD_TFS OFF CACHE BOOL "Enable point cloud table functions" FORCE)
endif()
else()
set(ENABLE_POINT_CLOUD_TFS OFF CACHE BOOL "Enable point cloud table functions" FORCE)
endif()
if(ENABLE_SYSTEM_TFS)
add_definitions ("-DHAVE_SYSTEM_TFS")
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
if(ENABLE_RF_PROP_TFS)
add_definitions ("-DHAVE_RF_PROP_TFS")
endif()
if (ENABLE_POINT_CLOUD_TFS)
add_definitions("-DHAVE_POINT_CLOUD_TFS")
endif()
endif()
else()
set(ENABLE_POINT_CLOUD_TFS OFF CACHE BOOL "Enable point cloud table functions" FORCE)
set(ENABLE_RF_PROP_TFS OFF CACHE BOOL "Enable RF Propagation module" FORCE)
endif()
if(ENABLE_RF_PROP_TFS)
if(NOT "${MAPD_EDITION_LOWER}" STREQUAL "ee")
set(ENABLE_RF_PROP_TFS OFF CACHE BOOL "Enable RF Propagation module" FORCE)
endif()
endif()
if(ENABLE_ML_ONEDAL_TFS)
if(NOT ENABLE_SYSTEM_TFS)
set(ENABLE_ML_ONEDAL_TFS OFF CACHE BOOL "Enable Intel oneDal ML system table functions" FORCE)
message(STATUS "System table functions must be enabled to use oneDal ML functions, disabling oneDal support.")
else()
set(ONEDAL_USE_DPCPP no)
set(ONEDAL_INTERFACE yes)
set(ONEDAL_LINK static)
find_package(oneDAL)
if (oneDAL_FOUND)
message(STATUS "Found the following oneDAL libraries:")
foreach(DAL_LIBRARY IN LISTS DAL_LIBRARIES)
string(REPLACE "oneDAL::" "" DAL_LIBRARY "${DAL_LIBRARY}")
message(STATUS " ${DAL_LIBRARY}")
endforeach()
include_directories(${oneDAL_INCLUDE_DIRS})
add_definitions("-DHAVE_ONEDAL")
else()
set(ENABLE_ML_ONEDAL_TFS OFF CACHE BOOL "Enable Intel oneDal ML system table functions" FORCE)
message(STATUS "oneDal library not found, disabling oneDal support.")
endif()
endif()
endif()
if(ENABLE_ML_MLPACK_TFS)
if(NOT ENABLE_SYSTEM_TFS)
set(ENABLE_ML_MLPACK_TFS OFF CACHE BOOL "Enable MLPACK ML system table functions" FORCE)
message(STATUS "System table functions must be enabled to use MLPACK ML functions, disabling MLPACK support.")
else()
find_package(OpenMP REQUIRED)
find_package(Armadillo REQUIRED)
find_package(Boost COMPONENTS serialization REQUIRED)
find_package(MLPACK REQUIRED)
include_directories(${MLPACK_INCLUDE_DIRS})
add_definitions("-DHAVE_MLPACK")
endif()
endif()
if(MSVC)
include_directories(include_directories("${LIBS_PATH}/include/pdcurses"))
else()
find_package(Curses)
include_directories(${CURSES_INCLUDE_DIRS})
if (CURSES_HAVE_NCURSES_CURSES_H AND NOT CURSES_HAVE_CURSES_H)
include_directories(${CURSES_INCLUDE_DIRS}/ncurses/)
endif()
endif()
function(install_thirdparty_files src_hdr_list lib_base_path_list)
foreach(hdr ${src_hdr_list})
install(FILES ${hdr} DESTINATION ThirdParty/include)
endforeach()
include_directories(ThirdParty/include)
foreach(lib_base ${lib_base_path_list})
file(GLOB lib_versions_list ${lib_base}*)
foreach(lib ${lib_versions_list})
install(FILES ${lib} DESTINATION ThirdParty/lib)
endforeach()
endforeach()
endfunction()
option(ENABLE_MEMKIND "Enable memkind support" OFF)
if (ENABLE_MEMKIND)
if($ENV{MEMKIND_PREFIX} STREQUAL "")
message(FATAL_ERROR "The environment variable \"MEMKIND_PREFIX\" does not exist, are mapd dependencies sourced?")
endif()
find_file( MEMKIND_HDR_PATH NAME memkind.h PATHS $ENV{MEMKIND_PREFIX}/include NO_DEFAULT_PATH)
set(_CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES})
set(CMAKE_FIND_LIBRARY_SUFFIXES .so)
find_library(MEMKIND_LIB_PATH NAME memkind PATHS $ENV{MEMKIND_PREFIX}/lib64 $ENV{MEMKIND_PREFIX}/lib NO_DEFAULT_PATH)
find_library(NUMA_LIB_PATH NAME numa PATHS $ENV{MEMKIND_PREFIX}/lib NO_DEFAULT_PATH)
set(CMAKE_FIND_LIBRARY_SUFFIXES ${_CMAKE_FIND_LIBRARY_SUFFIXES})
install_thirdparty_files("${MEMKIND_HDR_PATH}" "${NUMA_LIB_PATH};${MEMKIND_LIB_PATH}")
add_definitions("-DENABLE_MEMKIND")
endif()
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
if(MSVC)
option(ENABLE_NO_WINWARNINGS "disable most windows warnings" ON)
add_compile_definitions("_USE_MATH_DEFINES") # M_PI https://stackoverflow.com/q/6563810/2700898
add_compile_definitions("NOMINMAX")
add_compile_definitions("WIN32_LEAN_AND_MEAN")
# Fix for thrift_handler.lib(DBHandler.cpp.obj) : error LNK2038: mismatch detected for
# 'boost_log_abi': value 'v2_mt_nt6' doesn't match value 'v2_mt_nt62' in initdb.cpp.obj
# https://github.com/microsoft/vcpkg/discussions/22762
# If a future vcpkg release causes the reverse error message, then this line should be removed.
add_compile_definitions("BOOST_USE_WINAPI_VERSION=0x0601") #=BOOST_WINAPI_VERSION_WIN7
if(ENABLE_NO_WINWARNINGS)
add_compile_definitions("_STL_EXTRA_DISABLED_WARNINGS=4146 4242 4244 4267 4355 4365 4458 4624 4820 4996 5204 5219" "NOMINMAX")
# disable 4702 unreachable code warning
# with /Qspectre set, disable the warning C5045
add_compile_options(/W0 /wd4702 /wd5045)
else()
add_compile_options(/W4 /permisive-)
endif()
add_compile_options(/EHsc /std:c++17 /Qspectre)
else()
option(ENABLE_WARNINGS_AS_ERRORS "Enable treat warnings as errors" ON)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-unused-local-typedefs -fdiagnostics-color=auto -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS")
if (ENABLE_WARNINGS_AS_ERRORS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU")
# Allow maybe-uninitialized warnings with GCC at it is prone to false positives
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=maybe-uninitialized")
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# Disable warnings as errors for misleading-indentation due to a boost header issue
# This can be removed once the boost fix is in our deps https://github.com/boostorg/serialization/pull/262/files
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=misleading-indentation")
endif()
endif()
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-register")
endif()
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
endif()
endif()
if (ENABLE_ML_MLPACK_TFS)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
endif()
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations")
endif()
# address and thread sanitizer
option(ENABLE_STANDALONE_CALCITE "Require standalone Calcite server" OFF)
option(ENABLE_ASAN "Enable address sanitizer" OFF)
option(ENABLE_TSAN "Enable thread sanitizer" OFF)
option(ENABLE_UBSAN "Enable undefined behavior sanitizer" OFF)
if(ENABLE_ASAN)
set(SAN_FLAGS "-fsanitize=address -O1 -fno-omit-frame-pointer")
add_definitions("-DHAVE_ASAN")
add_definitions("-DWITH_DECODERS_BOUNDS_CHECKING")
elseif(ENABLE_TSAN)
add_definitions("-DHAVE_TSAN")
add_definitions("-DTBB_PREVIEW_WAITING_FOR_WORKERS") # might not be required in later versions
# Copy the config directory to the build dir for TSAN suppressions
file(COPY config DESTINATION ${CMAKE_BINARY_DIR})
set(SAN_FLAGS "-fsanitize=thread -fPIC -O1 -fno-omit-frame-pointer")
# required for older GCC, see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64354
add_definitions("-D__SANITIZE_THREAD__")
elseif(ENABLE_UBSAN)
set(SAN_FLAGS "-fsanitize=undefined -fPIC -O1 -fno-omit-frame-pointer")
endif()
if(ENABLE_ASAN OR ENABLE_TSAN OR ENABLE_UBSAN)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${SAN_FLAGS}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${SAN_FLAGS}")
set(ENABLE_STANDALONE_CALCITE ON)
endif()
# Embedded database
option(ENABLE_DBE "Enable embedded database" OFF)
if(ENABLE_DBE)
if(NOT MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
endif(NOT MSVC)
set(ENABLE_STANDALONE_CALCITE ON)
add_definitions("-DENABLE_EMBEDDED_DATABASE")
add_definitions("-DDBEngine_LIBNAME=\"${CMAKE_SHARED_LIBRARY_PREFIX}DBEngine${CMAKE_SHARED_LIBRARY_SUFFIX}\"")
endif()
# Code coverage
option(ENABLE_CODE_COVERAGE "Enable compile time code coverage" OFF)
if(ENABLE_CODE_COVERAGE)
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(COVERAGE_FLAGS "-fprofile-instr-generate -fcoverage-mapping")
else()
message(FATAL_ERROR "Code coverage currently only supported with Clang compiler")
endif()
set(CMAKE_CXX_OUTPUT_EXTENSION_REPLACE ON)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COVERAGE_FLAGS}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${COVERAGE_FLAGS}")
endif()
option(ENABLE_DECODERS_BOUNDS_CHECKING "Enable bounds checking for column decoding" OFF)
if(ENABLE_STANDALONE_CALCITE)
add_definitions("-DSTANDALONE_CALCITE")
endif()
include_directories(${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/Parser
${CMAKE_CURRENT_BINARY_DIR})
## Dependencies
# LLVM
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
list(APPEND CMAKE_PREFIX_PATH "/usr/local/opt/llvm")
endif()
find_package(LLVM CONFIG REQUIRED)
if (TARGET LLVM)
get_target_property(LLVM_LIB LLVM IMPORTED_LOCATION_RELEASE)
endif()
if (NOT LLVM_LIB)
find_library(LLVM_LIB LLVM)
endif()
message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
message(STATUS "Using LLVM_LIB: ${LLVM_LIB}")
include_directories(SYSTEM ${LLVM_INCLUDE_DIRS})
add_definitions(${LLVM_DEFINITIONS})
find_package(Clang CONFIG)
if (TARGET clang-cpp)
get_target_property(CLANG_LIB clang-cpp IMPORTED_LOCATION_RELEASE)
endif()
if (NOT CLANG_LIB)
find_library(CLANG_LIB clang-cpp)
endif()
message(STATUS "Using CLANG_LIB: ${CLANG_LIB}")
# Deps builds use separate libs for each clang component, while some distros now bundle into a single lib
if (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin" OR NOT LLVM_LIB)
set(LLVM_COMPONENTS support mcjit core irreader option linker)
if(MSVC)
list(APPEND LLVM_COMPONENTS Passes)
endif(MSVC)
option(ENABLE_INTEL_JIT_LISTENER "Enable Intel Vtune JIT Listener" OFF)
if(ENABLE_INTEL_JIT_LISTENER)
list(APPEND LLVM_COMPONENTS inteljitevents)
endif()
llvm_map_components_to_libnames(llvm_libs ${LLVM_TARGETS_TO_BUILD} ${LLVM_COMPONENTS})
set(clang_libs
clangFrontend
clangSerialization
clangDriver
clangTooling
clangParse
clangSema
clangAnalysis
clangEdit
clangAST
clangLex
clangBasic
clangRewrite
clangRewriteFrontend)
# LLVMSupport explicitly lists tinfo in its INTERFACE_LINK_LIBRARIES, even
# though we provide it in our build of ncurses. Since LLVMSupport is listed
# as a requirement for other llvm libs, we need to walk through the entire
# list in order to remove all instances of tinfo.
foreach(lib ${llvm_libs})
get_target_property(interface_libs ${lib} INTERFACE_LINK_LIBRARIES)
list(REMOVE_ITEM interface_libs tinfo z rt pthread -lpthread m dl)
set_target_properties(${lib} PROPERTIES INTERFACE_LINK_LIBRARIES "${interface_libs}")
endforeach()
list(APPEND llvm_libs ${CURSES_NCURSES_LIBRARY})
else()
if(NOT CLANG_LIB)
message(FATAL_ERROR "Could not find CLANG library.")
endif()
set(clang_libs ${CLANG_LIB})
set(llvm_libs ${LLVM_LIB})
endif()
# Boost
find_package(Boost COMPONENTS log log_setup filesystem program_options regex system thread timer locale iostreams serialization REQUIRED)
include_directories(${Boost_INCLUDE_DIR})
# Allow explicit include statements to access third party headers directly.
# Ex: raft/canonical/include/raft.h
include_directories(ThirdParty/)
# EGL
include_directories(ThirdParty/egl)
# Google Test and Google Mock
if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
add_definitions("-DGTEST_USE_OWN_TR1_TUPLE=0")
endif()
include_directories(ThirdParty/googletest)
add_subdirectory(ThirdParty/googletest)
# Google Benchmark
set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "Suppressing benchmark's tests" FORCE)
if(WIN32)
set(HAVE_POSIX_REGEX 0)
endif()
add_subdirectory(ThirdParty/googlebenchmark)
# aws-sdk
find_package(CURL REQUIRED QUIET)
list(APPEND CURL_LIBRARIES ${OPENSSL_LIBRARIES})
option(ENABLE_AWS_S3 "Enable AWS S3 support" ON)
if(ENABLE_AWS_S3)
find_package(LibAwsS3)
if(NOT LibAwsS3_FOUND)
# Note for a build with static arrow libs (centos)
# aws-sdk-cpp must be included.
set(ENABLE_AWS_S3 OFF CACHE BOOL "Enable AWS S3 support" FORCE)
else()
add_definitions("-DHAVE_AWS_S3")
set(AwsS3_CURL_SUPPORT ${CURL_LIBRARIES})
list (APPEND LibAwsS3_LIBRARIES ${AwsS3_CURL_SUPPORT})
endif()
endif()
# Arrow
find_package(Arrow REQUIRED)
add_definitions("-DARROW_NO_DEPRECATED_API")
include_directories(${Arrow_INCLUDE_DIRS})
option(ENABLE_ARROW_4 "Enable changes required to support Arrow 4.0+" "${HAVE_ARROW_4_IO_CONTEXT}")
if(ENABLE_ARROW_4)
add_definitions("-DENABLE_ARROW_4")
endif()
option(ENABLE_IMPORT_PARQUET "Enable Parquet Importer support" ON)
if(ENABLE_IMPORT_PARQUET)
find_package(Parquet)
if(NOT Parquet_FOUND)
set(ENABLE_IMPORT_PARQUET OFF CACHE BOOL "Enable Parquet Importer support" FORCE)
message(STATUS "Parquet not found. Disabling Parquet Importer support.")
else()
add_definitions("-DENABLE_IMPORT_PARQUET")
# when we found libparquet it means we're using arrow 11+
# and deps scripts must have built parquet as well as snappy
find_package(Snappy REQUIRED)
endif()
endif()
list(APPEND Arrow_LIBRARIES ${Snappy_LIBRARIES})
if(ENABLE_AWS_S3)
list(INSERT Arrow_LIBRARIES 0 ${LibAwsS3_LIBRARIES})
endif()
if (ENABLE_CUDA)
list(INSERT Arrow_LIBRARIES 0 ${Arrow_GPU_CUDA_LIBRARIES})
endif()
# RapidJSON
include_directories(ThirdParty/rapidjson)
add_definitions(-DRAPIDJSON_HAS_STDSTRING)
if(NOT MSVC)
# At the present time the current vcpkg version of rapidjson is 2020-09-14:
# https://github.com/microsoft/vcpkg/blob/master/versions/r-/rapidjson.json
# and the Windows build fails because it does not have this fix:
# https://github.com/Tencent/rapidjson/pull/1568
# Once vcpkg's rapidjson has this fix then let's try not making this exception for MSVC.
# When this changes, remove this exception from all other similar CMakeLists.txt files too.
add_definitions(-DRAPIDJSON_NOMEMBERITERATORCLASS)
endif()
# Linenoise
add_subdirectory(ThirdParty/linenoise)
# SQLite
include_directories(ThirdParty/sqlite3)
add_subdirectory(ThirdParty/sqlite3)
# raft/canonical
option(ENABLE_CANONICAL_RAFT "Enable Canonical Raft" OFF)
if(ENABLE_CANONICAL_RAFT)
add_subdirectory(ThirdParty/raft/canonical)
endif()
# rdkafka
find_package(RdKafka REQUIRED)
include_directories(${RdKafka_INCLUDE_DIRS})
# libarchive
find_package(LibArchive REQUIRED)
include_directories(${LibArchive_INCLUDE_DIRS})
#find_package(CURL REQUIRED QUIET)
#if(CURL_FOUND)
#set(CURL_LIBRARIES ${LibAwsS3_SUPPORT_LIBRARIES})
#endif()
# bcrypt
include_directories(ThirdParty/bcrypt)
add_subdirectory(ThirdParty/bcrypt)
# PicoSHA2
include_directories(ThirdParty/PicoSHA2)
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
# opensaml
option(ENABLE_SAML "Enable SAML support" ON)
if(ENABLE_SAML)
find_package(OpenSaml)
if(NOT OpenSaml_FOUND)
set(ENABLE_SAML OFF CACHE BOOL "Enable SAML support" FORCE)
else()
add_definitions("-DHAVE_SAML")
endif()
endif()
endif()
# TBB
option(ENABLE_TBB "Enable OneTBB for threading (if found)" ON)
set(TBB_LIBS "")
find_package(TBB)
if(TBB_FOUND)
message(STATUS "TBB library is found with ${TBB_DIR}")
add_definitions("-DHAVE_TBB")
add_definitions("-DTBB_PREVIEW_TASK_GROUP_EXTENSIONS")
list(APPEND TBB_LIBS ${TBB_LIBRARIES})
if(ENABLE_TBB)
add_definitions("-DENABLE_TBB")
else()
message(STATUS "Using TBB for threading is DISABLED")
endif()
else()
set(ENABLE_TBB OFF)
endif()
option(DISABLE_CONCURRENCY "Disable parallellism at the threading layer" OFF)
if(DISABLE_CONCURRENCY)
add_definitions("-DDISABLE_CONCURRENCY")
endif()
set(gen_cpp_files
${CMAKE_BINARY_DIR}/gen-cpp/Heavy.cpp
${CMAKE_BINARY_DIR}/gen-cpp/Heavy.h
${CMAKE_BINARY_DIR}/gen-cpp/heavy_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/common_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/completion_hints_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/serialized_result_set_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/extension_functions_types.cpp
${CMAKE_BINARY_DIR}/gen-cpp/extension_functions_types.h
)
add_custom_command(
DEPENDS
${CMAKE_SOURCE_DIR}/heavy.thrift
${CMAKE_SOURCE_DIR}/common.thrift
${CMAKE_SOURCE_DIR}/completion_hints.thrift
${CMAKE_SOURCE_DIR}/QueryEngine/serialized_result_set.thrift
${CMAKE_SOURCE_DIR}/QueryEngine/extension_functions.thrift
OUTPUT ${gen_cpp_files}
COMMAND ${Thrift_EXECUTABLE}
ARGS -gen cpp -r -o ${CMAKE_BINARY_DIR} ${CMAKE_SOURCE_DIR}/heavy.thrift)
list(APPEND ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/gen-cpp/)
add_custom_target(thrift_gen DEPENDS ${gen_cpp_files})
add_library(mapd_thrift ${gen_cpp_files})
if(NOT MSVC)
target_compile_options(mapd_thrift PRIVATE -fPIC)
endif()
target_link_libraries(mapd_thrift ${Thrift_LIBRARIES})
if("${MAPD_EDITION_LOWER}" STREQUAL "ee")
option(ENABLE_OMNIVERSE_CONNECTOR "Enable Omniverse Connector" ON)
include_directories(Catalog/ee)
include_directories(Distributed/ee)
else()
include_directories(Catalog/os)
include_directories(Distributed/os)
endif()
include_directories(ThirdParty/muparserx)
add_subdirectory(ThirdParty/muparserx)
set(MAPD_RENDERING_LIBRARIES "")
if(NOT "${MAPD_EDITION_LOWER}" STREQUAL "os")
option(ENABLE_RENDERING "Build backend renderer" OFF)
if(ENABLE_RENDERING)
option(ENABLE_RENDER_TESTS "Build backend renderer tests" ON)
add_definitions("-DHAVE_RENDERING")
add_subdirectory(Rendering)
add_subdirectory(QueryRenderer)
include_directories(${RENDERING_INCLUDE_DIRS})
set(MAPD_RENDERING_LIBRARIES QueryRenderer Rendering)
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-render")
if(${RENDERER_CONTEXT_TYPE} STREQUAL "GLX")
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-glx")
endif()
endif()
else()
set(ENABLE_RENDERING OFF CACHE BOOL "Build backend renderer" FORCE)
endif()
set(TIME_LIMITED_NUMBER_OF_DAYS "30" CACHE STRING "Number of days this build is valid for if build is time limited")
option(TIME_LIMITED_BUILD "Build Time Limited Build" OFF)
if(TIME_LIMITED_BUILD)
list(APPEND TIME_LIMITED_DEFINITIONS "TIME_LIMITED_BUILD")
list(APPEND TIME_LIMITED_DEFINITIONS "TIME_LIMITED_NUMBER_OF_DAYS=${TIME_LIMITED_NUMBER_OF_DAYS}")
set(MAPD_PACKAGE_FLAGS "${MAPD_PACKAGE_FLAGS}-${TIME_LIMITED_NUMBER_OF_DAYS}d")
endif()
option(ENABLE_PROFILER "Enable google perftools" OFF)
if(ENABLE_PROFILER)
find_package(Gperftools REQUIRED COMPONENTS TCMALLOC PROFILER)
set(PROFILER_LIBS ${Gperftools_TCMALLOC} ${Gperftools_PROFILER})
add_definitions("-DHAVE_PROFILER")
else()
set(PROFILER_LIBS "")
endif()
# Some subdirectories will add optional dependencies to initheavy so we want to declare
# it before subdirs since it is otherwise independent.
add_executable(initheavy initdb.cpp)
add_subdirectory(SqliteConnector)