mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-25 14:50:26 +00:00
27aae88d76
It doesn't know the option and prints a warning. llvm-svn: 244363
176 lines
6.3 KiB
CMake
176 lines
6.3 KiB
CMake
# Check if this is a in tree build.
|
|
if (NOT DEFINED LLVM_MAIN_SRC_DIR)
|
|
project(Polly)
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
# Where is LLVM installed?
|
|
set(LLVM_INSTALL_ROOT "" CACHE PATH "Root of LLVM install.")
|
|
# Check if the LLVM_INSTALL_ROOT valid.
|
|
if( NOT EXISTS ${LLVM_INSTALL_ROOT}/include/llvm )
|
|
message(FATAL_ERROR "LLVM_INSTALL_ROOT (${LLVM_INSTALL_ROOT}) is not a valid LLVM installation.")
|
|
endif(NOT EXISTS ${LLVM_INSTALL_ROOT}/include/llvm)
|
|
#FileCheck is not install by default, warn the user to Copy FileCheck
|
|
if( NOT EXISTS ${LLVM_INSTALL_ROOT}/bin/FileCheck
|
|
OR NOT EXISTS ${LLVM_INSTALL_ROOT}/bin/not)
|
|
message(WARNING "FileCheck or not are required by running regress tests, "
|
|
"but they are not installed! Please copy it to "
|
|
"${LLVM_INSTALL_ROOT}/bin.")
|
|
endif(NOT EXISTS ${LLVM_INSTALL_ROOT}/bin/FileCheck
|
|
OR NOT EXISTS ${LLVM_INSTALL_ROOT}/bin/not)
|
|
# Add the llvm header path.
|
|
include_directories(${LLVM_INSTALL_ROOT}/include/)
|
|
|
|
# Get the system librarys that will link into LLVM.
|
|
function(get_system_libs return_var)
|
|
# Returns in `return_var' a list of system libraries used by LLVM.
|
|
if( NOT MSVC )
|
|
if( MINGW )
|
|
set(system_libs ${system_libs} imagehlp psapi)
|
|
elseif( CMAKE_HOST_UNIX )
|
|
if( HAVE_LIBDL )
|
|
set(system_libs ${system_libs} ${CMAKE_DL_LIBS})
|
|
endif()
|
|
if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
|
|
set(system_libs ${system_libs} pthread)
|
|
endif()
|
|
endif( MINGW )
|
|
endif( NOT MSVC )
|
|
set(${return_var} ${system_libs} PARENT_SCOPE)
|
|
endfunction(get_system_libs)
|
|
|
|
# Now set the header paths.
|
|
execute_process(COMMAND "${LLVM_INSTALL_ROOT}/bin/llvm-config" --includedir
|
|
OUTPUT_VARIABLE LLVM_INCLUDE_DIR
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
include_directories( ${LLVM_INCLUDE_DIR} )
|
|
|
|
# Get the TARGET_TRIPLE
|
|
execute_process(COMMAND "${LLVM_INSTALL_ROOT}/bin/llvm-config" --host-target
|
|
OUTPUT_VARIABLE TARGET_TRIPLE
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
# And then set the cxx flags.
|
|
execute_process(COMMAND "${LLVM_INSTALL_ROOT}/bin/llvm-config" --cxxflags
|
|
OUTPUT_VARIABLE LLVM_CXX_FLAGS
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} ${LLVM_CXX_FLAGS})
|
|
|
|
# Make sure the isl c files are built as fPIC
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
|
|
endif(NOT DEFINED LLVM_MAIN_SRC_DIR)
|
|
|
|
set(POLLY_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
set(POLLY_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
# Add path for custom modules
|
|
set(CMAKE_MODULE_PATH
|
|
${CMAKE_MODULE_PATH}
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake"
|
|
)
|
|
|
|
include("polly_macros")
|
|
|
|
# Add appropriate flags for GCC
|
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
# FIXME: Turn off exceptions, RTTI:
|
|
# -fno-exceptions -fno-rtti
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings -fno-exceptions -fno-rtti")
|
|
elseif (MSVC)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHs-c-")
|
|
add_definitions("-D_HAS_EXCEPTIONS=0")
|
|
else ()
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions -fno-rtti")
|
|
endif ()
|
|
|
|
# Define the FLAGS for the compilation of isl and imath
|
|
#
|
|
# Those are the only C files we have in the repository. Hence, we can just use
|
|
# the CFLAGS to identify them.
|
|
#
|
|
# We first set the visibility of all isl functions to hidden to ensure we do
|
|
# not clash with other isl versions that got linked into a program that uses
|
|
# Polly. (This happens e.g when linking Polly with dragonegg)
|
|
#
|
|
# We also disable all warnings, as these should be fixed upstream. There is
|
|
# no value in reporting them here.
|
|
if (NOT MSVC)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -w")
|
|
endif ()
|
|
|
|
# Add path for custom modules
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${POLLY_SOURCE_DIR}/cmake")
|
|
|
|
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
option(POLLY_ENABLE_GPGPU_CODEGEN "Enable GPGPU code generation feature" OFF)
|
|
if (POLLY_ENABLE_GPGPU_CODEGEN)
|
|
# Do not require CUDA, as GPU code generation test cases can be run without
|
|
# a cuda library.
|
|
FIND_PACKAGE(CUDA)
|
|
set(GPU_CODEGEN TRUE)
|
|
endif(POLLY_ENABLE_GPGPU_CODEGEN)
|
|
|
|
# Support GPGPU code generation if the library is available.
|
|
if (CUDALIB_FOUND)
|
|
INCLUDE_DIRECTORIES( ${CUDALIB_INCLUDE_DIR} )
|
|
endif(CUDALIB_FOUND)
|
|
|
|
include_directories(
|
|
BEFORE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lib/JSON/include
|
|
${CMAKE_CURRENT_BINARY_DIR}/lib/External/isl/include
|
|
${CMAKE_CURRENT_BINARY_DIR}/lib/External/isl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lib/External/isl/include
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lib/External/isl/imath
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lib/External/isl
|
|
${CMAKE_CURRENT_BINARY_DIR}/include
|
|
)
|
|
|
|
install(DIRECTORY include/
|
|
DESTINATION include
|
|
FILES_MATCHING
|
|
PATTERN "*.h"
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
|
|
install(DIRECTORY ${POLLY_BINARY_DIR}/include/
|
|
DESTINATION include
|
|
FILES_MATCHING
|
|
PATTERN "*.h"
|
|
PATTERN "CMakeFiles" EXCLUDE
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
|
|
add_definitions( -D_GNU_SOURCE )
|
|
|
|
add_subdirectory(lib)
|
|
add_subdirectory(test)
|
|
add_subdirectory(tools)
|
|
# TODO: docs.
|
|
|
|
|
|
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/include/polly/Config/config.h.cmake
|
|
${POLLY_BINARY_DIR}/include/polly/Config/config.h )
|
|
|
|
# Add target to check formatting of polly files
|
|
file( GLOB_RECURSE files *.h *.cpp)
|
|
file( GLOB_RECURSE jsonfiles lib/JSON/*.h lib/JSON/*.cpp)
|
|
file( GLOB_RECURSE islfiles lib/External/isl/*.h lib/External/isl/*.c
|
|
lib/External/isl/include/isl/*.h lib/External/isl/imath/*.h
|
|
lib/External/isl/imath/*.c)
|
|
list( REMOVE_ITEM files ${jsonfiles} ${islfiles})
|
|
add_custom_command( OUTPUT formatting COMMAND
|
|
CLANG_FORMAT=${LLVM_BINARY_DIR}/bin/clang-format
|
|
${CMAKE_CURRENT_SOURCE_DIR}/utils/check_format.sh ${files})
|
|
add_custom_target(polly-check-format DEPENDS formatting)
|
|
set_target_properties(polly-check-format PROPERTIES FOLDER "Polly")
|
|
add_custom_command( OUTPUT formatting-update COMMAND
|
|
CLANG_FORMAT=${LLVM_BINARY_DIR}/bin/clang-format
|
|
${CMAKE_CURRENT_SOURCE_DIR}/utils/update_format.sh ${files})
|
|
add_custom_target(polly-update-format DEPENDS formatting-update)
|
|
set_target_properties(polly-update-format PROPERTIES FOLDER "Polly")
|
|
|
|
# Set the variable POLLY_LINK_LIBS in the llvm/tools/ dir.
|
|
set(POLLY_LINK_LIBS ${POLLY_LINK_LIBS} PARENT_SCOPE)
|