2014-12-14 12:05:43 +00:00
|
|
|
# organised as follows:
|
|
|
|
# main variables
|
|
|
|
# sources
|
|
|
|
# system core
|
|
|
|
# libraries
|
|
|
|
|
2015-08-08 15:11:29 +01:00
|
|
|
project(YAP)
|
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
# where we have most scripts
|
|
|
|
# set path to additional CMake modules
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
|
|
|
|
|
2016-01-04 14:11:09 +00:00
|
|
|
|
|
|
|
|
2015-10-22 00:54:20 +01:00
|
|
|
# set(CMAKE_BUILD_TYPE Debug)
|
2015-04-20 01:21:19 +01:00
|
|
|
|
2015-11-09 11:30:40 +00:00
|
|
|
set (MACOSX_RPATH ON)
|
2015-06-19 01:30:13 +01:00
|
|
|
if(POLICY CMP0042)
|
2015-10-27 23:02:31 +00:00
|
|
|
endif(POLICY CMP0042)
|
|
|
|
if(POLICY CMP0043)
|
2015-11-09 11:30:40 +00:00
|
|
|
cmake_policy(SET CMP0043 NEW)
|
2015-10-27 23:02:31 +00:00
|
|
|
endif(POLICY CMP0043)
|
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-02-13 12:23:51 +00:00
|
|
|
set(YAP_FOUND ON)
|
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
set(YAP_MAJOR_VERSION 6)
|
|
|
|
set(YAP_MINOR_VERSION 3)
|
|
|
|
set(YAP_PATCH_VERSION 4)
|
2014-12-14 12:05:43 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
set(YAP_SYSTEM_OPTIONS "attributed_variables" )
|
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
if (WIN32)
|
|
|
|
set (YAP_ARCH $ENV{PROCESSOR_ARCHITECTURE})
|
2016-01-03 02:06:09 +00:00
|
|
|
set(YAP_SYSTEM_OPTIONS "windows " ${YAP_SYSTEM_OPTIONS})
|
2014-12-14 12:05:43 +00:00
|
|
|
endif()
|
|
|
|
if (UNIX)
|
|
|
|
find_program (UNAME uname)
|
|
|
|
execute_process (
|
|
|
|
COMMAND ${UNAME} -m
|
|
|
|
OUTPUT_VARIABLE YAP_ARCH OUTPUT_STRIP_TRAILING_WHITESPACE )
|
2016-01-03 02:06:09 +00:00
|
|
|
set(YAP_SYSTEM_OPTIONS "unix " ${YAP_SYSTEM_OPTIONS})
|
2014-12-14 12:05:43 +00:00
|
|
|
endif()
|
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
set(YAP_FULL_VERSION
|
|
|
|
${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}.${YAP_PATCH_VERSION})
|
2014-12-14 12:05:43 +00:00
|
|
|
set(YAP_FVERSION
|
|
|
|
${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}.${YAP_PATCH_VERSION})
|
2014-12-04 07:59:30 +00:00
|
|
|
set(YAP_NUMERIC_VERSION
|
2014-12-14 12:05:43 +00:00
|
|
|
${YAP_MAJOR_VERSION}*10000+${YAP_MINOR_VERSION}*100+${YAP_PATCH_VERSION})
|
2014-12-04 07:59:30 +00:00
|
|
|
set(MYDDAS_VERSION MYDDAS-0.9.1)
|
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
site_name( YAP_SITE )
|
|
|
|
|
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
message(STATUS "Building YAP version ${YAP_VERSION}")
|
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
#
|
|
|
|
# Optional Components
|
|
|
|
#
|
|
|
|
include(CheckIncludeFile)
|
|
|
|
include(CheckIncludeFileCXX)
|
2015-07-06 12:04:42 +01:00
|
|
|
include (CheckIncludeFiles)
|
2015-06-19 01:30:13 +01:00
|
|
|
include(CheckLibraryExists)
|
|
|
|
include(CheckSymbolExists)
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
include(CheckIncludeFiles)
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
include(CheckPrototypeExists)
|
|
|
|
include(CheckTypeSize)
|
2015-11-09 18:22:43 +00:00
|
|
|
include(CheckVariableExists)
|
2015-06-19 01:30:13 +01:00
|
|
|
include(CheckCXXSourceCompiles)
|
|
|
|
include(TestBigEndian)
|
|
|
|
include (CMakeDependentOption)
|
|
|
|
include (MacroOptionalAddSubdirectory)
|
|
|
|
include (MacroOptionalFindPackage)
|
|
|
|
include (MacroLogFeature)
|
|
|
|
include(GetGitRevisionDescription)
|
|
|
|
|
|
|
|
# Test signal handler return type (mimics AC_TYPE_SIGNAL)
|
|
|
|
include(TestSignalType) #check if this is really needed as c89 defines this as void
|
|
|
|
|
2015-07-06 12:04:42 +01:00
|
|
|
# Test standard headers (mimics AC_HEADER_STDC)
|
2015-06-19 01:30:13 +01:00
|
|
|
include(TestSTDC)
|
|
|
|
|
|
|
|
set(bitness 32)
|
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
|
|
set(bitness 64)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
get_git_head_revision(GIT_HEAD GIT_SHA1)
|
|
|
|
git_describe(GIT_DESCRIBE)
|
|
|
|
|
|
|
|
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
|
|
cmake_policy( SET CMP0042 NEW)
|
|
|
|
#cmake_policy( NO_POLICY_SCOPE )
|
|
|
|
endif()
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
set (BUILD_SHARED_LIBS ON)
|
2015-06-19 01:30:13 +01:00
|
|
|
|
|
|
|
## define system
|
|
|
|
|
|
|
|
include (Sources)
|
|
|
|
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
add_library(libYap
|
2015-06-19 01:30:13 +01:00
|
|
|
${ENGINE_SOURCES}
|
|
|
|
${C_INTERFACE_SOURCES}
|
|
|
|
${STATIC_SOURCES}
|
|
|
|
${OPTYAP_SOURCES}
|
|
|
|
${HEADERS}
|
2016-01-03 02:06:09 +00:00
|
|
|
$<TARGET_OBJECTS:libYAPOs>
|
2015-06-19 01:30:13 +01:00
|
|
|
$<TARGET_OBJECTS:libOPTYap>
|
2016-01-03 02:06:09 +00:00
|
|
|
$<TARGET_OBJECTS:myddas>
|
2015-06-19 01:30:13 +01:00
|
|
|
)
|
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
set_property(DIRECTORY PROPERTY CXX_STANDARD 11)
|
2015-06-19 01:30:13 +01:00
|
|
|
|
|
|
|
# Optional libraries that affect compilation
|
|
|
|
#
|
|
|
|
include (Config)
|
|
|
|
|
2015-11-09 11:36:33 +00:00
|
|
|
target_link_libraries(libYap m)
|
|
|
|
|
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
set_target_properties(libYap
|
|
|
|
PROPERTIES VERSION ${YAP_FULL_VERSION}
|
|
|
|
SOVERSION ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}
|
|
|
|
OUTPUT_NAME Yap
|
|
|
|
)
|
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
set(CMAKE_TOP_BINARY_DIR ${CMAKE_BINARY_DIR})
|
2014-12-04 07:59:30 +00:00
|
|
|
set(YAP_PL_SRCDIR ${CMAKE_SOURCE_DIR}/pl)
|
|
|
|
|
|
|
|
# Compatibility vars with autotols
|
|
|
|
set ( prefix "${CMAKE_INSTALL_PREFIX}")
|
|
|
|
set ( exec_prefix "${prefix}")
|
|
|
|
set ( libdir "${exec_prefix}/lib")
|
|
|
|
set ( dlls "${exec_prefix}/lib/Yap")
|
|
|
|
set ( includedir "${prefix}/include")
|
|
|
|
set ( datarootdir "${prefix}/share")
|
2014-12-14 12:05:43 +00:00
|
|
|
set ( libpl "${prefix}/share/Yap")
|
2014-12-04 07:59:30 +00:00
|
|
|
set ( datadir "${datarootdir}")
|
|
|
|
set ( mandir "${datarootdir}/man")
|
|
|
|
set ( bindir "${exec_prefix}/bin")
|
2014-12-14 12:05:43 +00:00
|
|
|
set ( docdir "${exec_prefix}/share/doc/Yap")
|
2014-12-04 07:59:30 +00:00
|
|
|
|
|
|
|
set(YAP_ROOTDIR ${prefix})
|
|
|
|
|
|
|
|
# erootdir -> rootdir
|
|
|
|
# bindir defined above
|
|
|
|
# libdir defined above
|
2015-06-19 01:30:13 +01:00
|
|
|
set(YAP_LIBDIR "${dlls}")
|
|
|
|
set(YAP_SHAREDIR "${datarootdir}")
|
|
|
|
set(YAP_BINDIR "${bindir}")
|
|
|
|
set(YAP_INCLUDEDIR "${includedir}")
|
2015-01-26 04:02:46 +00:00
|
|
|
set(YAP_ROOTDIR "${prefix}")
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
set(YAP_YAPLIB libYap${CMAKE_SHARED_LIBRARY_SUFFIX})
|
2014-12-04 07:59:30 +00:00
|
|
|
set(YAP_STARTUP startup.yss)
|
2014-12-14 12:05:43 +00:00
|
|
|
string(TIMESTAMP YAP_TIMESTAMP)
|
2014-12-15 14:32:35 +00:00
|
|
|
string( SUBSTRING ${CMAKE_SHARED_LIBRARY_SUFFIX} 1 -1 SO_EXT )
|
2014-12-04 07:59:30 +00:00
|
|
|
#
|
2015-10-27 23:02:31 +00:00
|
|
|
include_directories (H include os OPTYap utf8proc JIT/HPP)
|
2015-02-03 02:40:41 +00:00
|
|
|
include_directories (BEFORE ${CMAKE_BINARY_DIR})
|
2014-12-15 23:05:05 +00:00
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
# rpath stuff, hopefully it works
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
# use, i.e. don't skip the full RPATH for the build tree
|
|
|
|
SET(CMAKE_SKIP_BUILD_RPATH FALSE)
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
# when building, don't use the install RPATH already
|
|
|
|
# (but later on when installing)
|
|
|
|
SET(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
|
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
SET(CMAKE_INSTALL_RPATH "${libdir};${dlls}:")
|
2015-06-19 01:30:13 +01:00
|
|
|
|
|
|
|
# add the automatically determined parts of the RPATH
|
|
|
|
# which point to directories outside the build tree to the install RPATH
|
|
|
|
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
|
|
|
|
|
|
|
|
# the RPATH to be used when installing, but only if it's not a system directory
|
2015-11-05 23:51:35 +00:00
|
|
|
LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${libdir};${dlls}" isSystemDir)
|
2015-06-19 01:30:13 +01:00
|
|
|
IF("${isSystemDir}" STREQUAL "-1")
|
2015-11-05 23:51:35 +00:00
|
|
|
SET(CMAKE_INSTALL_RPATH "${libdir};${dlls}")
|
2015-06-19 01:30:13 +01:00
|
|
|
ENDIF("${isSystemDir}" STREQUAL "-1")
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
|
|
|
|
#
|
2014-12-04 07:59:30 +00:00
|
|
|
set ( MIN_STACKSPACE 1024*SIZEOF_INT_P )
|
|
|
|
set ( MIN_HEAPSPACE 2*1024*SIZEOF_INT_P )
|
|
|
|
set ( MIN_TRAILSPACE 512*SIZEOF_INT_P )
|
2014-12-14 12:05:43 +00:00
|
|
|
set ( DEF_STACKSPACE 0 )
|
|
|
|
set ( DEF_HEAPSPACE 0 )
|
|
|
|
set ( DEF_TRAILSPACE 0 )
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
# option (RATIONAL_TREES "support infinite rational trees" ON)
|
2015-02-03 02:40:41 +00:00
|
|
|
# dd_definitions (-D)
|
|
|
|
|
|
|
|
## don't touch these opts
|
2015-10-27 23:02:31 +00:00
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS DEPTH_LIMIT=1;COROUTINING=1;RATIONAL_TREES=1 )
|
2015-02-03 02:40:41 +00:00
|
|
|
|
|
|
|
# inform we are compiling YAP
|
2015-10-27 23:02:31 +00:00
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS "_YAP_NOT_INSTALLED_=1;HAVE_CONFIG_H=1" )
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-02-03 02:40:41 +00:00
|
|
|
# Compilation model
|
2015-10-27 23:02:31 +00:00
|
|
|
# target_compile_definitions(libYap PUBLIC _XOPEN_SOURCE=700 )
|
2014-12-14 12:05:43 +00:00
|
|
|
|
2015-02-03 02:40:41 +00:00
|
|
|
#add_definitions( -Wall -Wstrict-prototypes -Wmissing-prototypes)
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-02-03 02:40:41 +00:00
|
|
|
# Model Specific
|
2015-10-27 23:02:31 +00:00
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:Debug>:DEBUG=1> )
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
#ensure cells are properly aligned in code
|
|
|
|
set (ALIGN_LONGS 1)
|
|
|
|
|
|
|
|
#ensure best access to slots in environments
|
|
|
|
set (MSHIFTOFFS 1)
|
|
|
|
|
|
|
|
set (C_COMPILER CMAKE_C_COMPILER_ID)
|
|
|
|
|
|
|
|
if ( ${C_COMPILER} MATCHES "GNU")
|
|
|
|
set (HAVE_GCC 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# compatible compilers
|
|
|
|
if ( ${C_COMPILER} MATCHES "Clang")
|
|
|
|
set (HAVE_GCC 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if ( ${C_COMPILER} MATCHES "Intel")
|
|
|
|
set (HAVE_GCC 1)
|
|
|
|
endif()
|
|
|
|
|
2015-02-03 02:40:41 +00:00
|
|
|
# Model Specific
|
|
|
|
if (HAVE_GCC)
|
2015-10-27 23:02:31 +00:00
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_OPTIONS -Wall )
|
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_OPTIONS $<$<CONFIG:Release>:-O3;-fomit-frame-pointer;-fstrict-aliasing;-freorder-blocks;-fsched-interblock> )
|
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_OPTIONS -fexceptions )
|
2015-02-03 02:40:41 +00:00
|
|
|
endif()
|
2015-01-26 04:02:46 +00:00
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
# set_property( DIRECTORY APPEND_STRING PROPERTY -fsanitize=memory;-fsanitize-memory-track-origins=2)
|
2015-01-26 04:02:46 +00:00
|
|
|
|
|
|
|
message(STATUS "Running with CMAKE_C_FLAGS ${CMAKE_C_FLAGS}")
|
|
|
|
|
2014-12-15 14:32:35 +00:00
|
|
|
if (HAVE_GCC)
|
|
|
|
# replace instructions codes by the address of their code
|
2015-11-05 23:51:35 +00:00
|
|
|
option (WITH_THREADED_CODE "threaded code" ON)
|
|
|
|
if (WITH_THREADED_CODE)
|
2015-11-09 18:22:43 +00:00
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS THREADED_CODE=1;USE_SYSTEM_MALLOC=1)
|
2015-11-05 23:51:35 +00:00
|
|
|
endif (WITH_THREADED_CODE)
|
2014-12-15 14:32:35 +00:00
|
|
|
endif (HAVE_GCC)
|
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
#
|
2015-06-19 01:30:13 +01:00
|
|
|
#option (YAP_SWI_IO ON)
|
2015-03-28 20:08:33 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
OPTION (WITH_CALL_TRACER
|
|
|
|
"support for procedure-call tracing" ON)
|
2014-12-04 07:59:30 +00:00
|
|
|
#TODO:
|
2015-11-05 23:51:35 +00:00
|
|
|
if (WITH_CALL_TRACER)
|
2016-01-03 02:06:09 +00:00
|
|
|
set(YAP_SYSTEM_OPTIONS "call_tracer " ${YAP_SYSTEM_OPTIONS})
|
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:Debug>:LOW_LEVEL_TRACER=1> )
|
2015-11-05 23:51:35 +00:00
|
|
|
endif (WITH_CALL_TRACER)
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
#set( CMAKE_REQUIRED_LIBRARIES ${READLINE_LIBS} ${CMAKE_REQUIRED_LIBRARIES} )
|
|
|
|
#target_link_libraries(libYap ${READLINE_LIBS})
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
#utf-8 is not an option
|
|
|
|
# we use the nice UTF-8 package
|
|
|
|
#available at the Julia project
|
|
|
|
include_directories ( utf8proc )
|
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS UTF8PROC=1)
|
2015-11-05 23:51:35 +00:00
|
|
|
ADD_SUBDIRECTORY ( utf8proc )
|
|
|
|
|
|
|
|
macro_optional_find_package (GMP ON)
|
|
|
|
macro_log_feature (GMP_FOUND
|
|
|
|
"libgmp"
|
|
|
|
"GNU big integers and rationals"
|
|
|
|
"http://gmplib.org")
|
2016-01-03 02:06:09 +00:00
|
|
|
set(YAP_SYSTEM_OPTIONS "big_numbers " ${YAP_SYSTEM_OPTIONS})
|
2015-11-05 23:51:35 +00:00
|
|
|
if (GMP_FOUND)
|
|
|
|
include_directories (${GMP_INCLUDE_DIR})
|
2015-10-27 23:02:31 +00:00
|
|
|
#add_executable(test ${SOURCES})
|
|
|
|
target_link_libraries(libYap ${GMP_LIBRARIES})
|
|
|
|
#config.h needs this (TODO: change in code latter)
|
|
|
|
set( CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${GMP_INCLUDE_DIR} )
|
|
|
|
#set( CMAKE_REQUIRED_LIBRARIES ${GMP_LIBRARIES} ${CMAKE_REQUIRED_LIBRARIES} )
|
|
|
|
endif (GMP_FOUND)
|
2015-10-20 08:07:42 +01:00
|
|
|
|
2015-08-07 22:57:53 +01:00
|
|
|
macro_optional_find_package (Threads OFF)
|
2015-01-26 04:02:46 +00:00
|
|
|
macro_log_feature (THREADS_FOUND "Threads Support"
|
|
|
|
"GNU Threads Library (or similar)"
|
2014-12-04 07:59:30 +00:00
|
|
|
"http://www.gnu.org/software/threads")
|
2015-11-05 23:51:35 +00:00
|
|
|
if (WITH_Threads)
|
2014-12-04 07:59:30 +00:00
|
|
|
#
|
|
|
|
# CMAKE_THREAD_LIBS_INIT - the thread library
|
|
|
|
# CMAKE_USE_SPROC_INIT - are we using sproc?
|
|
|
|
# CMAKE_USE_WIN32_THREADS_INIT - using WIN32 threads?
|
|
|
|
# CMAKE_USE_PTHREADS_INIT - are we using pthreads
|
|
|
|
# CMAKE_HP_PTHREADS_INIT - are we using hp pthreads
|
|
|
|
#
|
|
|
|
# The following import target is created
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# Threads::Threads
|
|
|
|
#
|
|
|
|
# For systems with multiple thread libraries, caller can set
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# CMAKE_THREAD_PREFER_PTHREAD
|
|
|
|
#
|
|
|
|
# If the use of the -pthread compiler and linker flag is prefered then the
|
|
|
|
# caller can set
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
2014-12-14 12:05:43 +00:00
|
|
|
set( THREADS_PREFER_PTHREAD_FLAG ON)
|
2015-01-26 04:02:46 +00:00
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
if (CMAKE_USE_PTHREADS_INIT)
|
2015-01-26 04:02:46 +00:00
|
|
|
target_link_libraries(libYap pthread)
|
2014-12-14 12:05:43 +00:00
|
|
|
set (HAVE_READLINE_READLINE_H 1)
|
2015-06-19 01:30:13 +01:00
|
|
|
# set( CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} )
|
2014-12-14 12:05:43 +00:00
|
|
|
check_function_exists( pthread_mutexattr_setkind_np HAVE_PTHREAD_MUTEXATTR_SETKIND_NP )
|
|
|
|
check_function_exists( pthread_mutexattr_settype HAVE_PTHREAD_MUTEXATTR_SETTYPE )
|
2015-01-26 04:02:46 +00:00
|
|
|
check_function_exists( pthread_setconcurrency HAVE_PTHREAD_SETCONCURRENCY )
|
2014-12-14 12:05:43 +00:00
|
|
|
endif (CMAKE_USE_PTHREADS_INIT)
|
2016-01-03 02:06:09 +00:00
|
|
|
set(YAP_SYSTEM_OPTIONS "threads " ${YAP_SYSTEM_OPTIONS})
|
|
|
|
set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS THREADS=1)
|
2014-12-04 07:59:30 +00:00
|
|
|
#
|
|
|
|
# Please note that the compiler flag can only be used with the imported
|
|
|
|
# target. Use of both the imported target as well as this switch is highly
|
|
|
|
# recommended for new code.
|
2015-11-05 23:51:35 +00:00
|
|
|
endif (WITH_Threads)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
CMAKE_DEPENDENT_OPTION (WITH_MAX_Threads 1024
|
|
|
|
"maximum number of threads" "WITH_MAX_Threads" 1)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
CMAKE_DEPENDENT_OPTION (WITH_MAX_Workers 64
|
|
|
|
"maximum number of or-parallel workers" "WITH_MAX_Workers" 1)
|
2015-11-09 11:36:33 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
cmake_dependent_option (WITH_Pthread_Locking
|
2015-10-27 23:02:31 +00:00
|
|
|
"use pthread locking primitives for internal locking" ON
|
2015-11-05 23:51:35 +00:00
|
|
|
"WITH_ThreadsS" OFF)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
IF(WITH_Pthread_Lockin)
|
2015-10-27 23:02:31 +00:00
|
|
|
set_DIRECTORY_properties(PROPERTIES APPEND COMPILE_DEFINITIONS USE_PTHREAD_LOCKING=1)
|
|
|
|
ENDIF()
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
#
|
|
|
|
# include OS and I/o stuff
|
|
|
|
#
|
|
|
|
# convenience libraries
|
2015-10-27 23:02:31 +00:00
|
|
|
# OPTYap exports important flags
|
|
|
|
#
|
|
|
|
add_subDIRECTORY (OPTYap)
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
add_subDIRECTORY (packages/myddas)
|
2015-11-05 23:51:35 +00:00
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
|
|
|
|
add_subDIRECTORY (os)
|
2015-06-19 01:30:13 +01:00
|
|
|
|
|
|
|
#bootstrap and saved state
|
2015-10-27 23:02:31 +00:00
|
|
|
add_subDIRECTORY (pl)
|
2015-06-19 01:30:13 +01:00
|
|
|
|
|
|
|
#C++ interface
|
2015-10-27 23:02:31 +00:00
|
|
|
add_subDIRECTORY (CXX)
|
2015-06-19 01:30:13 +01:00
|
|
|
|
2014-12-15 23:05:05 +00:00
|
|
|
ADD_SUBDIRECTORY(library)
|
|
|
|
ADD_SUBDIRECTORY(swi/library)
|
|
|
|
# ADD_SUBDIRECTORY(os)
|
|
|
|
# ADD_SUBDIRECTORY(packages)
|
2015-01-26 04:02:46 +00:00
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
option (WITH_JIT
|
2015-08-07 22:57:53 +01:00
|
|
|
"just in Time Clause Compilation" OFF)
|
2015-11-09 11:36:33 +00:00
|
|
|
if (WITH_JIT)
|
2015-10-27 23:02:31 +00:00
|
|
|
add_subDIRECTORY(JIT)
|
2015-11-09 11:36:33 +00:00
|
|
|
endif (WITH_JIT)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
|
|
|
add_subDIRECTORY (packages/gecode)
|
|
|
|
|
|
|
|
add_subDIRECTORY (packages/real)
|
|
|
|
|
|
|
|
add_subDIRECTORY (packages/python)
|
|
|
|
|
|
|
|
add_subDIRECTORY (packages/jpl)
|
|
|
|
|
|
|
|
add_subDIRECTORY (packages/swig)
|
|
|
|
|
|
|
|
add_subDIRECTORY (packages/bdd)
|
|
|
|
|
2015-11-09 11:30:40 +00:00
|
|
|
add_subDIRECTORY (packages/ProbLog)
|
2015-11-05 23:51:35 +00:00
|
|
|
|
2015-11-09 11:30:40 +00:00
|
|
|
add_subDIRECTORY (packages/swi-minisat2)
|
2015-11-05 23:51:35 +00:00
|
|
|
|
2015-11-09 11:30:40 +00:00
|
|
|
add_subDIRECTORY (packages/CLPBN)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2015-11-09 11:30:40 +00:00
|
|
|
add_subDIRECTORY (packages/cplint)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
|
|
|
add_subDIRECTORY (packages/raptor)
|
|
|
|
|
2016-01-03 02:06:09 +00:00
|
|
|
# add_subDIRECTORY (docs)
|
2015-11-18 15:06:25 +00:00
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
# add_subDIRECTORY (packages/cuda)
|
2014-12-04 07:59:30 +00:00
|
|
|
|
|
|
|
#todo: use cmake target builds
|
2015-10-27 23:02:31 +00:00
|
|
|
# option (USE_MAXPERFORMANCE
|
2014-12-04 07:59:30 +00:00
|
|
|
# "try using the best flags for specific architecture" OFF)
|
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
# option (USE_MAXMEMORY
|
2014-12-04 07:59:30 +00:00
|
|
|
# "try using the best flags for using the memory to the most" ON)
|
|
|
|
#TODO: check MAXMEMORY
|
|
|
|
|
|
|
|
#TODO: use cmake target builds
|
2015-10-27 23:02:31 +00:00
|
|
|
# option (USE_DEBUGYAP
|
2014-12-04 07:59:30 +00:00
|
|
|
# "enable C-debugging for YAP" OFF)
|
|
|
|
|
|
|
|
#TODO: use cmake arch/compiler
|
2015-10-27 23:02:31 +00:00
|
|
|
# option (USE_CYGWIN
|
2014-12-04 07:59:30 +00:00
|
|
|
# "use cygwin library in WIN32" OFF)
|
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
option (WITH_PRISM
|
2014-12-04 07:59:30 +00:00
|
|
|
"use PRISM system in YAP" ON)
|
|
|
|
#TODO:
|
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
option (WITH_YAP_DLL
|
2014-12-04 07:59:30 +00:00
|
|
|
"compile YAP as a DLL" ON)
|
|
|
|
#TODO:
|
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
option (WITH_YAP_STATIC
|
2014-12-04 07:59:30 +00:00
|
|
|
"compile YAP statically" OFF)
|
|
|
|
#TODO:
|
|
|
|
|
2015-10-20 08:07:42 +01:00
|
|
|
# modern systems do this.
|
|
|
|
set ( MALLOC_T "void *" )
|
2015-11-05 23:51:35 +00:00
|
|
|
CMAKE_DEPENDENT_OPTION (WITH_SYSTEM_MALLOC
|
|
|
|
"use malloc to allocate memory" ON "NOT WITH_COPY_OR_PARALELISM" OFF)
|
|
|
|
CMAKE_DEPENDENT_OPTION (WITH_DL_MALLOC
|
|
|
|
"use malloc to allocate memory" ON "NOT WITH_SYSTEM_MALLOC" OFF)
|
|
|
|
CMAKE_DEPENDENT_OPTION (WITH_YAP_MALLOC
|
|
|
|
"use malloc to allocate memory" ON "NOT WITH_SYSTEM_MALLOC;NOT WITH_DL_MALLOC" OFF)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
option(WITH_YAP_CONDOR
|
2014-12-04 07:59:30 +00:00
|
|
|
"allow YAP to be used from condor" OFF)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
if (WITH_YAP_CONDOR)
|
2015-10-27 23:02:31 +00:00
|
|
|
# use default allocator
|
|
|
|
set ( YAP_STATIC ON )
|
|
|
|
set ( YAP_DLL OFF )
|
|
|
|
endif()
|
2014-12-04 07:59:30 +00:00
|
|
|
|
|
|
|
#TODO: detect arch before allow this option
|
|
|
|
# OPTION(WIN64
|
|
|
|
# "compile YAP for win64" OFF)
|
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
# option (APRIL
|
2014-12-04 07:59:30 +00:00
|
|
|
# "compile Yap to support April ILP system" OFF)
|
|
|
|
# option (DLCOMPAT
|
|
|
|
# "use dlcompat library for dynamic loading on Mac OS X" OFF)
|
|
|
|
|
|
|
|
# SHARED PACKAGES with SWI
|
|
|
|
# swi packages have both Makefile.in which we will use and
|
|
|
|
# Makefile.mak, we will use the later to identify this packages
|
|
|
|
# while we keep both autotools amd cmake working side by side
|
|
|
|
# Search for available packages which all have a Makefile.mak
|
|
|
|
#file (GLOB PACKAGES packages/*/Makefile.mak)
|
|
|
|
|
|
|
|
# needed by this packages
|
|
|
|
|
|
|
|
|
2015-06-19 01:30:13 +01:00
|
|
|
target_link_libraries(libYap
|
2015-09-21 23:05:36 +01:00
|
|
|
utf8proc
|
2015-06-19 01:30:13 +01:00
|
|
|
${GMP_LIBRARIES}
|
|
|
|
${READLINE_LIBS}
|
|
|
|
${CMAKE_DL_LIBS}
|
|
|
|
)
|
2014-12-04 07:59:30 +00:00
|
|
|
|
|
|
|
add_executable (yap-bin ${CONSOLE_SOURCES})
|
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
set_target_properties (yap-bin PROPERTIES OUTPUT_NAME yap)
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
target_link_libraries(yap-bin libYap )
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-01-26 04:02:46 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
CMAKE_DEPENDENT_OPTION (WITH_SYSTEM_MMAP "Use MMAP for shared memory allocation" ON
|
|
|
|
"NOT WITH_YAPOR_THOR" OFF)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
CMAKE_DEPENDENT_OPTION (WITH_SYSTEM_SHM "Use SHM for shared memory allocation" ON
|
|
|
|
"NOT WITH_YAPOR_THOR; NOT WITH_SYSTEM_MMAP" OFF )
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
macro_optional_find_package (MPI OFF)
|
2015-10-27 23:02:31 +00:00
|
|
|
|
|
|
|
add_subDIRECTORY(library/lammpi)
|
|
|
|
|
|
|
|
if (MPI_C_FOUND)
|
2015-11-09 11:36:33 +00:00
|
|
|
|
2015-11-05 23:51:35 +00:00
|
|
|
CMAKE_DEPENDENT_OPTION( WITH_MPI ON "Interface to OpenMPI/MPICH"
|
2015-10-27 23:02:31 +00:00
|
|
|
"MPI_C_FOUND" OFF)
|
2015-11-05 23:51:35 +00:00
|
|
|
macro_optional_add_subDIRECTORY(library/mpi)
|
2015-10-27 23:02:31 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${MPI_C_COMPILE_FLAGS} ")
|
|
|
|
include_directories(${MPI_C_INCLUDE_PATH})
|
|
|
|
target_link_libraries(yap-bin ${MPI_C_LIBRARIES} )
|
|
|
|
if(MPI_C_COMPILE_FLAGS)
|
|
|
|
set_target_properties(yap-bin PROPERTIES
|
|
|
|
COMPILE_FLAGS "${MPI_C_COMPILE_FLAGS}")
|
|
|
|
endif(MPI_C_COMPILE_FLAGS)
|
|
|
|
|
|
|
|
if(MPI_C_LINK_FLAGS)
|
|
|
|
set_target_properties(yap-bin PROPERTIES
|
|
|
|
LINK_FLAGS "${MPI_C_LINK_FLAGS}")
|
|
|
|
endif()
|
|
|
|
endif (MPI_C_FOUND)
|
2015-01-26 04:02:46 +00:00
|
|
|
|
|
|
|
|
2014-12-14 12:05:43 +00:00
|
|
|
add_custom_target (main ALL DEPENDS ${YAP_STARTUP} ) # WORKING_DIRECTORY ${CMAKE_BINARY_DIR} )
|
2015-06-19 01:30:13 +01:00
|
|
|
#
|
|
|
|
# include subdirectories configuration
|
|
|
|
## after we have all functionality in
|
|
|
|
#
|
|
|
|
|
|
|
|
configure_file ("${PROJECT_SOURCE_DIR}/config.h.cmake"
|
|
|
|
"${PROJECT_BINARY_DIR}/YapConfig.h" )
|
|
|
|
configure_file ("${PROJECT_SOURCE_DIR}/YapTermConfig.h.cmake"
|
|
|
|
"${PROJECT_BINARY_DIR}/YapTermConfig.h" )
|
2015-10-27 23:02:31 +00:00
|
|
|
configure_file ("${PROJECT_SOURCE_DIR}/config.h.cmake"
|
|
|
|
"${PROJECT_BINARY_DIR}/config.h" )
|
2015-06-19 01:30:13 +01:00
|
|
|
configure_file("${PROJECT_SOURCE_DIR}/GitSHA1.c.in" "${PROJECT_BINARY_DIR}/GitSHA1.c" @ONLY)
|
|
|
|
|
2015-09-21 23:05:36 +01:00
|
|
|
# ADD_SUBDIRECTORY(console/terminal)
|
2015-06-19 01:30:13 +01:00
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
|
|
|
|
install (
|
2014-12-14 12:05:43 +00:00
|
|
|
TARGETS yap-bin libYap
|
|
|
|
RUNTIME DESTINATION ${bindir}
|
|
|
|
ARCHIVE DESTINATION ${libdir}
|
|
|
|
LIBRARY DESTINATION ${libdir}
|
|
|
|
)
|
2014-12-04 07:59:30 +00:00
|
|
|
|
2015-10-27 23:02:31 +00:00
|
|
|
|
2014-12-04 07:59:30 +00:00
|
|
|
macro_display_feature_log()
|
2015-10-27 23:02:31 +00:00
|
|
|
if(POLICY CMP0058)
|
|
|
|
cmake_policy(SET CMP0058 NEW)
|
|
|
|
endif(POLICY CMP0058)
|