2018-05-10 23:25:46 +00:00
|
|
|
add_definitions(-Wno-error -Wno-unused-parameter -Wno-non-virtual-dtor -U_LIBCPP_DEBUG)
|
2018-05-06 06:03:05 +00:00
|
|
|
|
2018-09-14 19:48:51 +00:00
|
|
|
add_library(clickhouse-compiler-lib ${LINK_MODE}
|
2018-05-06 06:03:05 +00:00
|
|
|
driver.cpp
|
|
|
|
cc1_main.cpp
|
|
|
|
cc1as_main.cpp
|
|
|
|
lld.cpp)
|
|
|
|
|
|
|
|
target_compile_options(clickhouse-compiler-lib PRIVATE -fno-rtti -fno-exceptions -g0)
|
|
|
|
|
2018-09-14 19:48:51 +00:00
|
|
|
string(REPLACE "${INCLUDE_DEBUG_HELPERS}" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # cant compile with -fno-rtti
|
|
|
|
|
2018-05-29 17:54:48 +00:00
|
|
|
llvm_libs_all(REQUIRED_LLVM_LIBRARIES)
|
2018-05-06 06:03:05 +00:00
|
|
|
|
|
|
|
message(STATUS "Using LLVM ${LLVM_VERSION}: ${LLVM_INCLUDE_DIRS} : ${REQUIRED_LLVM_LIBRARIES}")
|
|
|
|
|
2018-06-06 20:21:58 +00:00
|
|
|
target_include_directories(clickhouse-compiler-lib SYSTEM PRIVATE ${LLVM_INCLUDE_DIRS})
|
2018-05-06 06:03:05 +00:00
|
|
|
|
|
|
|
# This is extracted almost directly from CMakeFiles/.../link.txt in LLVM build directory.
|
|
|
|
|
|
|
|
target_link_libraries(clickhouse-compiler-lib PRIVATE
|
|
|
|
|
|
|
|
clangBasic clangCodeGen clangDriver
|
2018-05-06 09:04:10 +00:00
|
|
|
clangFrontend
|
2018-05-06 06:03:05 +00:00
|
|
|
clangFrontendTool
|
|
|
|
clangRewriteFrontend clangARCMigrate clangStaticAnalyzerFrontend
|
|
|
|
clangParse clangSerialization clangSema clangEdit clangStaticAnalyzerCheckers
|
|
|
|
clangASTMatchers clangStaticAnalyzerCore clangAnalysis clangAST clangRewrite clangLex clangBasic
|
2018-05-06 09:04:10 +00:00
|
|
|
clangCrossTU clangIndex
|
2018-05-06 06:03:05 +00:00
|
|
|
|
|
|
|
lldCOFF
|
|
|
|
lldDriver
|
|
|
|
lldELF
|
|
|
|
lldMinGW
|
|
|
|
lldMachO
|
|
|
|
lldReaderWriter
|
|
|
|
lldYAML
|
|
|
|
lldCommon
|
|
|
|
lldCore
|
|
|
|
|
|
|
|
${REQUIRED_LLVM_LIBRARIES}
|
|
|
|
|
|
|
|
PUBLIC ${ZLIB_LIBRARIES} ${EXECINFO_LIBRARY} Threads::Threads
|
2018-08-06 20:12:55 +00:00
|
|
|
${MALLOC_LIBRARIES}
|
|
|
|
${GLIBC_COMPATIBILITY_LIBRARIES}
|
|
|
|
${MEMCPY_LIBRARIES}
|
2018-05-06 06:03:05 +00:00
|
|
|
)
|