From bf67b8e609793ed043e02f836bce657b3983ab79 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Sat, 11 Nov 2017 22:48:09 +0000 Subject: [PATCH] cleanup --- CMakeLists.txt | 778 ++--- cmake/FindGMP.cmake | 22 +- cmake/FindReadline.cmake | 47 +- cmake/python.cmake | 7 +- info/build.sh | 24 +- info/meta.yaml | 3 + nbproject/configurations.xml | 1948 ----------- .../CodeAssistancePathMapper.properties | 1 - nbproject/private/Default.properties | 185 -- .../private/c_standard_headers_indexer.c | 75 - nbproject/private/configurations.xml | 2913 ----------------- .../private/cpp_standard_headers_indexer.cpp | 135 - nbproject/private/launcher.properties | 42 - nbproject/private/private.xml | 10 - nbproject/project.xml | 26 - packages/python/CMakeLists.txt | 4 +- packages/python/swig/CMakeLists.txt | 7 +- packages/python/yap_kernel/CMakeLists.txt | 1 + .../yap_kernel/yap_kernel.egg-info/PKG-INFO | 21 - .../yap_kernel.egg-info/SOURCES.txt | 82 - .../yap_kernel.egg-info/dependency_links.txt | 1 - .../yap_kernel.egg-info/requires.txt | 7 - .../yap_kernel.egg-info/top_level.txt | 4 - pl/debug.yap | 2 +- rules.ninja | 578 ---- yap-6.3-new.kdev4 | 4 - yap-6.3.kdev4 | 4 - 27 files changed, 441 insertions(+), 6490 deletions(-) delete mode 100644 nbproject/configurations.xml delete mode 100644 nbproject/private/CodeAssistancePathMapper.properties delete mode 100644 nbproject/private/Default.properties delete mode 100644 nbproject/private/c_standard_headers_indexer.c delete mode 100644 nbproject/private/configurations.xml delete mode 100644 nbproject/private/cpp_standard_headers_indexer.cpp delete mode 100644 nbproject/private/launcher.properties delete mode 100644 nbproject/private/private.xml delete mode 100644 nbproject/project.xml delete mode 100644 packages/python/yap_kernel/yap_kernel.egg-info/PKG-INFO delete mode 100644 packages/python/yap_kernel/yap_kernel.egg-info/SOURCES.txt delete mode 100644 packages/python/yap_kernel/yap_kernel.egg-info/dependency_links.txt delete mode 100644 packages/python/yap_kernel/yap_kernel.egg-info/requires.txt delete mode 100644 packages/python/yap_kernel/yap_kernel.egg-info/top_level.txt delete mode 100644 rules.ninja delete mode 100644 yap-6.3-new.kdev4 delete mode 100644 yap-6.3.kdev4 diff --git a/CMakeLists.txt b/CMakeLists.txt index b1fa59729..a14aca500 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.4) # value of 3.4.0 or lower. include(CMakeToolsHelpers OPTIONAL) -project( YAP ) +project(YAP) include(FeatureSummary) include(GNUInstallDirs) @@ -15,15 +15,10 @@ include(GNUInstallDirs) set(YAP_APP_DIR "${CMAKE_SOURCE_DIR}/../..") cmake_policy(VERSION 3.4) -set( - CMAKE_MODULE_PATH - "${CMAKE_SOURCE_DIR}" - "${CMAKE_SOURCE_DIR}/cmake" - ) +set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}" "${CMAKE_SOURCE_DIR}/cmake") -IF (ENV{CONDA_BUILD} STREQUAL "1") - set (ANACONDA YES) -endif() + set(ANACONDA $ENV{CONDA_BUILD} CACHE BOOL "Anaconda Environment") + message(STATUS "ANACONDA found: ${ANACONDA}") include(CheckIncludeFiles) include(CheckLibraryExists) @@ -54,153 +49,153 @@ include(GetGitRevisionDescription) #cross-compilation support # Search packages for host system instead of packages for target system # in case of cross compilation define these macro by toolchain file -if(NOT COMMAND find_host_package) - macro(find_host_package) - find_package(${ARGN}) - endmacro() -endif() -if(NOT COMMAND find_host_program) - macro(find_host_program) - find_program(${ARGN}) - endmacro() -endif() +if (NOT COMMAND find_host_package) + macro(find_host_package) + find_package(${ARGN}) + endmacro() +endif () +if (NOT COMMAND find_host_program) + macro(find_host_program) + find_program(${ARGN}) + endmacro() +endif () if (POLICY CMP0003) - cmake_policy(SET CMP0003 NEW) -endif() + cmake_policy(SET CMP0003 NEW) +endif () if (POLICY CMP0068) - cmake_policy(SET CMP0068 NEW) -endif() + cmake_policy(SET CMP0068 NEW) +endif () option(BUILD_SHARED_LIBS "Build shared library" ON) -set (CMAKE_POSITION_INDEPENDENT_CODE TRUE) -set (CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) +set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) +set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) #begining stuff for top CMakeLists -include (MacroLogFeature) +include(MacroLogFeature) if (POLICY CMP0042) - cmake_policy( SET CMP0042 NEW) -endif() + cmake_policy(SET CMP0042 NEW) +endif () function(add_to_group list output) - set (tmp ${${output}}) - foreach (path ${${list}}) - get_source_file_property(path ${path} LOCATION) - list( APPEND tmp ${path}) - endforeach () - set (${output} ${tmp} CACHE INTERNAL "prolog library files") -endfunction(add_to_group list output ) + set(tmp ${${output}}) + foreach (path ${${list}}) + get_source_file_property(path ${path} LOCATION) + list(APPEND tmp ${path}) + endforeach () + set(${output} ${tmp} CACHE INTERNAL "prolog library files") +endfunction(add_to_group list output) function(add_to_libgroup el list) - # add_custom_command( TARGET ${el} POST_BUILD - # COMMAND ${CMAKE_COMMAND} -E copy $ ${CMAKE_BINARY_DIR}/packages/python/swig/yap4py - # DEPENDS ${el} ) - list( APPEND ${list} ${${el}}) - set (${list} ${${list}} CACHE INTERNAL "prolog dll files") -endfunction(add_to_libgroup el list ) + # add_custom_command( TARGET ${el} POST_BUILD + # COMMAND ${CMAKE_COMMAND} -E copy $ ${CMAKE_BINARY_DIR}/packages/python/swig/yap4py + # DEPENDS ${el} ) + list(APPEND ${list} ${${el}}) + set(${list} ${${list}} CACHE INTERNAL "prolog dll files") +endfunction(add_to_libgroup el list) function(add_to_corelibgroup el list) - # add_custom_command( TARGET ${el} POST_BUILD - # COMMAND ${CMAKE_COMMAND} -E copy $ $ $ ${CMAKE_BINARY_DIR}/packages/python/swig/yap4py - # DEPENDS ${el} ) - list( APPEND ${list} ${${el}}) - set (${list} ${${list}} CACHE INTERNAL "prolog dll files") -endfunction(add_to_corelibgroup el list ) + # add_custom_command( TARGET ${el} POST_BUILD + # COMMAND ${CMAKE_COMMAND} -E copy $ $ $ ${CMAKE_BINARY_DIR}/packages/python/swig/yap4py + # DEPENDS ${el} ) + list(APPEND ${list} ${${el}}) + set(${list} ${${list}} CACHE INTERNAL "prolog dll files") +endfunction(add_to_corelibgroup el list) if (ANDROID_OLD) - macro ( MY_add_custom_target) - endmacro() -else() - macro ( MY_add_custom_target ) - add_custom_target (${ARGN}) - endmacro() -endif() + macro(MY_add_custom_target) + endmacro() +else () + macro(MY_add_custom_target) + add_custom_target(${ARGN}) + endmacro() +endif () if (WIN32) - macro ( add_component arg1 ) - add_library ( ${arg1} OBJECT ${ARGN}) - endmacro() -else() - macro ( add_component arg1 ) - add_library ( ${arg1} OBJECT ${ARGN}) - endmacro() -endif() -macro ( add_lib arg1 ) - add_library ( ${arg1} SHARED ${ARGN}) - add_to_libgroup( ${arg1} YAP_DLLS ) + macro(add_component arg1) + add_library(${arg1} OBJECT ${ARGN}) + endmacro() +else () + macro(add_component arg1) + add_library(${arg1} OBJECT ${ARGN}) + endmacro() +endif () +macro(add_lib arg1) + add_library(${arg1} SHARED ${ARGN}) + add_to_libgroup(${arg1} YAP_DLLS) endmacro() -macro ( add_corelib arg1 ) - add_library ( ${arg1} SHARED ${ARGN}) - add_to_corelibgroup( ${arg1} YAP_DLLS ) +macro(add_corelib arg1) + add_library(${arg1} SHARED ${ARGN}) + add_to_corelibgroup(${arg1} YAP_DLLS) endmacro() if (ANDROID_OLD) - macro ( MY_add_dependencies) - endmacro() -else() - macro ( MY_add_dependencies ) - add_dependencies (${ARGN}) - endmacro() -endif() + macro(MY_add_dependencies) + endmacro() +else () + macro(MY_add_dependencies) + add_dependencies(${ARGN}) + endmacro() +endif () if (ANDROID_OLD) - macro ( MY_add_library) - endmacro() -else() - macro ( MY_add_library ) - add_library (${ARGN}) - endmacro() -endif() + macro(MY_add_library) + endmacro() +else () + macro(MY_add_library) + add_library(${ARGN}) + endmacro() +endif () if (ANDROID) - macro ( MY_add_subdirectory) - endmacro() -else() - macro ( MY_add_subdirectory ) - add_subdirectory (${ARGN}) - endmacro() -endif() + macro(MY_add_subdirectory) + endmacro() +else () + macro(MY_add_subdirectory) + add_subdirectory(${ARGN}) + endmacro() +endif () if (ANDROID_OLD) - macro ( MY_include) - endmacro() -else() - macro ( MY_include ) - include (${ARGN}) - endmacro() -endif() + macro(MY_include) + endmacro() +else () + macro(MY_include) + include(${ARGN}) + endmacro() +endif () if (ANDROID) - macro ( MY_install) - endmacro() -else() - macro ( MY_install ) - install (${ARGN}) - endmacro() -endif() + macro(MY_install) + endmacro() +else () + macro(MY_install) + install(${ARGN}) + endmacro() +endif () if (ANDROID_OLD) - macro ( MY_set_target_properties) - endmacro() -else() - macro ( MY_set_target_properties ) - set_target_properties (${ARGN}) - endmacro() -endif() + macro(MY_set_target_properties) + endmacro() +else () + macro(MY_set_target_properties) + set_target_properties(${ARGN}) + endmacro() +endif () if (ANDROID_OLD) - macro ( MY_target_link_libraries) - endmacro() -else() - macro ( MY_target_link_libraries ) - target_link_libraries (${ARGN}) - endmacro() -endif() + macro(MY_target_link_libraries) + endmacro() +else () + macro(MY_target_link_libraries) + target_link_libraries(${ARGN}) + endmacro() +endif () # where we have most scripts @@ -213,42 +208,59 @@ include(disallow) disallow_intree_builds() # set(CMAKE_BUILD_TYPE Debug) - -if (APPLE) - set (MACOSX_RPATH ON) - set (PATH $ENV{PATH}) - list (FIND ${PATH} pos /usr/local) - if (pos EQUAL -1) - set (pos 0) - endif() - list (INSERT CMAKE_PREFIX_PATH pos - /usr/local/opt/gmp - /usr/local/opt/libxml2 - /usr/local/opt/openmpi - /usr/local/opt/openssl - /usr/local/opt/postgresql - /usr/local/opt/python3 - /usr/local/opt/readline - /usr/local/opt/swig - ) -endif ( ) -if(ANDROID) - set ( datarootdir /assets ) +if (ANACONDA) + set(CMAKE_LIBRARY_ARCHITECTURE $ENV{PREFIX}) + set(CMAKE_PREFIX_PATH $ENV{PREFIX} $ENV{SYS_PREFIX}) + set( PATH $ENV{PREFIX}/bin $ENV{SYS_PREFIX}/bin ${PATH} ) + set( PYTHON_EXECUTABLE "$ENV{PYTHON}") + set( R_COMMAND "$ENV{R}") +# set(CMAKE_INCLUDE_PATH $ENV{SYS_PREFIX}/include ${CMAKE_INCLUDE_PATH} ) +#set(CMAKE_LIBRARY_PATH $ENV{SYS_PREFIX}/lib $ENV{SYS_PREFIX}/lib ${CMAKE_LIBRARY_PATH}) +# set(ENV{PATH} PATH $ENV{PREFIX}/bin $ENV{SYS_PREFIX}/bin $ENV{PATH}) +# set(PATH $ENV{PATH} ${PATH}) + #set( CMAKE_INSTALL_PREFIX $ENV{PREFIX} ) + set( PYTHON_LIBRARY $ENV{PREFIX}/lib/libpython$ENV{PY_VER}m$ENV{SHLIB_EXT}) + set( PYTHON_INCLUDE_DIR $ENV{PREFIX}/include/python$ENV{PY_VER}m) + endif() -set ( prefix ${CMAKE_INSTALL_PREFIX}) #BINDIR}) -set ( bindir ${CMAKE_INSTALL_PREFIX}/bin) #BINDIR}) -set ( includedir ${CMAKE_INSTALL_PREFIX}/include) #INCLUDEDIR}) -set ( libdir ${CMAKE_INSTALL_PREFIX}/lib) #LIBDIR}) -set ( exec_prefix ${CMAKE_INSTALL_PREFIX}/libexec) #LIBEXECDIR}) -set( datarootdir ${CMAKE_INSTALL_PREFIX}/share) #DATAROOTDIR}) -set ( datadir ${CMAKE_INSTALL_PREFIX}/share) #DATADIR}) -set ( mandir ${CMAKE_INSTALL_PREFIX}/share/man) #MANDIR}) -set ( docdir ${CMAKE_INSTALL_PREFIX}/share/docs) #MANDIR}) +if (APPLE) + set(MACOSX_RPATH ON) + if (NOT ANACONDA) + set(PATH $ENV{PATH}) + list(FIND ${PATH} pos /usr/local) + if (pos EQUAL -1) + set(pos 0) + endif () + list(INSERT CMAKE_PREFIX_PATH pos + /usr/local/opt/gmp + /usr/local/opt/libxml2 + /usr/local/opt/openmpi + /usr/local/opt/openssl + /usr/local/opt/postgresql + /usr/local/opt/python3 + /usr/local/opt/readline + /usr/local/opt/swig + ) + endif () +endif () -set ( libpl ${datarootdir}/Yap) +if (ANDROID) + set(datarootdir /assets) +endif () +set(prefix ${CMAKE_INSTALL_PREFIX}) #BINDIR}) +set(bindir ${CMAKE_INSTALL_PREFIX}/bin) #BINDIR}) +set(includedir ${CMAKE_INSTALL_PREFIX}/include) #INCLUDEDIR}) +set(libdir ${CMAKE_INSTALL_PREFIX}/lib) #LIBDIR}) +set(exec_prefix ${CMAKE_INSTALL_PREFIX}/libexec) #LIBEXECDIR}) +set(datarootdir ${CMAKE_INSTALL_PREFIX}/share) #DATAROOTDIR}) +set(datadir ${CMAKE_INSTALL_PREFIX}/share) #DATADIR}) +set(mandir ${CMAKE_INSTALL_PREFIX}/share/man) #MANDIR}) +set(docdir ${CMAKE_INSTALL_PREFIX}/share/docs) #MANDIR}) -set ( dlls ${libdir}/Yap) +set(libpl ${datarootdir}/Yap) + +set(dlls ${libdir}/Yap) set(YAP_ROOTDIR ${prefix}) # erootdir -> rootdir @@ -266,14 +278,15 @@ set(YAP_LIBDIR ${dlls}) # # include( Model NO_POLICY_SCOPE ) -include (cudd NO-POLICY-SCOPE) -include (java NO-POLICY-SCOPE) +include(cudd NO-POLICY-SCOPE) +include(java NO-POLICY-SCOPE) -set (pl_library "" CACHE INTERNAL "prolog library files" ) -set (pl_os_library "" CACHE INTERNAL "prolog os files" ) -set (pl_boot_library "" CACHE INTERNAL "prolog boot files" ) +set(pl_library "" CACHE INTERNAL "prolog library files") +set(pl_os_library "" CACHE INTERNAL "prolog os files") +set(pl_boot_library "" CACHE INTERNAL "prolog boot files") -find_package (GMP) + +find_package(GMP) # GMP_FOUND - true if GMP/MPIR was found # GMP_INCLUDE_DIRS - include search path # GMP_LIBRARIES - libraries to link with @@ -281,7 +294,7 @@ find_package (GMP) list(APPEND YAP_SYSTEM_OPTIONS big_numbers) -find_package( Readline) +include(FindReadline) List(APPEND YAP_SYSTEM_OPTIONS readline) # include subdirectories configuration @@ -309,46 +322,46 @@ set(YAP_MINOR_VERSION 3) set(YAP_PATCH_VERSION 5) set(YAP_FULL_VERSION - ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}.${YAP_PATCH_VERSION}) + ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}.${YAP_PATCH_VERSION}) set(YAP_FVERSION - ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}.${YAP_PATCH_VERSION}) + ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION}.${YAP_PATCH_VERSION}) set(YAP_NUMERIC_VERSION - ${YAP_MAJOR_VERSION}*10000+${YAP_MINOR_VERSION}*100+${YAP_PATCH_VERSION}) + ${YAP_MAJOR_VERSION}*10000+${YAP_MINOR_VERSION}*100+${YAP_PATCH_VERSION}) set(MYDDAS_VERSION MYDDAS-0.9.1) -site_name( YAP_SITE ) +site_name(YAP_SITE) if (WIN32) - set (YAP_ARCH $ENV{PROCESSOR_ARCHITECTURE}) - set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS "MS_WIN64=1" ) - set(YAP_SYSTEM_OPTIONS "windows " ${YAP_SYSTEM_OPTIONS}) -endif() + set(YAP_ARCH $ENV{PROCESSOR_ARCHITECTURE}) + set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS "MS_WIN64=1") + set(YAP_SYSTEM_OPTIONS "windows " ${YAP_SYSTEM_OPTIONS}) +endif () if (UNIX) - find_program (UNAME uname) - execute_process ( - COMMAND ${UNAME} -m - OUTPUT_VARIABLE YAP_ARCH OUTPUT_STRIP_TRAILING_WHITESPACE ) - set(YAP_SYSTEM_OPTIONS "unix " ${YAP_SYSTEM_OPTIONS}) -endif() + find_program(UNAME uname) + execute_process( + COMMAND ${UNAME} -m + OUTPUT_VARIABLE YAP_ARCH OUTPUT_STRIP_TRAILING_WHITESPACE) + set(YAP_SYSTEM_OPTIONS "unix " ${YAP_SYSTEM_OPTIONS}) +endif () # -set ( MIN_STACKSPACE 1024*SIZEOF_INT_P ) -set ( MIN_HEAPSPACE 32*1024*SIZEOF_INT_P ) -set ( MIN_TRAILSPACE 512*SIZEOF_INT_P ) -set ( DEF_STACKSPACE 0 ) -set ( DEF_HEAPSPACE 0 ) -set ( DEF_TRAILSPACE 0 ) +set(MIN_STACKSPACE 1024*SIZEOF_INT_P) +set(MIN_HEAPSPACE 32*1024*SIZEOF_INT_P) +set(MIN_TRAILSPACE 512*SIZEOF_INT_P) +set(DEF_STACKSPACE 0) +set(DEF_HEAPSPACE 0) +set(DEF_TRAILSPACE 0) # option (RATIONAL_TREES "support infinite rational trees" ON) # dd_definitions (-D) ## don't touch these opts -set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS DEPTH_LIMIT=1;COROUTINING=1;RATIONAL_TREES=1 ) +set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS DEPTH_LIMIT=1;COROUTINING=1;RATIONAL_TREES=1) # inform we are compiling YAP -set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS "_YAP_NOT_INSTALLED_=1;HAVE_CONFIG_H=1;_GNU_SOURCE" ) +set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS "_YAP_NOT_INSTALLED_=1;HAVE_CONFIG_H=1;_GNU_SOURCE") # Compilation model # target_compile_definitions(libYap PUBLIC _XOPEN_SOURCE=700 ) @@ -356,158 +369,157 @@ set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS "_YAP_NOT_INSTALLE #add_definitions( -Wall -Wstrict-prototypes -Wmissing-prototypes) # Model Specific -set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$:DEBUG=1> ) +set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$:DEBUG=1>) #ensure cells are properly aligned in code -set (ALIGN_LONGS 1) +set(ALIGN_LONGS 1) #ensure best access to slots in environments -set (MSHIFTOFFS 1) +set(MSHIFTOFFS 1) -set (C_COMPILER CMAKE_C_COMPILER_ID) +set(C_COMPILER CMAKE_C_COMPILER_ID) -if ( ${C_COMPILER} MATCHES "GNU") - set (HAVE_GCC 1) -endif() +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 "Clang") + set(HAVE_GCC 1) +endif () -if ( ${C_COMPILER} MATCHES "Intel") - set (HAVE_GCC 1) -endif() +if (${C_COMPILER} MATCHES "Intel") + set(HAVE_GCC 1) +endif () # Model Specific if (HAVE_GCC) - set_property( DIRECTORY APPEND PROPERTY COMPILE_OPTIONS -Wall ) - if ( ${C_COMPILER} MATCHES "GNU") - set_property( DIRECTORY APPEND PROPERTY COMPILE_OPTIONS $<$:-O3;-fomit-frame-poinkter;-fstrict-aliasing;-freorder-blocks;-fsched-interblock> ) - else() - set_property( DIRECTORY APPEND PROPERTY COMPILE_OPTIONS $<$:-O3;-fstrict-aliasing;-freorder-blocks;-fsched-interblock> ) - endif() - set_property( DIRECTORY APPEND PROPERTY COMPILE_OPTIONS -fexceptions ) -endif() + set_property(DIRECTORY APPEND PROPERTY COMPILE_OPTIONS -Wall) + if (${C_COMPILER} MATCHES "GNU") + set_property(DIRECTORY APPEND PROPERTY COMPILE_OPTIONS $<$:-O3;-fomit-frame-poinkter;-fstrict-aliasing;-freorder-blocks;-fsched-interblock>) + else () + set_property(DIRECTORY APPEND PROPERTY COMPILE_OPTIONS $<$:-O3;-fstrict-aliasing;-freorder-blocks;-fsched-interblock>) + endif () + set_property(DIRECTORY APPEND PROPERTY COMPILE_OPTIONS -fexceptions) +endif () # set_property( DIRECTORY APPEND_STRING PROPERTY -fsanitize=memory;-fsanitize-memory-track-origins=2) if (HAVE_GCC) - # replace instructions codes by the address of their code - option (WITH_THREADED_CODE "threaded code" ON) - if (WITH_THREADED_CODE) - set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS THREADED_CODE=1) - endif (WITH_THREADED_CODE) + # replace instructions codes by the address of their code + option(WITH_THREADED_CODE "threaded code" ON) + if (WITH_THREADED_CODE) + set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS THREADED_CODE=1) + endif (WITH_THREADED_CODE) endif (HAVE_GCC) # #option (YAP_SWI_IO ON) -OPTION (WITH_CALL_TRACER - "support for procedure-call tracing" ON) +OPTION(WITH_CALL_TRACER + "support for procedure-call tracing" ON) #TODO: if (WITH_CALL_TRACER) - list (APPEND YAP_SYSTEM_OPTIONS "call_tracer " ${YAP_SYSTEM_OPTIONS}) - set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$:LOW_LEVEL_TRACER=1> ) + list(APPEND YAP_SYSTEM_OPTIONS "call_tracer " ${YAP_SYSTEM_OPTIONS}) + set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$:LOW_LEVEL_TRACER=1>) endif (WITH_CALL_TRACER) -set_property( DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS UTF8PROC=1) +set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS UTF8PROC=1) -include_directories ( utf8proc packages/myddas packages/myddas/sqlite3/src) +include_directories(utf8proc packages/myddas packages/myddas/sqlite3/src) if (ANDROID) - include_directories ( - packages/myddas/sqlite3/src/Android/jni/sqlite - packages/myddas/sqlite3/src/Android/jni/sqlite/nativehelper + include_directories( + packages/myddas/sqlite3/src/Android/jni/sqlite + packages/myddas/sqlite3/src/Android/jni/sqlite/nativehelper ) endif (ANDROID) -set_property( SOURCE ${LIBYAP_SOURCES} APPEND PROPERTY COMPILE_DEFINITIONS YAP_KERNEL=1) +set_property(SOURCE ${LIBYAP_SOURCES} APPEND PROPERTY COMPILE_DEFINITIONS YAP_KERNEL=1) add_definitions(-DUSE_MYDDAS=1 -DMYDDAS_SQLITE3=1) if (MYSQL_FOUND) - add_definitions(= -DMYDDAS_MYSQL=1) -endif() + add_definitions(= -DMYDDAS_MYSQL=1) +endif () if (ODBC_FOUND) - add_definitions(= -DMYDDAS_ODBC=1) -endif() + add_definitions(= -DMYDDAS_ODBC=1) +endif () if (MYSQL_POSTGRES) - add_definitions(= -DMYDDAS_POSTGRES=1) -endif() + add_definitions(= -DMYDDAS_POSTGRES=1) +endif () -OPTION (WITH_SWIG " Enable SWIG interfaces to foreign languages" ON) +OPTION(WITH_SWIG " Enable SWIG interfaces to foreign languages" ON) IF (WITH_SWIG OR ANDROID) - find_host_package (SWIG) - # macro_log_feature (SWIG_FOUND "Swig" - # "Use SWIG Interface Generator " - # "http://www.swig.org" ON) + find_host_package(SWIG) + # macro_log_feature (SWIG_FOUND "Swig" + # "Use SWIG Interface Generator " + # "http://www.swig.org" ON) ENDIF (WITH_SWIG OR ANDROID) -option (WITH_PYTHON - "Allow Python->YAP and YAP->Python" ON) +option(WITH_PYTHON + "Allow Python->YAP and YAP->Python" ON) IF (WITH_PYTHON) - include(python NO_POLICY_SCOPE) + include(python NO_POLICY_SCOPE) ENDIF (WITH_PYTHON) - -List (APPEND YLIBS $ ) -List (APPEND YLIBS $ ) -List (APPEND YLIBS $ ) -List (APPEND YLIBS $ ) -List (APPEND YLIBS $ ) +List(APPEND YLIBS $) +List(APPEND YLIBS $) +List(APPEND YLIBS $) +List(APPEND YLIBS $) +List(APPEND YLIBS $) if (WIN32) - List (APPEND YLIBS $ ) - List (APPEND YLIBS $ ) - if (WITH_PYTHON ) - List (APPEND YLIBS $ ) - endif() -endif() + List(APPEND YLIBS $) + List(APPEND YLIBS $) + if (WITH_PYTHON) + List(APPEND YLIBS $) + endif () +endif () -include (Sources) +include(Sources) add_corelib( # Sets the name of the library. - libYap + libYap - # Sets the library as a shared library. - SHARED + # Sets the library as a shared library. + SHARED - ${ENGINE_SOURCES} - ${C_INTERFACE_SOURCES} - //${STATIC_SOURCES} - # cmake object libraries - ${YLIBS} - ) + ${ENGINE_SOURCES} + ${C_INTERFACE_SOURCES} + //${STATIC_SOURCES} + # cmake object libraries + ${YLIBS} + ) if (WIN32) - target_link_libraries(libYap ${WINDLLS}) - if (PYTHON_INCLUDE_DIRS AND PYTHON_LIBRARIES ) - target_link_libraries(libYap ${PYTHON_LIBRARIES}) - endif() + target_link_libraries(libYap ${WINDLLS}) + if (PYTHON_INCLUDE_DIRS AND PYTHON_LIBRARIES) + target_link_libraries(libYap ${PYTHON_LIBRARIES}) + endif () endif (WIN32) if (GMP_FOUND) - #config.h needs this (TODO: change in code latter) - include_directories( ${GMP_INCLUDE_DIRS} ) - target_link_libraries(libYap ${GMP_LIBRARIES} ) + #config.h needs this (TODO: change in code latter) + include_directories(${GMP_INCLUDE_DIRS}) + target_link_libraries(libYap ${GMP_LIBRARIES}) endif (GMP_FOUND) if (READLINE_FOUND) - include_directories( ${READLINE_INCLUDE_DIR} ) - target_link_libraries(libYap ${READLINE_LIBRARIES} ) - # required for configure - list (APPEND CMAKE_REQUIRED_LIBRARIES ${READLINE_LIBRARIES}) - list (APPEND CMAKE_REQUIRED_INCLUDES ${READLINE_INCLUDE_DIR}) -endif() + include_directories(${READLINE_INCLUDE_DIR}) + target_link_libraries(libYap ${READLINE_LIBRARIES}) + # required for configure + list(APPEND CMAKE_REQUIRED_LIBRARIES ${READLINE_LIBRARIES}) + list(APPEND CMAKE_REQUIRED_INCLUDES ${READLINE_INCLUDE_DIR}) +endif () set(YAP_STARTUP startup.yss) @@ -524,7 +536,7 @@ set(YAP_YAPLIB libYap${CMAKE_SHARED_LIBRARY_SUFFIX}) string(TIMESTAMP YAP_TIMESTAMP) -string( SUBSTRING ${CMAKE_SHARED_LIBRARY_SUFFIX} 1 -1 SO_EXT ) +string(SUBSTRING ${CMAKE_SHARED_LIBRARY_SUFFIX} 1 -1 SO_EXT) set_property(DIRECTORY PROPERTY CXX_STANDARD 11) @@ -547,24 +559,24 @@ set_property(DIRECTORY PROPERTY CXX_STANDARD 11) # the RPATH to be used when installing, but only if it's not a system directory#LIST(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${libdir}" isSystemDir) # IF("${isSystemDir}" STREQUAL "-1") if (ANACONDA) - SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) - SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) - SET(CMAKE_INSTALL_RPATH ${CMAKE_BINARY_DIR}) - -else() - SET(CMAKE_INSTALL_RPATH "${libdir}") -endif() + SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) + SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) + SET(CMAKE_INSTALL_RPATH ${CMAKE_BINARY_DIR}) + +else () + SET(CMAKE_INSTALL_RPATH "${libdir}") +endif () # ENDIF("${isSystemDir}" STREQUAL "-1") -include_directories (H - H/generated - include os OPTYap utf8proc JIT/HPP) -include_directories (BEFORE ${CMAKE_BINARY_DIR} ${CMAKE_TOP_BINARY_DIR}) +include_directories(H + H/generated + include os OPTYap utf8proc JIT/HPP) +include_directories(BEFORE ${CMAKE_BINARY_DIR} ${CMAKE_TOP_BINARY_DIR}) if (ANDROID) - include_directories (CXX ${CMAKE_SOURCE_DIR}/../generated/src/jni) -endif() -include( Threads ) + include_directories(CXX ${CMAKE_SOURCE_DIR}/../generated/src/jni) +endif () +include(Threads) # # include OS and I/o stuff # @@ -574,99 +586,98 @@ include( Threads ) list(APPEND YAP_SYSTEM_OPTIONS "thread support") set_target_properties(libYap - PROPERTIES OUTPUT_NAME Yap - ) + PROPERTIES OUTPUT_NAME Yap + ) MY_set_target_properties(libYap - PROPERTIES VERSION ${YAP_FULL_VERSION} - SOVERSION ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION} - ) + PROPERTIES VERSION ${YAP_FULL_VERSION} + SOVERSION ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION} + ) #utf-8 is not an option # we use the nice UTF-8 package #available at the Julia project -ADD_SUBDIRECTORY ( OPTYap ) -ADD_SUBDIRECTORY ( os ) -ADD_SUBDIRECTORY ( packages/myddas ) -ADD_SUBDIRECTORY ( utf8proc ) -ADD_SUBDIRECTORY ( library/dialect/swi/fli ) -ADD_SUBDIRECTORY ( CXX ) +ADD_SUBDIRECTORY(OPTYap) +ADD_SUBDIRECTORY(os) +ADD_SUBDIRECTORY(packages/myddas) +ADD_SUBDIRECTORY(utf8proc) +ADD_SUBDIRECTORY(library/dialect/swi/fli) +ADD_SUBDIRECTORY(CXX) -add_subDIRECTORY ( H ) +add_subDIRECTORY(H) #bootstrap and saved state -add_subDIRECTORY ( pl ) +add_subDIRECTORY(pl) -ADD_SUBDIRECTORY( library) +ADD_SUBDIRECTORY(library) -ADD_SUBDIRECTORY( swi/library "swiLibrary" ) +ADD_SUBDIRECTORY(swi/library "swiLibrary") if (ANDROID) - target_link_libraries(libYap android log) + target_link_libraries(libYap android log) endif () set_target_properties(libYap - PROPERTIES OUTPUT_NAME Yap - ) + PROPERTIES OUTPUT_NAME Yap + ) # file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/packages/python/swig/yap4py) if (PYTHONLIBS_FOUND AND SWIG_FOUND) - add_subdirectory(packages/python/swig) + add_subdirectory(packages/python/swig) - include(FindPythonModule) + include(FindPythonModule) - find_python_module( jupyter ) + find_python_module(jupyter) - if (PY_JUPYTER) - add_subdirectory(packages/python/yap_kernel) - ENDIF() -endif() + if (PY_JUPYTER) + add_subdirectory(packages/python/yap_kernel) + ENDIF () +endif () IF (SWIG_FOUND OR ANDROID) - add_subDIRECTORY (packages/swig NO_POLICY_SCOPE) -ENDIF() + add_subDIRECTORY(packages/swig NO_POLICY_SCOPE) +ENDIF () message(STATUS "Building YAP packages version ${YAP_VERSION}") if (NOT WIN32) - set (BUILD_SHARED_LIBS ON) -endif() + set(BUILD_SHARED_LIBS ON) +endif () - -option (WITH_JIT - "just in Time Clause Compilation" OFF) +option(WITH_JIT + "just in Time Clause Compilation" OFF) if (WITH_JIT) - add_subDIRECTORY(JIT) + add_subDIRECTORY(JIT) endif (WITH_JIT) -add_subDIRECTORY (packages/raptor) +add_subDIRECTORY(packages/raptor) -add_subDIRECTORY (packages/xml) +add_subDIRECTORY(packages/xml) -OPTION (WITH_CLPBN " Enable the CLPBN and PFL probabilistic languages" ON) +OPTION(WITH_CLPBN " Enable the CLPBN and PFL probabilistic languages" ON) -OPTION (WITH_CPLINT " Enable the cplint probabilistic language" ON) +OPTION(WITH_CPLINT " Enable the cplint probabilistic language" ON) -OPTION (WITH_HORUS " Enable the CLPBN and PFL probabilistic languages" ON) +OPTION(WITH_HORUS " Enable the CLPBN and PFL probabilistic languages" ON) -OPTION (WITH_DOCS " Enable documentation, requires doxygen-yap" ON) +OPTION(WITH_DOCS " Enable documentation, requires doxygen-yap" ON) IF (WITH_CLPBN) - add_subDIRECTORY (packages/CLPBN) -ENDIF(WITH_CLPBN) + add_subDIRECTORY(packages/CLPBN) +ENDIF (WITH_CLPBN) IF (WITH_CPLINT) - add_subDIRECTORY (packages/cplint) -ENDIF(WITH_CPLINT) + add_subDIRECTORY(packages/cplint) +ENDIF (WITH_CPLINT) # please install doxygen for prolog first # git clone http://www.github.com/vscosta/doxygen-yap @@ -674,33 +685,33 @@ ENDIF(WITH_CPLINT) # mkdir -p build # cd build # make; sudo make install -option (WITH_DOCS - "generate YAP docs" OFF) +option(WITH_DOCS + "generate YAP docs" OFF) IF (WITH_DOCS) - add_subDIRECTORY (docs) + add_subDIRECTORY(docs) ENDIF (WITH_DOCS) # add_subDIRECTORY (packages/cuda) -option (WITH_GECODE - "interface gecode constraint solver" ON) +option(WITH_GECODE + "interface gecode constraint solver" ON) if (WITH_GECODE) - add_subDIRECTORY (packages/gecode) -endif() + add_subDIRECTORY(packages/gecode) +endif () -add_subDIRECTORY (packages/real) +add_subDIRECTORY(packages/real) -add_subDIRECTORY (packages/jpl) +add_subDIRECTORY(packages/jpl) -add_subDIRECTORY (packages/bdd) +add_subDIRECTORY(packages/bdd) -add_subDIRECTORY (packages/ProbLog) +add_subDIRECTORY(packages/ProbLog) -add_subDIRECTORY (packages/swi-minisat2) +add_subDIRECTORY(packages/swi-minisat2) -add_subDIRECTORY (packages/clpqr) +add_subDIRECTORY(packages/clpqr) #todo: use cmake target builds @@ -719,27 +730,27 @@ add_subDIRECTORY (packages/clpqr) # option (USE_CYGWIN # "use cygwin library in WIN32" OFF) -option (WITH_PRISM - "use PRISM system in YAP" ON) +option(WITH_PRISM + "use PRISM system in YAP" ON) #TODO: -option (WITH_YAP_DLL - "compile YAP as a DLL" ON) +option(WITH_YAP_DLL + "compile YAP as a DLL" ON) #TODO: -option (WITH_YAP_STATIC - "compile YAP statically" OFF) +option(WITH_YAP_STATIC + "compile YAP statically" OFF) #TODO: option(WITH_YAP_CONDOR - "allow YAP to be used from condor" OFF) + "allow YAP to be used from condor" OFF) if (WITH_YAP_CONDOR) - # use default allocator - set ( YAP_STATIC ON ) - set ( YAP_DLL OFF ) -endif() + # use default allocator + set(YAP_STATIC ON) + set(YAP_DLL OFF) +endif () #TODO: detect arch before allow this option # OPTION(WIN64 @@ -761,56 +772,55 @@ endif() # needed by this packages +if (WIN32) -if(WIN32) + if (MSVC) + set(MSVC_RUNTIME "dynamic") + ENDIF (MSVC) - if(MSVC) - set(MSVC_RUNTIME "dynamic") - ENDIF(MSVC) + target_link_libraries(libYap wsock32 ws2_32 Shlwapi) - target_link_libraries(libYap wsock32 ws2_32 Shlwapi) +endif (WIN32) -endif(WIN32) +add_executable(yap-bin ${CONSOLE_SOURCES}) -add_executable (yap-bin ${CONSOLE_SOURCES}) - -set_target_properties (yap-bin PROPERTIES OUTPUT_NAME yap) +set_target_properties(yap-bin PROPERTIES OUTPUT_NAME yap) -target_link_libraries(yap-bin libYap ) +target_link_libraries(yap-bin libYap) -install(TARGETS libYap yap-bin - RUNTIME DESTINATION ${bindir} - LIBRARY DESTINATION ${libdir} - ARCHIVE DESTINATION ${libdir} - ) +install(TARGETS libYap yap-bin + RUNTIME DESTINATION ${bindir} + LIBRARY DESTINATION ${libdir} + ARCHIVE DESTINATION ${libdir} + ) -CMAKE_DEPENDENT_OPTION (WITH_SYSTEM_MMAP "Use MMAP for shared memory allocation" ON - "NOT WITH_YAPOR_THOR" OFF) +CMAKE_DEPENDENT_OPTION(WITH_SYSTEM_MMAP "Use MMAP for shared memory allocation" ON + "NOT WITH_YAPOR_THOR" OFF) -CMAKE_DEPENDENT_OPTION (WITH_SYSTEM_SHM "Use SHM for shared memory allocation" ON - "NOT WITH_YAPOR_THOR; NOT WITH_SYSTEM_MMAP" OFF ) +CMAKE_DEPENDENT_OPTION(WITH_SYSTEM_SHM "Use SHM for shared memory allocation" ON + "NOT WITH_YAPOR_THOR; NOT WITH_SYSTEM_MMAP" OFF) add_subDIRECTORY(library/lammpi) if (MPI_C_FOUND) - CMAKE_DEPENDENT_OPTION( WITH_MPI ON "Interface to OpenMPI/MPICH" - "MPI_C_FOUND" OFF) - macro_optional_add_subDIRECTORY(library/mpi) - 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) + CMAKE_DEPENDENT_OPTION(WITH_MPI ON "Interface to OpenMPI/MPICH" + "MPI_C_FOUND" OFF) + macro_optional_add_subDIRECTORY(library/mpi) + 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() + if (MPI_C_LINK_FLAGS) + set_target_properties(yap-bin PROPERTIES + LINK_FLAGS "${MPI_C_LINK_FLAGS}") + endif () endif (MPI_C_FOUND) ## add_subDIRECTORY(utils) @@ -818,16 +828,14 @@ endif (MPI_C_FOUND) # - macro_display_feature_log() -if(POLICY CMP0058) - cmake_policy(SET CMP0058 NEW) -endif(POLICY CMP0058) +if (POLICY CMP0058) + cmake_policy(SET CMP0058 NEW) +endif (POLICY CMP0058) include(Config NO_POLICY_SCOPE) - feature_summary(WHAT ENABLED_FEATURES DISABLED_FEATURES - INCLUDE_QUIET_PACKAGES - ) + INCLUDE_QUIET_PACKAGES + ) diff --git a/cmake/FindGMP.cmake b/cmake/FindGMP.cmake index b54373a94..779234e22 100644 --- a/cmake/FindGMP.cmake +++ b/cmake/FindGMP.cmake @@ -8,14 +8,14 @@ # GMP_LIBRARY_DLL - library DLL to install. Only available on WIN32. # GMP_LIBRARIES_DIR - the directory the library we link with is found in. + if (ANDROID) set( GMP_ROOT ${CMAKE_SOURCE_DIR}/../gmp/${ANDROID_ABI} ) - set (GMP_FOUND ON) set (GMP_INCLUDE_DIRS ${GMP_ROOT}) set (GMP_LIBRARIES ${GMP_ROOT}/libgmp.so) +set (GMP_FOUND ON) set (GMP_LIBRARIES_DIR ${GMP_ROOT}) -else(ANDROID) -if(MSVC) +elif(MSVC) find_library(GMP_LIBRARIES NAMES mpir mpird PATHS $ENV{GMP_ROOT} @@ -50,12 +50,13 @@ find_file(GMP_LIBRARY_DLL NAMES mpir.dll mpird.dll ${GMP_LIBRARIES_DIR} ) -else(MSVC) +else() #use GMP, notice that there are two cases, everything is the same directory, or everything is in #its proper places + find_library(GMP_LIBRARIES NAMES gmp libgmp HINTS @@ -87,17 +88,18 @@ else(MSVC) get_filename_component(GMP_LIBRARIES_DIR "${GMP_LIBRARIES}" PATH CACHE) -endif(MSVC) -endif(ANDROID) - # handle the QUIET and REQUIRED arguments and set GMP_FOUND to TRUE if # all listed variables are true include(FindPackageHandleStandardArgs) if(MSVC) - find_package_handle_standard_args(GMP DEFAULT_MSG GMP_LIBRARIES GMP_LIBRARIES_DIR GMP_LIBRARY_DLL GMP_INCLUDE_DIRS) -mark_as_advanced(GMP_LIBRARY_DLL) + find_package_handle_standard_args(GMP DEFAULT_MSG GMP_LIBRARIES GMP_LIBRARIES_DIR GMP_LIBRARY_DLL GMP_INCLUDE_DIRS) + mark_as_advanced(GMP_LIBRARY_DLL) else() - find_package_handle_standard_args(GMP DEFAULT_MSG GMP_LIBRARIES GMP_LIBRARIES_DIR GMP_INCLUDE_DIRS) + find_package_handle_standard_args(GMP DEFAULT_MSG GMP_LIBRARIES GMP_LIBRARIES_DIR GMP_INCLUDE_DIRS) endif() + mark_as_advanced(GMP_LIBRARIES GMP_LIBRARIES_DIR GMP_INCLUDE_DIRS) + +endif() + diff --git a/cmake/FindReadline.cmake b/cmake/FindReadline.cmake index 8de05df2a..3e74d67d7 100644 --- a/cmake/FindReadline.cmake +++ b/cmake/FindReadline.cmake @@ -7,16 +7,12 @@ # READLINE_readline_LIBRARY, where to find the READLINE library. # READLINE_ncurses_LIBRARY, where to find the ncurses library [might not be defined] - # Apple readline does not support readline hooks # So we look for another one by default # # # try to extract R from readline to avoid collision FIND_PATH(READLINE_INCLUDE_DIR NAMES readline/readline.h) - -# Apple readline does not support readline hooks -# So we look for another one by default FIND_LIBRARY(READLINE_readline_LIBRARY NAMES readline) # Sometimes readline really needs ncurses @@ -29,25 +25,15 @@ FIND_LIBRARY(READLINE_tinfo_LIBRARY NAMES tinfo) FIND_LIBRARY(READLINE_tinfow_LIBRARY NAMES tinfow) -MARK_AS_ADVANCED( - READLINE_INCLUDE_DIR - READLINE_readline_LIBRARY - READLINE_ncurses_LIBRARY - READLINE_tinfo_LIBRARY - READLINE_ncursesw_LIBRARY - READLINE_tinfow_LIBRARY - ) - message(STATUS "readline headers found at ${READLINE_INCLUDE_DIR}") - message(STATUS "readline library found at ${READLINE_readline_LIBRARY} ${READLINE_ncurses_LIBRARY} ${READLINE_tinfo_LIBRARY} ${READLINE_ncursesw_LIBRARY} ${READLINE_tinfow_LIBRARY} ") +# Apple readline does not support readline hooks +# So we look for another one by default +if ( READLINE_readline_LIBRARY) + set (HAVE_LIBREADLINE YES CACHE BOOL "ibReadline ACCESS") +endif() -set(HAVE_LIBREADLINE FALSE CACHE BOOL "Readline works.") - SET( READLINE_FOUND "NO" ) -IF(READLINE_INCLUDE_DIR) - IF(READLINE_readline_LIBRARY) - SET( READLINE_FOUND "YES" ) - MESSAGE(STATUS "Found readline library") +IF(READLINE_readline_LIBRARY) set(HAVE_LIBREADLINE CACHE YES BOOL "Readline works." ) SET( READLINE_LIBRARIES ${READLINE_readline_LIBRARY} @@ -73,20 +59,15 @@ IF(READLINE_INCLUDE_DIR) list(APPEND READLINE_LIBRARIES ${READLINE_tinfow_LIBRARY}) endif () + IF(READLINE_INCLUDE_DIR) + SET( READLINE_FOUND "YES" CACHE BOOL "Readline ACCESS.") + ENDIF(READLINE_INCLUDE_DIR) ENDIF(READLINE_readline_LIBRARY) -ENDIF(READLINE_INCLUDE_DIR) -IF(NOT READLINE_FOUND) - IF(READLINE_FIND_REQUIRED) - MESSAGE(SYSTEM_ERROR_FATAL "Could not find readline -- please give some paths to CMake") - ENDIF(READLINE_FIND_REQUIRED) -ENDIF(NOT READLINE_FOUND) +message(STATUS "readline found: ${READLINE_FOUND}") -find_package_handle_standard_args(Readline READLINE_INCLUDE_DIR READLINE_LIBRARIES READLINE_readline_LIBRARY READLINE_ncurses_LIBRARY READLINE_tinfo_LIBRARY) - - -MARK_AS_ADVANCED( - READLINE_FOUND - HAVE_LIBREADLINE - ) +if (READLINE_FOUND) +message(STATUS "readline headers found at ${READLINE_INCLUDE_DIR}") +message(STATUS "readline library found at ${READLINE_LIBRARIES}") +endif() diff --git a/cmake/python.cmake b/cmake/python.cmake index f0a0727a8..b4df26e2f 100644 --- a/cmake/python.cmake +++ b/cmake/python.cmake @@ -11,21 +11,20 @@ set (Python_ADDITIONAL_VERSIONS 3.7 3.6 ) #3.5 3.6 3.4 ) # if (WIN320) set (PYTHONLIBS_FOUND YES CACHE BOOL "MINGW/MSYS2" FORCE ) - set (PYTHON_LIBRARY C:/msys64/mingw64/lib/libpython3.6m.dll.a CACHE FILEPATH "MINGW/MSYS2" FORCE ) + set (PYTHON_LIBRARY C:/msys64/mingw64/lib/libpython3.6m.dll.a CACHE FILEPATH "MINGW/MSYS2" FORCE ) set (PYTHON_LIBRARIES C:/msys64/mingw64/lib/libpython3.5m.dll.a CACHE FILEPATH "MINGW/MSYS2" FORCE ) set (PYTHON_INCLUDE_PATH C:/msys64/mingw64/include/python3.5m CACHE PATH "MINGW/MSYS2" FORCE ) set (PYTHON_INCLUDE_DIRS C:/msys64/mingw64/include/python3.5m CACHE PATH "MINGW/MSYS2" FORCE ) set (PYTHON_EXECUTABLE C:/msys64/mingw64/bin/python3.exe CACHE FILEPATH "MINGW/MSYS2" FORCE ) set (PYTHONLIBS_VERSION_STRING 3.5 CACHE STRING "MINGW/MSYS2" FORCE ) - else() - +else() find_package(PythonInterp) find_package(PythonLibs) -endif() +endif() include_directories( BEFORE ${PYTHON_INCLUDE_DIRS} ) diff --git a/info/build.sh b/info/build.sh index 73c243511..1de4f722f 100644 --- a/info/build.sh +++ b/info/build.sh @@ -3,28 +3,24 @@ export MACOSX_DEPLOYMENT_TARGET=10.9 # export CC=$SYS_PREFIX/bin/clang # export CXX=$SYS_PREFIX/bin/clang++ -export R_COMMAND=$R export CMAKE_BUILD_TYPE=Debug export CMAKE=$PREFIX/bin/cmake -export CMAKE_INCLUDE_PATH=$PREFIX/include -export CMAKE_LIBRARY_PATH=$PREFIX/lib -export CMAKE_INSTALL_PREFIX=$PREFIX +export MAKE=$PREFIX/bin/make export GENERATOR="-GNinja" -export PYTHON_EXECUTABLE="$PYTHON" -export PYTHON_LIBRARY="$CMAKE_LIBRARY_PATH/libpython${PY_VER}m$SHLIB_EXT" -export PYTHON_INCLUDE_DIR="$CMAKE_INCLUDE_PATH/python$PY_VER"m +#export CMAKE_INCLUDE_PATH=$PREFIX/include +#export CMAKE_LIBRARY_PATH=$PREFIX/lib +#export CMAKE_INSTALL_PREFIX=$PREFIX +#export PYTHON_EXECUTABLE="$PYTHON" +#export PYTHON_LIBRARY="$CMAKE_LIBRARY_PATH/libpython${PY_VER}m$SHLIB_EXT" +#export PYTHON_INCLUDE_DIR="$CMAKE_INCLUDE_PATH/python$PY_VER"m +#export R_COMMAND=$R +export PATH=$PREFIX/bin:$SYS_PREFIX/bin:$PATH mkdir $PREFIX/conda cd $PREFIX/conda # The datarootdir option places the docs into a temp folder that won't - $CMAKE --build=. --target=install\ - -DCMAKE_INCLUDE_PATH="$CMAKE_INCLUDE_PATH" \ - -DCMAKE_LIBRARY_PATH="$CMAKE_LIBRARY_PATH" \ - -DCMAKE_INSTALL_PREFIX="$CMAKE_INSTALL_PREFIX" \ + $CMAKE --build=. --target=install --DPATH=$PATH\ -DCMAKE_BUILD_TYPE="$CMAKE_BUILD_TYPE" \ - -DPYTHON_EXECUTABLE:FILEPATH="$PYTHON_EXECUTABLE" \ - -DPYTHON_LIBRARY:FILEPATH="$PYTHON_LIBRARY" \ - -DPYTHON_INCLUDE_DIR:PATH="$PYTHON_INCLUDE_DIR" \ $RECIPE_DIR/.. make -j install CMAKE_INSTALL_PREFIX="$CMAKE_INSTALL_PREFIX" diff --git a/info/meta.yaml b/info/meta.yaml index 83b87fc4f..457e100f4 100644 --- a/info/meta.yaml +++ b/info/meta.yaml @@ -7,9 +7,12 @@ requirements: - cmake - swig - gmp + - readline - python - r - notebook + - pkgconfig + - make run: - python - pythonlab diff --git a/nbproject/configurations.xml b/nbproject/configurations.xml deleted file mode 100644 index 51abde2a8..000000000 --- a/nbproject/configurations.xml +++ /dev/null @@ -1,1948 +0,0 @@ - - - - - - absmi.c - adtdefs.c - agc.c - alloc.c - amasm.c - analyst.c - args.c - arith0.c - arith1.c - arith2.c - arrays.c - atomic.c - attvar.c - bb.c - bignum.c - blobs.c - c_interface.c - cdmgr.c - clause_list.c - cmppreds.c - compiler.c - computils.c - corout.c - cut_c.c - dbase.c - depth_bound.c - dlmalloc.c - errors.c - eval.c - exec.c - exo.c - exo_udi.c - flags.c - globals.c - gmp_support.c - gprof.c - grow.c - heapgc.c - index.c - init.c - inlines.c - load_aix.c - load_aout.c - load_dl.c - load_dld.c - load_dll.c - load_dyld.c - load_foreign.c - load_none.c - load_shl.c - mavar.c - modules.c - other.c - parser.c - qlyr.c - qlyw.c - range.c - save.c - scanner.c - signals.c - sort.c - stack.c - stdpreds.c - text.c - threads.c - tracer.c - udi.c - unify.c - userpreds.c - utilpreds.c - write.c - yap-args.c - - - yap.c - - - yapi.cpp - - - - - - blobs.c - swi.c - - - - - hash.c - prologterms2c.c - yap_mpi.c - - - matrix.c - - - yap_random.c - - - regcomp.c - regerror.c - regexec.c - regexp.c - regfree.c - - - range_list.c - yap_rl.c - - - - md5.c - - sys.c - - - base_itries.c - base_tries.c - core_tries.c - itries.c - tries.c - - - - opt.init.c - opt.preds.c - or.copy_engine.c - or.cow_engine.c - or.cut.c - or.memory.c - or.sba_engine.c - or.scheduler.c - or.thread_engine.c - tab.completion.c - tab.tries.c - - - alias.c - assets.c - charsio.c - chartypes.c - console.c - files.c - fmem.c - fmemopen.c - format.c - iopreds.c - mem.c - open_memstream.c - pipes.c - random.c - readline.c - readterm.c - readutil.c - sig.c - sockets.c - streams.c - sysbits.c - time.c - writeterm.c - ypsocks.c - ypstdio.c - - - - - BayesBall.cpp - BayesBallGraph.cpp - BeliefProp.cpp - ConstraintTree.cpp - CountingBp.cpp - ElimGraph.cpp - Factor.cpp - FactorGraph.cpp - GenericFactor.cpp - GroundSolver.cpp - Histogram.cpp - HorusCli.cpp - HorusYap.cpp - Indexer.cpp - LiftedBp.cpp - LiftedKc.cpp - LiftedOperations.cpp - LiftedUtils.cpp - LiftedVe.cpp - LiftedWCNF.cpp - Parfactor.cpp - ParfactorList.cpp - ProbFormula.cpp - Util.cpp - Var.cpp - VarElim.cpp - WeightedBp.cpp - - - - gecode4_yap.cc - - - - - jpl.c - - - - - - myddas_mysql.c - myddas_util.c - myddas_wkb2prolog.c - - - myddas_odbc.c - - - - sqlite3.c - - myddas_sqlite3.c - - myddas_initialization.c - myddas_shared.c - myddas_statistics.c - myddas_top_level.c - myddas_util.c - - - pl2pl.c - pl2py.c - py2pl.c - pybips.c - pyload.c - pypreds.c - python.c - - - raptor_yap.c - xml2_yap.c - - - real.c - - - - Solver.C - pl-minisat.C - - - - - utf8proc.c - - GitSHA1.c - - - CMakeLists.txt - Makefile - nbproject/private/launcher.properties - - - ^(nbproject)$ - - . - - Makefile - - - - CLang|CLang - false - false - - - - - - - - - - - - - . - ${MAKE} -f Makefile - ${MAKE} -f Makefile clean - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - . - ${CMAKE} -G "Ninja" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=${IDE_CC} -DCMAKE_CXX_COMPILER=${IDE_CXX} -DCMAKE_C_FLAGS_DEBUG="-g3 -gdwarf-2" -DCMAKE_CXX_FLAGS_DEBUG="-g3 -gdwarf-2" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - USE_SYSTEM_MALLOC=1 - UTF8PROC=1 - YAP_KERNEL=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - libYap_EXPORTS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - USE_SYSTEM_MALLOC=1 - UTF8PROC=1 - YAP_KERNEL=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - libYap_EXPORTS - - - - - - - CXX - - - YAP___EXPORTS - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - OPTYap/OPTYap - - - YAP_KERNEL=1 - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - USE_SYSTEM_MALLOC=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - - - - - - - library/H - library/dialect/swi/include - library/dialect/swi/os - - - YAP_KERNEL=1 - - - - - - - /usr/lib/x86_64-linux-gnu/openmpi/include/openmpi - /usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent - /usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent/include - /usr/lib/x86_64-linux-gnu/openmpi/include - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - HAVE_MPI_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - yap_mpi_EXPORTS - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - matrix_EXPORTS - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - yap_random_EXPORTS - - - - - - - library/regex/BEFORE - /include - library/regex - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - regexp_EXPORTS - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - yap_rl_EXPORTS - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - sys_EXPORTS - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - - - YAP_KERNEL=1 - - - - - - - packages/CLPBN/horus - - - - - - - packages/gecode - packages/gecode/4.4.0 - - - gecode_yap_EXPORTS - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - /usr/lib/jvm/java-8-openjdk-amd64/include - /usr/lib/jvm/java-8-openjdk-amd64/include/linux - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - jplYap_EXPORTS - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - packages/myddas/sqlite3 - - - - - - - /usr/include/mysql - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - Yapmysql_EXPORTS - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - Yapodbc_EXPORTS - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - YAP_KERNEL=1 - Yapsqlite3_EXPORTS - - - - - - - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - . - include - os - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE=1 - _YAP_NOT_INSTALLED_=1 - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - /usr/include/libxml2 - packages/raptor - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - packages/real - /usr/share/R/include - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - real_EXPORTS - - - - - - - packages/swi-minisat2/C - - - minisat2_EXPORTS - - - - - - - . - /usr/include/python2.7 - utf8proc - packages/myddas - packages/myddas/sqlite3/src - H - H/generated - include - os - OPTYap - JIT/HPP - /usr/include/x86_64-linux-gnu - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - UTF8PROC_EXPORTS - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - itries_EXPORTS - - - - - - - tries_EXPORTS - - - - - - - itries_EXPORTS - - - - - - - itries_EXPORTS - - - - - - - tries_EXPORTS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - horus_EXPORTS - - - - - - - - - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - YAP_KERNEL=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - YAP_KERNEL=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - YAP_KERNEL=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - YAP_KERNEL=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - COROUTINING=1 - DEBUG=1 - DEPTH_LIMIT=1 - HAVE_CONFIG_H=1 - LOW_LEVEL_TRACER=1 - MYDDAS_SQLITE3=1 - RATIONAL_TREES=1 - TABLING=1 - THREADED_CODE=1 - USE_MYDDAS=1 - UTF8PROC=1 - YAP_KERNEL=1 - _GNU_SOURCE - _YAP_NOT_INSTALLED_=1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Py4YAP_EXPORTS - YAP_KERNEL=1 - - - - - - - Py4YAP_EXPORTS - YAP_KERNEL=1 - - - - - - - Py4YAP_EXPORTS - YAP_KERNEL=1 - - - - - - - Py4YAP_EXPORTS - YAP_KERNEL=1 - - - - - - - YAPPython_EXPORTS - _GNU_SOURCE - - - - - - - Py4YAP_EXPORTS - YAP_KERNEL=1 - - - - - - - Py4YAP_EXPORTS - YAP_KERNEL=1 - - - - - - - raptor_EXPORTS - - - - - - - libxml2_EXPORTS - - - - - - - - - - - - - - - - - - - - - - diff --git a/nbproject/private/CodeAssistancePathMapper.properties b/nbproject/private/CodeAssistancePathMapper.properties deleted file mode 100644 index 7f5ded8fe..000000000 --- a/nbproject/private/CodeAssistancePathMapper.properties +++ /dev/null @@ -1 +0,0 @@ -# Automatic path mapper. CRC = 1 diff --git a/nbproject/private/Default.properties b/nbproject/private/Default.properties deleted file mode 100644 index 86839f836..000000000 --- a/nbproject/private/Default.properties +++ /dev/null @@ -1,185 +0,0 @@ -/home/vsc/github/yap-6.3/console/yap.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIE -Wall -fexceptions -o CMakeFiles/yap-bin.dir/console/yap.c.o -c /home/vsc/github/yap-6.3/console/yap.c -/home/vsc/github/yap-6.3/library/random/yap_random.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dyap_random_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/random/CMakeFiles/yap_random.dir/yap_random.c.o -c /home/vsc/github/yap-6.3/library/random/yap_random.c -/home/vsc/github/yap-6.3/library/tries/itries.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Ditries_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/tries/CMakeFiles/itries.dir/itries.c.o -c /home/vsc/github/yap-6.3/library/tries/itries.c -/home/vsc/github/yap-6.3/library/tries/base_tries.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dtries_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/tries/CMakeFiles/tries.dir/base_tries.c.o -c /home/vsc/github/yap-6.3/library/tries/base_tries.c -/home/vsc/github/yap-6.3/library/tries/core_tries.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Ditries_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/tries/CMakeFiles/itries.dir/core_tries.c.o -c /home/vsc/github/yap-6.3/library/tries/core_tries.c -/home/vsc/github/yap-6.3/library/tries/tries.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dtries_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/tries/CMakeFiles/tries.dir/tries.c.o -c /home/vsc/github/yap-6.3/library/tries/tries.c -/home/vsc/github/yap-6.3/library/tries/base_itries.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Ditries_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/tries/CMakeFiles/itries.dir/base_itries.c.o -c /home/vsc/github/yap-6.3/library/tries/base_itries.c -/home/vsc/github/yap-6.3/library/regex/regexp.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ilibrary/regex/BEFORE -I/include -Ilibrary/regex -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/regex/CMakeFiles/regexp.dir/regexp.c.o -c /home/vsc/github/yap-6.3/library/regex/regexp.c -/home/vsc/github/yap-6.3/library/regex/regexec.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ilibrary/regex/BEFORE -I/include -Ilibrary/regex -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/regex/CMakeFiles/regexp.dir/regexec.c.o -c /home/vsc/github/yap-6.3/library/regex/regexec.c -/home/vsc/github/yap-6.3/library/regex/regcomp.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ilibrary/regex/BEFORE -I/include -Ilibrary/regex -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/regex/CMakeFiles/regexp.dir/regcomp.c.o -c /home/vsc/github/yap-6.3/library/regex/regcomp.c -/home/vsc/github/yap-6.3/library/regex/regerror.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ilibrary/regex/BEFORE -I/include -Ilibrary/regex -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/regex/CMakeFiles/regexp.dir/regerror.c.o -c /home/vsc/github/yap-6.3/library/regex/regerror.c -/home/vsc/github/yap-6.3/library/regex/regfree.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dregexp_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ilibrary/regex/BEFORE -I/include -Ilibrary/regex -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/regex/CMakeFiles/regexp.dir/regfree.c.o -c /home/vsc/github/yap-6.3/library/regex/regfree.c -/home/vsc/github/yap-6.3/library/system/crypto/md5.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dsys_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/system/CMakeFiles/sys.dir/crypto/md5.c.o -c /home/vsc/github/yap-6.3/library/system/crypto/md5.c -/home/vsc/github/yap-6.3/library/system/sys.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dsys_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/system/CMakeFiles/sys.dir/sys.c.o -c /home/vsc/github/yap-6.3/library/system/sys.c -/home/vsc/github/yap-6.3/library/dialect/swi/fli/swi.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ilibrary/dialect/swi/fli/../../../H -Ilibrary/dialect/swi/fli/../.../../include -Ilibrary/dialect/swi/fli/../os -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/dialect/swi/fli/CMakeFiles/libswi.dir/swi.c.o -c /home/vsc/github/yap-6.3/library/dialect/swi/fli/swi.c -/home/vsc/github/yap-6.3/library/dialect/swi/fli/blobs.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ilibrary/dialect/swi/fli/../../../H -Ilibrary/dialect/swi/fli/../.../../include -Ilibrary/dialect/swi/fli/../os -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/dialect/swi/fli/CMakeFiles/libswi.dir/blobs.c.o -c /home/vsc/github/yap-6.3/library/dialect/swi/fli/blobs.c -/home/vsc/github/yap-6.3/library/rltree/range_list.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dyap_rl_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/rltree/CMakeFiles/yap_rl.dir/range_list.c.o -c /home/vsc/github/yap-6.3/library/rltree/range_list.c -/home/vsc/github/yap-6.3/library/rltree/yap_rl.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dyap_rl_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/rltree/CMakeFiles/yap_rl.dir/yap_rl.c.o -c /home/vsc/github/yap-6.3/library/rltree/yap_rl.c -/home/vsc/github/yap-6.3/library/lammpi/yap_mpi.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DHAVE_MPI_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dyap_mpi_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent/include -I/usr/lib/x86_64-linux-gnu/openmpi/include -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/lammpi/CMakeFiles/yap_mpi.dir/yap_mpi.c.o -c /home/vsc/github/yap-6.3/library/lammpi/yap_mpi.c -/home/vsc/github/yap-6.3/library/lammpi/hash.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DHAVE_MPI_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dyap_mpi_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent/include -I/usr/lib/x86_64-linux-gnu/openmpi/include -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/lammpi/CMakeFiles/yap_mpi.dir/hash.c.o -c /home/vsc/github/yap-6.3/library/lammpi/hash.c -/home/vsc/github/yap-6.3/library/lammpi/prologterms2c.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DHAVE_MPI_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dyap_mpi_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent -I/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi/opal/mca/event/libevent2022/libevent/include -I/usr/lib/x86_64-linux-gnu/openmpi/include -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/lammpi/CMakeFiles/yap_mpi.dir/prologterms2c.c.o -c /home/vsc/github/yap-6.3/library/lammpi/prologterms2c.c -/home/vsc/github/yap-6.3/library/matrix/matrix.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dmatrix_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o library/matrix/CMakeFiles/matrix.dir/matrix.c.o -c /home/vsc/github/yap-6.3/library/matrix/matrix.c -/home/vsc/github/yap-6.3/utf8proc/utf8proc.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -DUTF8PROC_EXPORTS -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o utf8proc/CMakeFiles/utf8proc.dir/utf8proc.c.o -c /home/vsc/github/yap-6.3/utf8proc/utf8proc.c -/home/vsc/github/yap-6.3/C/arrays.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/arrays.c.o -c /home/vsc/github/yap-6.3/C/arrays.c -/home/vsc/github/yap-6.3/C/yap-args.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/yap-args.c.o -c /home/vsc/github/yap-6.3/C/yap-args.c -/home/vsc/github/yap-6.3/C/range.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/range.c.o -c /home/vsc/github/yap-6.3/C/range.c -/home/vsc/github/yap-6.3/C/clause_list.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/clause_list.c.o -c /home/vsc/github/yap-6.3/C/clause_list.c -/home/vsc/github/yap-6.3/C/stack.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/stack.c.o -c /home/vsc/github/yap-6.3/C/stack.c -/home/vsc/github/yap-6.3/C/compiler.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/compiler.c.o -c /home/vsc/github/yap-6.3/C/compiler.c -/home/vsc/github/yap-6.3/C/heapgc.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/heapgc.c.o -c /home/vsc/github/yap-6.3/C/heapgc.c -/home/vsc/github/yap-6.3/C/computils.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/computils.c.o -c /home/vsc/github/yap-6.3/C/computils.c -/home/vsc/github/yap-6.3/C/scanner.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/scanner.c.o -c /home/vsc/github/yap-6.3/C/scanner.c -/home/vsc/github/yap-6.3/C/arith2.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/arith2.c.o -c /home/vsc/github/yap-6.3/C/arith2.c -/home/vsc/github/yap-6.3/C/load_aix.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_aix.c.o -c /home/vsc/github/yap-6.3/C/load_aix.c -/home/vsc/github/yap-6.3/C/cut_c.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/cut_c.c.o -c /home/vsc/github/yap-6.3/C/cut_c.c -/home/vsc/github/yap-6.3/C/index.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/index.c.o -c /home/vsc/github/yap-6.3/C/index.c -/home/vsc/github/yap-6.3/C/init.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/init.c.o -c /home/vsc/github/yap-6.3/C/init.c -/home/vsc/github/yap-6.3/C/exec.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/exec.c.o -c /home/vsc/github/yap-6.3/C/exec.c -/home/vsc/github/yap-6.3/C/utilpreds.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/utilpreds.c.o -c /home/vsc/github/yap-6.3/C/utilpreds.c -/home/vsc/github/yap-6.3/C/cdmgr.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/cdmgr.c.o -c /home/vsc/github/yap-6.3/C/cdmgr.c -/home/vsc/github/yap-6.3/C/gmp_support.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/gmp_support.c.o -c /home/vsc/github/yap-6.3/C/gmp_support.c -/home/vsc/github/yap-6.3/C/udi.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/udi.c.o -c /home/vsc/github/yap-6.3/C/udi.c -/home/vsc/github/yap-6.3/C/parser.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/parser.c.o -c /home/vsc/github/yap-6.3/C/parser.c -/home/vsc/github/yap-6.3/C/absmi.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/absmi.c.o -c /home/vsc/github/yap-6.3/C/absmi.c -/home/vsc/github/yap-6.3/C/sort.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/sort.c.o -c /home/vsc/github/yap-6.3/C/sort.c -/home/vsc/github/yap-6.3/C/exo.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/exo.c.o -c /home/vsc/github/yap-6.3/C/exo.c -/home/vsc/github/yap-6.3/C/grow.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/grow.c.o -c /home/vsc/github/yap-6.3/C/grow.c -/home/vsc/github/yap-6.3/C/tracer.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/tracer.c.o -c /home/vsc/github/yap-6.3/C/tracer.c -/home/vsc/github/yap-6.3/C/eval.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/eval.c.o -c /home/vsc/github/yap-6.3/C/eval.c -/home/vsc/github/yap-6.3/C/text.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/text.c.o -c /home/vsc/github/yap-6.3/C/text.c -/home/vsc/github/yap-6.3/C/depth_bound.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/depth_bound.c.o -c /home/vsc/github/yap-6.3/C/depth_bound.c -/home/vsc/github/yap-6.3/C/arith1.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/arith1.c.o -c /home/vsc/github/yap-6.3/C/arith1.c -/home/vsc/github/yap-6.3/C/args.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/args.c.o -c /home/vsc/github/yap-6.3/C/args.c -/home/vsc/github/yap-6.3/C/dlmalloc.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/dlmalloc.c.o -c /home/vsc/github/yap-6.3/C/dlmalloc.c -/home/vsc/github/yap-6.3/C/dbase.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/dbase.c.o -c /home/vsc/github/yap-6.3/C/dbase.c -/home/vsc/github/yap-6.3/C/blobs.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/blobs.c.o -c /home/vsc/github/yap-6.3/C/blobs.c -/home/vsc/github/yap-6.3/C/corout.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/corout.c.o -c /home/vsc/github/yap-6.3/C/corout.c -/home/vsc/github/yap-6.3/C/load_none.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_none.c.o -c /home/vsc/github/yap-6.3/C/load_none.c -/home/vsc/github/yap-6.3/C/load_aout.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_aout.c.o -c /home/vsc/github/yap-6.3/C/load_aout.c -/home/vsc/github/yap-6.3/C/amasm.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/amasm.c.o -c /home/vsc/github/yap-6.3/C/amasm.c -/home/vsc/github/yap-6.3/C/userpreds.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/userpreds.c.o -c /home/vsc/github/yap-6.3/C/userpreds.c -/home/vsc/github/yap-6.3/C/load_dld.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_dld.c.o -c /home/vsc/github/yap-6.3/C/load_dld.c -/home/vsc/github/yap-6.3/C/c_interface.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/c_interface.c.o -c /home/vsc/github/yap-6.3/C/c_interface.c -/home/vsc/github/yap-6.3/C/flags.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/flags.c.o -c /home/vsc/github/yap-6.3/C/flags.c -/home/vsc/github/yap-6.3/C/qlyr.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/qlyr.c.o -c /home/vsc/github/yap-6.3/C/qlyr.c -/home/vsc/github/yap-6.3/C/save.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/save.c.o -c /home/vsc/github/yap-6.3/C/save.c -/home/vsc/github/yap-6.3/C/inlines.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/inlines.c.o -c /home/vsc/github/yap-6.3/C/inlines.c -/home/vsc/github/yap-6.3/C/stdpreds.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/stdpreds.c.o -c /home/vsc/github/yap-6.3/C/stdpreds.c -/home/vsc/github/yap-6.3/C/unify.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/unify.c.o -c /home/vsc/github/yap-6.3/C/unify.c -/home/vsc/github/yap-6.3/C/load_foreign.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_foreign.c.o -c /home/vsc/github/yap-6.3/C/load_foreign.c -/home/vsc/github/yap-6.3/C/load_dyld.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_dyld.c.o -c /home/vsc/github/yap-6.3/C/load_dyld.c -/home/vsc/github/yap-6.3/C/signals.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/signals.c.o -c /home/vsc/github/yap-6.3/C/signals.c -/home/vsc/github/yap-6.3/C/exo_udi.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/exo_udi.c.o -c /home/vsc/github/yap-6.3/C/exo_udi.c -/home/vsc/github/yap-6.3/C/arith0.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/arith0.c.o -c /home/vsc/github/yap-6.3/C/arith0.c -/home/vsc/github/yap-6.3/C/adtdefs.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/adtdefs.c.o -c /home/vsc/github/yap-6.3/C/adtdefs.c -/home/vsc/github/yap-6.3/C/agc.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/agc.c.o -c /home/vsc/github/yap-6.3/C/agc.c -/home/vsc/github/yap-6.3/C/gprof.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/gprof.c.o -c /home/vsc/github/yap-6.3/C/gprof.c -/home/vsc/github/yap-6.3/C/load_dl.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_dl.c.o -c /home/vsc/github/yap-6.3/C/load_dl.c -/home/vsc/github/yap-6.3/C/qlyw.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/qlyw.c.o -c /home/vsc/github/yap-6.3/C/qlyw.c -/home/vsc/github/yap-6.3/C/bb.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/bb.c.o -c /home/vsc/github/yap-6.3/C/bb.c -/home/vsc/github/yap-6.3/C/analyst.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/analyst.c.o -c /home/vsc/github/yap-6.3/C/analyst.c -/home/vsc/github/yap-6.3/C/errors.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/errors.c.o -c /home/vsc/github/yap-6.3/C/errors.c -/home/vsc/github/yap-6.3/C/load_shl.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_shl.c.o -c /home/vsc/github/yap-6.3/C/load_shl.c -/home/vsc/github/yap-6.3/C/cmppreds.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/cmppreds.c.o -c /home/vsc/github/yap-6.3/C/cmppreds.c -/home/vsc/github/yap-6.3/C/threads.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/threads.c.o -c /home/vsc/github/yap-6.3/C/threads.c -/home/vsc/github/yap-6.3/C/other.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/other.c.o -c /home/vsc/github/yap-6.3/C/other.c -/home/vsc/github/yap-6.3/C/atomic.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/atomic.c.o -c /home/vsc/github/yap-6.3/C/atomic.c -/home/vsc/github/yap-6.3/C/attvar.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/attvar.c.o -c /home/vsc/github/yap-6.3/C/attvar.c -/home/vsc/github/yap-6.3/C/mavar.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/mavar.c.o -c /home/vsc/github/yap-6.3/C/mavar.c -/home/vsc/github/yap-6.3/C/modules.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/modules.c.o -c /home/vsc/github/yap-6.3/C/modules.c -/home/vsc/github/yap-6.3/C/bignum.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/bignum.c.o -c /home/vsc/github/yap-6.3/C/bignum.c -/home/vsc/github/yap-6.3/C/globals.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/globals.c.o -c /home/vsc/github/yap-6.3/C/globals.c -/home/vsc/github/yap-6.3/C/load_dll.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/load_dll.c.o -c /home/vsc/github/yap-6.3/C/load_dll.c -/home/vsc/github/yap-6.3/C/write.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/write.c.o -c /home/vsc/github/yap-6.3/C/write.c -/home/vsc/github/yap-6.3/C/alloc.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/C/alloc.c.o -c /home/vsc/github/yap-6.3/C/alloc.c -/home/vsc/github/yap-6.3/os/readutil.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/readutil.c.o -c /home/vsc/github/yap-6.3/os/readutil.c -/home/vsc/github/yap-6.3/os/iopreds.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/iopreds.c.o -c /home/vsc/github/yap-6.3/os/iopreds.c -/home/vsc/github/yap-6.3/os/sockets.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/sockets.c.o -c /home/vsc/github/yap-6.3/os/sockets.c -/home/vsc/github/yap-6.3/os/sig.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/sig.c.o -c /home/vsc/github/yap-6.3/os/sig.c -/home/vsc/github/yap-6.3/os/ypstdio.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/ypstdio.c.o -c /home/vsc/github/yap-6.3/os/ypstdio.c -/home/vsc/github/yap-6.3/os/files.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/files.c.o -c /home/vsc/github/yap-6.3/os/files.c -/home/vsc/github/yap-6.3/os/sysbits.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/sysbits.c.o -c /home/vsc/github/yap-6.3/os/sysbits.c -/home/vsc/github/yap-6.3/os/open_memstream.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/open_memstream.c.o -c /home/vsc/github/yap-6.3/os/open_memstream.c -/home/vsc/github/yap-6.3/os/pipes.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/pipes.c.o -c /home/vsc/github/yap-6.3/os/pipes.c -/home/vsc/github/yap-6.3/os/writeterm.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/writeterm.c.o -c /home/vsc/github/yap-6.3/os/writeterm.c -/home/vsc/github/yap-6.3/os/chartypes.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/chartypes.c.o -c /home/vsc/github/yap-6.3/os/chartypes.c -/home/vsc/github/yap-6.3/os/mem.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/mem.c.o -c /home/vsc/github/yap-6.3/os/mem.c -/home/vsc/github/yap-6.3/os/format.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/format.c.o -c /home/vsc/github/yap-6.3/os/format.c -/home/vsc/github/yap-6.3/os/console.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/console.c.o -c /home/vsc/github/yap-6.3/os/console.c -/home/vsc/github/yap-6.3/os/readline.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/readline.c.o -c /home/vsc/github/yap-6.3/os/readline.c -/home/vsc/github/yap-6.3/os/streams.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/streams.c.o -c /home/vsc/github/yap-6.3/os/streams.c -/home/vsc/github/yap-6.3/os/readterm.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/readterm.c.o -c /home/vsc/github/yap-6.3/os/readterm.c -/home/vsc/github/yap-6.3/os/random.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/random.c.o -c /home/vsc/github/yap-6.3/os/random.c -/home/vsc/github/yap-6.3/os/ypsocks.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/ypsocks.c.o -c /home/vsc/github/yap-6.3/os/ypsocks.c -/home/vsc/github/yap-6.3/os/assets.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/assets.c.o -c /home/vsc/github/yap-6.3/os/assets.c -/home/vsc/github/yap-6.3/os/charsio.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/charsio.c.o -c /home/vsc/github/yap-6.3/os/charsio.c -/home/vsc/github/yap-6.3/os/alias.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/alias.c.o -c /home/vsc/github/yap-6.3/os/alias.c -/home/vsc/github/yap-6.3/os/fmem.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/fmem.c.o -c /home/vsc/github/yap-6.3/os/fmem.c -/home/vsc/github/yap-6.3/os/fmemopen.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/fmemopen.c.o -c /home/vsc/github/yap-6.3/os/fmemopen.c -/home/vsc/github/yap-6.3/os/time.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ios/../H -Ios/../include -Ios/../OPTYap -Ios/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o os/CMakeFiles/libYAPOs.dir/time.c.o -c /home/vsc/github/yap-6.3/os/time.c -/home/vsc/github/yap-6.3/OPTYap/or.scheduler.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.scheduler.c.o -c /home/vsc/github/yap-6.3/OPTYap/or.scheduler.c -/home/vsc/github/yap-6.3/OPTYap/or.copy_engine.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.copy_engine.c.o -c /home/vsc/github/yap-6.3/OPTYap/or.copy_engine.c -/home/vsc/github/yap-6.3/OPTYap/or.cow_engine.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.cow_engine.c.o -c /home/vsc/github/yap-6.3/OPTYap/or.cow_engine.c -/home/vsc/github/yap-6.3/OPTYap/or.thread_engine.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.thread_engine.c.o -c /home/vsc/github/yap-6.3/OPTYap/or.thread_engine.c -/home/vsc/github/yap-6.3/OPTYap/or.memory.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.memory.c.o -c /home/vsc/github/yap-6.3/OPTYap/or.memory.c -/home/vsc/github/yap-6.3/OPTYap/opt.preds.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/opt.preds.c.o -c /home/vsc/github/yap-6.3/OPTYap/opt.preds.c -/home/vsc/github/yap-6.3/OPTYap/tab.tries.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/tab.tries.c.o -c /home/vsc/github/yap-6.3/OPTYap/tab.tries.c -/home/vsc/github/yap-6.3/OPTYap/opt.init.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/opt.init.c.o -c /home/vsc/github/yap-6.3/OPTYap/opt.init.c -/home/vsc/github/yap-6.3/OPTYap/or.sba_engine.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.sba_engine.c.o -c /home/vsc/github/yap-6.3/OPTYap/or.sba_engine.c -/home/vsc/github/yap-6.3/OPTYap/tab.completion.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/tab.completion.c.o -c /home/vsc/github/yap-6.3/OPTYap/tab.completion.c -/home/vsc/github/yap-6.3/OPTYap/or.cut.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -IOPTYap/OPTYap -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o OPTYap/CMakeFiles/libOPTYap.dir/or.cut.c.o -c /home/vsc/github/yap-6.3/OPTYap/or.cut.c -/home/vsc/github/yap-6.3/packages/python/pypreds.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -I. -Iinclude -Ios -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pypreds.c.o -c /home/vsc/github/yap-6.3/packages/python/pypreds.c -/home/vsc/github/yap-6.3/packages/python/py2pl.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -I. -Iinclude -Ios -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/py2pl.c.o -c /home/vsc/github/yap-6.3/packages/python/py2pl.c -/home/vsc/github/yap-6.3/packages/python/pyload.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -DYAPPython_EXPORTS -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -I. -Iinclude -Ios -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/python/CMakeFiles/YAPPython.dir/pyload.c.o -c /home/vsc/github/yap-6.3/packages/python/pyload.c -/home/vsc/github/yap-6.3/packages/python/pybips.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -I. -Iinclude -Ios -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pybips.c.o -c /home/vsc/github/yap-6.3/packages/python/pybips.c -/home/vsc/github/yap-6.3/packages/python/python.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -I. -Iinclude -Ios -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/python.c.o -c /home/vsc/github/yap-6.3/packages/python/python.c -/home/vsc/github/yap-6.3/packages/python/pl2pl.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -I. -Iinclude -Ios -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pl2pl.c.o -c /home/vsc/github/yap-6.3/packages/python/pl2pl.c -/home/vsc/github/yap-6.3/packages/python/pl2py.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DPy4YAP_EXPORTS -DRATIONAL_TREES=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -D_GNU_SOURCE=1 -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -I. -Iinclude -Ios -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/python/CMakeFiles/Py4YAP.dir/pl2py.c.o -c /home/vsc/github/yap-6.3/packages/python/pl2py.c -/home/vsc/github/yap-6.3/packages/raptor/xml2_yap.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dlibxml2_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/raptor/../../H -I/usr/include/libxml2 -Ipackages/raptor -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/raptor/CMakeFiles/libxml2.dir/xml2_yap.c.o -c /home/vsc/github/yap-6.3/packages/raptor/xml2_yap.c -/home/vsc/github/yap-6.3/packages/raptor/raptor_yap.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Draptor_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/raptor/../../H -I/usr/include/libxml2 -Ipackages/raptor -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/raptor/CMakeFiles/raptor.dir/raptor_yap.c.o -c /home/vsc/github/yap-6.3/packages/raptor/raptor_yap.c -/home/vsc/github/yap-6.3/packages/myddas/sqlite3/src/sqlite3.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -DYapsqlite3_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -Ipackages/myddas/sqlite3/.. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/sqlite3/CMakeFiles/Yapsqlite3.dir/src/sqlite3.c.o -c /home/vsc/github/yap-6.3/packages/myddas/sqlite3/src/sqlite3.c -/home/vsc/github/yap-6.3/packages/myddas/sqlite3/myddas_sqlite3.c=/home/vsc/github/yap-6.3#-DYAP_KERNEL=1 -DYapsqlite3_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -Ipackages/myddas/sqlite3/.. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/sqlite3/CMakeFiles/Yapsqlite3.dir/myddas_sqlite3.c.o -c /home/vsc/github/yap-6.3/packages/myddas/sqlite3/myddas_sqlite3.c -/home/vsc/github/yap-6.3/packages/myddas/odbc/myddas_odbc.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -DYapodbc_EXPORTS -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -Ipackages/myddas/odbc/.. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/odbc/CMakeFiles/Yapodbc.dir/myddas_odbc.c.o -c /home/vsc/github/yap-6.3/packages/myddas/odbc/myddas_odbc.c -/home/vsc/github/yap-6.3/packages/myddas/mysql/myddas_util.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -DYapmysql_EXPORTS -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -I/usr/include/mysql -Ipackages/myddas/mysql/.. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/mysql/CMakeFiles/Yapmysql.dir/myddas_util.c.o -c /home/vsc/github/yap-6.3/packages/myddas/mysql/myddas_util.c -/home/vsc/github/yap-6.3/packages/myddas/mysql/myddas_wkb2prolog.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -DYapmysql_EXPORTS -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -I/usr/include/mysql -Ipackages/myddas/mysql/.. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/mysql/CMakeFiles/Yapmysql.dir/myddas_wkb2prolog.c.o -c /home/vsc/github/yap-6.3/packages/myddas/mysql/myddas_wkb2prolog.c -/home/vsc/github/yap-6.3/packages/myddas/mysql/myddas_mysql.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -DYapmysql_EXPORTS -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -I/usr/include/mysql -Ipackages/myddas/mysql/.. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/mysql/CMakeFiles/Yapmysql.dir/myddas_mysql.c.o -c /home/vsc/github/yap-6.3/packages/myddas/mysql/myddas_mysql.c -/home/vsc/github/yap-6.3/packages/myddas/myddas_util.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_util.c.o -c /home/vsc/github/yap-6.3/packages/myddas/myddas_util.c -/home/vsc/github/yap-6.3/packages/myddas/myddas_initialization.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_initialization.c.o -c /home/vsc/github/yap-6.3/packages/myddas/myddas_initialization.c -/home/vsc/github/yap-6.3/packages/myddas/myddas_shared.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_shared.c.o -c /home/vsc/github/yap-6.3/packages/myddas/myddas_shared.c -/home/vsc/github/yap-6.3/packages/myddas/myddas_statistics.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_statistics.c.o -c /home/vsc/github/yap-6.3/packages/myddas/myddas_statistics.c -/home/vsc/github/yap-6.3/packages/myddas/myddas_top_level.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/myddas/. -Ipackages/myddas/sqlite3 -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/myddas/CMakeFiles/myddas.dir/myddas_top_level.c.o -c /home/vsc/github/yap-6.3/packages/myddas/myddas_top_level.c -/home/vsc/github/yap-6.3/packages/jpl/src/c/jpl.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DjplYap_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -I/usr/lib/jvm/java-8-openjdk-amd64/include -I/usr/lib/jvm/java-8-openjdk-amd64/include/linux -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/jpl/src/c/CMakeFiles/jplYap.dir/jpl.c.o -c /home/vsc/github/yap-6.3/packages/jpl/src/c/jpl.c -/home/vsc/github/yap-6.3/packages/real/real.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dreal_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/real -I/usr/share/R/include -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/real/CMakeFiles/real.dir/real.c.o -c /home/vsc/github/yap-6.3/packages/real/real.c -/home/vsc/github/yap-6.3/GitSHA1.c=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUSE_SYSTEM_MALLOC=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -DlibYap_EXPORTS -DYAP_KERNEL=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CMakeFiles/libYap.dir/GitSHA1.c.o -c /home/vsc/github/yap-6.3/GitSHA1.c -/home/vsc/github/yap-6.3/CXX/yapi.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -DYAP___EXPORTS -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -ICXX/. -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o CXX/CMakeFiles/YAP++.dir/yapi.cpp.o -c /home/vsc/github/yap-6.3/CXX/yapi.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/Parfactor.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Parfactor.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/Parfactor.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/HorusCli.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIE -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/HorusCli.dir/HorusCli.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/HorusCli.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedUtils.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedUtils.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedUtils.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/BeliefProp.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/BeliefProp.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/BeliefProp.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/Util.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Util.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/Util.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/WeightedBp.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/WeightedBp.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/WeightedBp.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedVe.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedVe.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedVe.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedWCNF.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedWCNF.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedWCNF.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/Factor.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Factor.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/Factor.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/FactorGraph.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/FactorGraph.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/FactorGraph.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedOperations.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedOperations.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedOperations.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/Var.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Var.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/Var.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/CountingBp.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/CountingBp.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/CountingBp.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedBp.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedBp.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedBp.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/Histogram.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Histogram.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/Histogram.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/Indexer.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/Indexer.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/Indexer.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/BayesBallGraph.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/BayesBallGraph.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/BayesBallGraph.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/ParfactorList.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ParfactorList.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/ParfactorList.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/VarElim.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/VarElim.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/VarElim.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/BayesBall.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/BayesBall.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/BayesBall.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/GenericFactor.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/GenericFactor.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/GenericFactor.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/ProbFormula.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ProbFormula.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/ProbFormula.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/ConstraintTree.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ConstraintTree.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/ConstraintTree.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/HorusYap.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/HorusYap.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/HorusYap.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/GroundSolver.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/GroundSolver.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/GroundSolver.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedKc.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/LiftedKc.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/LiftedKc.cpp -/home/vsc/github/yap-6.3/packages/CLPBN/horus/ElimGraph.cpp=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dhorus_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/CLPBN/horus -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/CLPBN/horus/CMakeFiles/horus.dir/ElimGraph.cpp.o -c /home/vsc/github/yap-6.3/packages/CLPBN/horus/ElimGraph.cpp -/home/vsc/github/yap-6.3/packages/gecode/gecode4_yap.cc=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dgecode_yap_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/gecode -Ipackages/gecode/4.4.0 -g3 -gdwarf-2 -fPIC -Wall -fexceptions -std=gnu++11 -o packages/gecode/CMakeFiles/gecode_yap.dir/gecode4_yap.cc.o -c /home/vsc/github/yap-6.3/packages/gecode/gecode4_yap.cc -/home/vsc/github/yap-6.3/packages/swi-minisat2/C/Solver.C=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dminisat2_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/swi-minisat2/C -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/swi-minisat2/C/CMakeFiles/minisat2.dir/Solver.C.o -c /home/vsc/github/yap-6.3/packages/swi-minisat2/C/Solver.C -/home/vsc/github/yap-6.3/packages/swi-minisat2/C/pl-minisat.C=/home/vsc/github/yap-6.3#-DCOROUTINING=1 -DDEBUG=1 -DDEPTH_LIMIT=1 -DHAVE_CONFIG_H=1 -DLOW_LEVEL_TRACER=1 -DMYDDAS_SQLITE3=1 -DRATIONAL_TREES=1 -DTABLING=1 -DTHREADED_CODE=1 -DUSE_MYDDAS=1 -DUTF8PROC=1 -D_GNU_SOURCE -D_YAP_NOT_INSTALLED_=1 -Dminisat2_EXPORTS -I. -I/usr/include/python2.7 -Iutf8proc -Ipackages/myddas -Ipackages/myddas/sqlite3/src -IH -IH/generated -Iinclude -Ios -IOPTYap -IJIT/HPP -I/usr/include/x86_64-linux-gnu -Ipackages/swi-minisat2/C -g3 -gdwarf-2 -fPIC -Wall -fexceptions -o packages/swi-minisat2/C/CMakeFiles/minisat2.dir/pl-minisat.C.o -c /home/vsc/github/yap-6.3/packages/swi-minisat2/C/pl-minisat.C diff --git a/nbproject/private/c_standard_headers_indexer.c b/nbproject/private/c_standard_headers_indexer.c deleted file mode 100644 index c2548d20c..000000000 --- a/nbproject/private/c_standard_headers_indexer.c +++ /dev/null @@ -1,75 +0,0 @@ -/* - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved. - * - * Oracle and Java are registered trademarks of Oracle and/or its affiliates. - * Other names may be trademarks of their respective owners. - * - * The contents of this file are subject to the terms of either the GNU - * General Public License Version 2 only ("GPL") or the Common - * Development and Distribution License("CDDL") (collectively, the - * "License"). You may not use this file except in compliance with the - * License. You can obtain a copy of the License at - * http://www.netbeans.org/cddl-gplv2.html - * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the - * specific language governing permissions and limitations under the - * License. When distributing the software, include this License Header - * Notice in each file and include the License file at - * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the GPL Version 2 section of the License file that - * accompanied this code. If applicable, add the following below the - * License Header, with the fields enclosed by brackets [] replaced by - * your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * If you wish your version of this file to be governed by only the CDDL - * or only the GPL Version 2, indicate your decision by adding - * "[Contributor] elects to include this software in this distribution - * under the [CDDL or GPL Version 2] license." If you do not indicate a - * single choice of license, a recipient has the option to distribute - * your version of this file under either the CDDL, the GPL Version 2 or - * to extend the choice of license to its licensees as provided above. - * However, if you add GPL Version 2 code and therefore, elected the GPL - * Version 2 license, then the option applies only if the new code is - * made subject to such option by the copyright holder. - * - * Contributor(s): - */ - -// List of standard headers was taken in http://en.cppreference.com/w/c/header - -#include // Conditionally compiled macro that compares its argument to zero -#include // Functions to determine the type contained in character data -#include // Macros reporting error conditions -#include // Limits of float types -#include // Sizes of basic types -#include // Localization utilities -#include // Common mathematics functions -#include // Nonlocal jumps -#include // Signal handling -#include // Variable arguments -#include // Common macro definitions -#include // Input/output -#include // String handling -#include // General utilities: memory management, program utilities, string conversions, random numbers -#include // Time/date utilities -#include // (since C95) Alternative operator spellings -#include // (since C95) Extended multibyte and wide character utilities -#include // (since C95) Wide character classification and mapping utilities -#ifdef _STDC_C99 -#include // (since C99) Complex number arithmetic -#include // (since C99) Floating-point environment -#include // (since C99) Format conversion of integer types -#include // (since C99) Boolean type -#include // (since C99) Fixed-width integer types -#include // (since C99) Type-generic math (macros wrapping math.h and complex.h) -#endif -#ifdef _STDC_C11 -#include // (since C11) alignas and alignof convenience macros -#include // (since C11) Atomic types -#include // (since C11) noreturn convenience macros -#include // (since C11) Thread library -#include // (since C11) UTF-16 and UTF-32 character utilities -#endif diff --git a/nbproject/private/configurations.xml b/nbproject/private/configurations.xml deleted file mode 100644 index 92130c30a..000000000 --- a/nbproject/private/configurations.xml +++ /dev/null @@ -1,2913 +0,0 @@ - - - - - - - - - - - - - - eam.h - eam_am.c - eam_gc.c - eam_showcode.c - eam_split.c - eamamasm.c - eamamasm.h - eamindex.c - toeam.c - - - - - - - - CMakeCCompilerId.c - - - CMakeCXXCompilerId.cpp - - - - CELLSIZE.c - RL_COMPLETION_FUNC_T.c - RL_HOOK_FUNC_T.c - SIZEOF_DOUBLE.c - SIZEOF_FLOAT.c - SIZEOF_INT.c - SIZEOF_INT_P.c - SIZEOF_LONG.c - SIZEOF_LONG_INT.c - SIZEOF_LONG_LONG.c - SIZEOF_LONG_LONG_INT.c - SIZEOF_SHORT_INT.c - SIZEOF_VOIDP.c - SIZEOF_VOID_P.c - SIZEOF_WCHAR_T.c - - - - - - - - - - - - - - feature_tests.c - feature_tests.cxx - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - sys_config.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - YapIOConfig.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - yap.i - yapPYTHON_wrap.cxx - yapPYTHON_wrap.h - yap_wrap.cpp - yap_wrap.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - raptor_config.h - - - - - - - rconfig.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GitSHA1.c - YapConfig.h - YapTermConfig.h - config.h - deflocals.h - dlocals.h - - - absmi.c - absmi_insts.h - absmi_insts.i - adtdefs.c - agc.c - alloc.c - amasm.c - analyst.c - args.c - arith0.c - arith1.c - arith2.c - arrays.c - atomic.c - attvar.c - bb.c - bignum.c - blobs.c - c_interface.c - cdmgr.c - clause_list.c - cmppreds.c - compiler.c - computils.c - control_absmi_insts.h - corout.c - cp_absmi_insts.h - cut_c.c - dbase.c - depth_bound.c - dlmalloc.c - errors.c - eval.c - exec.c - exo.c - exo_udi.c - fail_absmi_insts.h - flags.c - fli_absmi_insts.h - globals.c - gmp_support.c - gprof.c - grow.c - heapgc.c - index.c - index_absmi_insts.h - init.c - inlines.c - load_aix.c - load_aout.c - load_coff.c - load_dl.c - load_dld.c - load_dll.c - load_dyld.c - load_foreign.c - load_none.c - load_shl.c - lu_absmi_insts.h - mavar.c - meta_absmi_insts.h - modules.c - or_absmi_insts.h - other.c - parser.c - prim_absmi_insts.h - qlyr.c - qlyw.c - range.c - realpath.c - save.c - scanner.c - signals.c - sort.c - stack.c - stackinfo.c - stdpreds.c - text.c - threads.c - traced_absmi_insts.h - tracer.c - type_absmi_insts.h - udi.c - unify.c - unify_absmi_insts.h - userpreds.c - utilpreds.c - write.c - yap-args.c - - - EmptyArray.c - TestForHighBitCharacters.c - TestSignalType.c - - - - - - - - CMakeCCompilerId.c - - - - - CMakeCXXCompilerId.cpp - - - - CELLSIZE.c - RL_COMPLETION_FUNC_T.c - RL_HOOK_FUNC_T.c - SIZEOF_DOUBLE.c - SIZEOF_FLOAT.c - SIZEOF_INT.c - SIZEOF_INT_P.c - SIZEOF_LONG.c - SIZEOF_LONG_INT.c - SIZEOF_LONG_LONG.c - SIZEOF_LONG_LONG_INT.c - SIZEOF_SHORT_INT.c - SIZEOF_VOIDP.c - SIZEOF_VOID_P.c - SIZEOF_WCHAR_T.c - - - - - - - - - - - - - - - - feature_tests.c - feature_tests.cxx - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - sys_config.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - YapIOConfig.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - yap.i - yapPYTHON_wrap.cxx - yapPYTHON_wrap.h - yap_wrap.cpp - yap_wrap.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - raptor_config.h - - - - - - - rconfig.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GitSHA1.c - YapConfig.h - YapTermConfig.h - config.h - deflocals.h - dlocals.h - - - - - CMakeCCompilerId.c - - - CMakeCXXCompilerId.cpp - - - - CELLSIZE.c - RL_COMPLETION_FUNC_T.c - RL_HOOK_FUNC_T.c - SIZEOF_DOUBLE.c - SIZEOF_FLOAT.c - SIZEOF_INT.c - SIZEOF_INT_P.c - SIZEOF_LONG.c - SIZEOF_LONG_INT.c - SIZEOF_LONG_LONG.c - SIZEOF_LONG_LONG_INT.c - SIZEOF_SHORT_INT.c - SIZEOF_VOIDP.c - SIZEOF_VOID_P.c - SIZEOF_WCHAR_T.c - - - - - - - - - - - - - - feature_tests.c - feature_tests.cxx - - - - pl-ntcon.c - pl-ntconsole.c - pl-ntmain.c - resource.h - - - - - - - - - - - - moc_mainwindow.cpp - ui_mainwindow.h - - - main.cpp - mainwindow.cpp - mainwindow.h - - qtyap.cpp - - - - - console.cpp - console.h - mainwindow.cpp - mainwindow.h - moc_console.cpp - moc_mainwindow.cpp - moc_settingsdialog.cpp - qrc_terminal.cpp - settingsdialog.cpp - settingsdialog.h - streamer.cpp - ui_mainwindow.h - ui_settingsdialog.h - - yap.c - - - - - - - - - yapi.cpp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - dglobals.h - dhstruct.h - h0globals.h - h0struct.h - hglobals.h - hlocals.h - hstruct.h - i0globals.h - iatoms.h - iglobals.h - ihstruct.h - ilocals.h - ratoms.h - rglobals.h - rhstruct.h - rlocals.h - tatoms.h - - Atoms.h - Foreign.h - Regs.h - ScannerTypes.h - Tags_24bits.h - Tags_32LowTag.h - Tags_32Ops.h - Tags_32bits.h - Tags_64bits.h - TermExt.h - Yap.h - YapAppliedOpcodes.h - YapCompile.h - YapCompoundTerm.h - YapEval.h - YapFlags.h - YapGFlagInfo.h - YapHandles.h - YapHeap.h - YapLFlagInfo.h - YapOpcodes.h - YapSignals.h - YapTags.h - YapTerm.h - YapText.h - Yapproto.h - Yatom.h - absmi-interpretrer.h - absmi-switch.h - absmi-threaded.h - absmi-traced.h - absmi.h - alloc.h - amidefs.h - amijit.h - amiops.h - arith2.h - arrays.h - attvar.h - blobs.h - clause.h - corout.h - cut_c.h - dlmalloc.h - fields.h - findclause.h - globals.h - headclause.h - heap.h - heapgc.h - index.h - inline-only.h - iswiatoms.h - locals.h - nolocks.h - qly.h - rclause.h - rheap.h - saveclause.h - sig.h - sshift.h - threads.h - tracer.h - trim_trail.h - udi_private.h - utarray.h - uthash.h - walkclause.h - yerror.h - - - GitSHA1.h - SWI-Prolog.h - VFS.h - YapDefs.h - YapError.h - YapErrors.h - YapFormat.h - YapInterface.h - YapRegs.h - YapStreams.h - c_interface.h - clause_list.h - pl-types.h - udi.h - - - - - - EnvironmentInit.h - IsGround.h - JIT.hpp - JIT_Compiler.hpp - PassPrinters.h - PassPrinters.hpp - Yap_AppliedBasicBlocks.h - Yap_BasicBlocks.h - debug_printers.h - fprintblock.h - indexing_ext.h - indexing_ext_d.h - indexing_std.h - indexing_std_d.h - jit_predicates.hpp - lastop.h - native_header.h - native_header_d.h - nextof.hpp - p_dif.i - p_eq.i - p_functor.i - print_op.hpp - print_preg.h - printblock.h - processa.cpp - singlecode_basics.h - singlecode_call.h - singlecode_cpred.h - singlecode_cut.h - singlecode_get.h - singlecode_misc.h - singlecode_pop.h - singlecode_primitive_predicates.h - singlecode_put.h - singlecode_unify.h - singlecode_write.h - sprint_op.hpp - sprintblock.h - traced_absmi_insts.i - yaam_basics.h - yaam_basics_d.h - yaam_call.h - yaam_call_count.h - yaam_call_count_d.h - yaam_call_d.h - yaam_cpred.h - yaam_cpred_d.h - yaam_cut.h - yaam_cut_d.h - yaam_failure.h - yaam_failure_d.h - yaam_get.h - yaam_get_d.h - yaam_macros.hpp - yaam_misc.h - yaam_misc_d.h - yaam_pop.h - yaam_pop_d.h - yaam_primitive_predicates.h - yaam_primitive_predicates_d.h - yaam_put.h - yaam_put_d.h - yaam_unify.h - yaam_unify_d.h - yaam_write.h - yaam_write_d.h - - JIT_Compiler.cpp - JIT_Init.cpp - JIT_interface.cpp - jit_analysispreds.c - jit_codegenpreds.c - jit_configpreds.c - jit_debugpreds.c - jit_statisticpreds.c - jit_traced.c - jit_transformpreds.c - - - - - - - - CMakeCCompilerId.c - - - CMakeCXXCompilerId.cpp - - - - CELLSIZE.c - RL_COMPLETION_FUNC_T.c - RL_HOOK_FUNC_T.c - SIZEOF_DOUBLE.c - SIZEOF_FLOAT.c - SIZEOF_INT.c - SIZEOF_INT_P.c - SIZEOF_LONG.c - SIZEOF_LONG_INT.c - SIZEOF_LONG_LONG.c - SIZEOF_LONG_LONG_INT.c - SIZEOF_SHORT_INT.c - SIZEOF_VOIDP.c - SIZEOF_VOID_P.c - SIZEOF_WCHAR_T.c - - - - - - - - - - - - - - feature_tests.c - feature_tests.cxx - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - sys_config.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - YapIOConfig.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - yap.i - yapPYTHON_wrap.cxx - yapPYTHON_wrap.h - yap_wrap.cpp - yap_wrap.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - raptor_config.h - - - - - - - rconfig.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GitSHA1.c - YapConfig.h - YapTermConfig.h - config.h - dlocals.h - - - - - - - - - - - - - - - - - - - - - - - - - - bprolog.h - - - - - - - - - - - blobs.c - swi.c - swi.h - - - - caldate.h - caldate_fmjd.c - caldate_fmt.c - caldate_mjd.c - caldate_norm.c - caldate_scan.c - caldate_ster.c - caltime.h - caltime_fmt.c - caltime_scan.c - caltime_tai.c - caltime_utc.c - check.c - easter.c - leapsecs.c - leapsecs.h - leapsecs_add.c - leapsecs_init.c - leapsecs_read.c - leapsecs_sub.c - nowutc.c - tai.h - tai_add.c - tai_now.c - tai_pack.c - tai_sub.c - tai_unpack.c - taia.h - taia_add.c - taia_approx.c - taia_fmtfrac.c - taia_frac.c - taia_half.c - taia_less.c - taia_now.c - taia_pack.c - taia_sub.c - taia_tai.c - taia_unpack.c - yearcal.c - - - dirent.h - popen.c - utf8.c - utf8.h - uxnt.c - uxnt.h - - SWI-Stream.h - dtoa.c - pl-buffer.c - pl-buffer.h - pl-codelist.c - pl-codelist.h - pl-cstack.c - pl-cstack.h - pl-ctype.c - pl-ctype.h - pl-dtoa.c - pl-dtoa.h - pl-error.c - pl-error.h - pl-file.c - pl-file.h - pl-files.c - pl-files.h - pl-fmt.c - pl-glob.c - pl-global.h - pl-incl.h - pl-locale.c - pl-locale.h - pl-nt.c - pl-option.c - pl-option.h - pl-os.c - pl-os.h - pl-privitf.c - pl-privitf.h - pl-prologflag.c - pl-read.c - pl-read.h - pl-rl.c - pl-shared.h - pl-stream.c - pl-string.c - pl-string.h - pl-table.c - pl-table.h - pl-tai.c - pl-text.c - pl-text.h - pl-thread.h - pl-umap.c - pl-utf8.c - pl-utf8.h - pl-util.c - pl-version.c - pl-write.c - pl-yap.h - - - - - - - - - - - - - hash.c - hash.h - prologterms2c.c - prologterms2c.h - yap_mpi.c - - - - - matlab.c - - - - - - - matrix.c - - - - - mpe.c - mpi.c - - - - - - - yap_random.c - - - - - - - cclass.h - cname.h - collate.h - engine.c - regcomp.c - regerror.c - regex2.h - regexec.c - regexp.c - regfree.c - utils.h - yapregex.h - - - - - - - range_list.c - range_list.h - yap_rl.c - - - - - - - - - - md5.c - md5.h - - sys.c - sys_config.h - - - - - - - - - base_dbtries.c - base_dbtries.h - base_itries.c - base_itries.h - base_tries.c - base_tries.h - core_dbtries.c - core_dbtries.h - core_tries.c - core_tries.h - itries.c - tries.c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - locks_alpha.h - locks_alpha_funcs.h - locks_mips.h - locks_mips_funcs.h - locks_pthread.h - locks_sparc.h - locks_x86.h - opt.config.h - opt.init.c - opt.macros.h - opt.mavar.h - opt.preds.c - opt.proto.h - opt.structs.h - or.copy_engine.c - or.cow_engine.c - or.cut.c - or.insts.h - or.macros.h - or.memory.c - or.sba_amiops.h - or.sba_engine.c - or.sba_unify.h - or.scheduler.c - or.structs.h - or.thread_engine.c - tab.completion.c - tab.insts.h - tab.macros.h - tab.rational.h - tab.structs.h - tab.tries.c - tab.tries.h - tab.tries.insts.h - traced_or.insts.h - traced_tab.insts.h - traced_tab.tries.insts.h - - - - - - - YapIOConfig.h - alias.c - assets.c - charsio.c - chartypes.c - console.c - encoding.h - files.c - fmem.c - fmemopen-android.c - fmemopen.c - fmemopen.h - format.c - format.h - getw.h - iopreds.c - iopreds.h - mem.c - open_memstream.c - pipes.c - random.c - readline.c - readterm.c - readutil.c - sig.c - sockets.c - streams.c - sysbits.c - sysbits.h - time.c - write.c - writeterm.c - yapio.h - ypsocks.c - ypstdio.c - - - - - - - - - - - general.c - general.h - problogbdd.c - problogmath.c - problogmath.h - simplecudd.c - simplecudd.h - - - Example.c - adterror.c - adterror.h - allocate.c - allocate.h - apt.h - cheaders.h - general.c - general.h - iqueue.c - iqueue.h - pqueue.c - pqueue.h - problogbdd_lfi.c - problogmath.c - problogmath.h - queuetest.c - simplecudd.c - simplecudd.h - - cudd.c - - - - - - - - - chr_support.c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - BeliefPropTest.cpp - Common.cpp - Common.h - CountingBpTest.cpp - FactorTest.cpp - UnitTesting.cpp - VarElimTest.cpp - - BayesBall.cpp - BayesBall.h - BayesBallGraph.cpp - BayesBallGraph.h - BeliefProp.cpp - BeliefProp.h - ConstraintTree.cpp - ConstraintTree.h - CountingBp.cpp - CountingBp.h - ElimGraph.cpp - ElimGraph.h - Factor.cpp - Factor.h - FactorGraph.cpp - FactorGraph.h - GenericFactor.cpp - GenericFactor.h - GroundSolver.cpp - GroundSolver.h - Histogram.cpp - Histogram.h - Horus.h - HorusCli.cpp - HorusYap.cpp - Indexer.cpp - Indexer.h - LiftedBp.cpp - LiftedBp.h - LiftedKc.cpp - LiftedKc.h - LiftedOperations.cpp - LiftedOperations.h - LiftedSolver.h - LiftedUtils.cpp - LiftedUtils.h - LiftedVe.cpp - LiftedVe.h - LiftedWCNF.cpp - LiftedWCNF.h - Parfactor.cpp - Parfactor.h - ParfactorList.cpp - ParfactorList.h - ProbFormula.cpp - ProbFormula.h - TinySet.h - Util.cpp - Util.h - Var.cpp - Var.h - VarElim.cpp - VarElim.h - WeightedBp.cpp - WeightedBp.h - - - - - - - - - - - - - - - - - - - - ProblogBDD.c - general.c - general.h - simplecudd.c - simplecudd.h - - - - - - - - - - - - - - - - bddem.c - - - - cplint.h - cplint_Prob.c - cplint_yap.c - - - - - - CC_CSSTree.h - bpreds.h - creator2.c - cuda.c - dbio.h - lista.h - memory.h - pred.h - union2.h - - CC_CSSTree.h - bpreds.h - bpredscpu.cpp - creator2.c - cuda.c - dbio.h - joincpu.cpp - lista.h - memory.h - pred.h - selectproyectcpu.cpp - union2.h - unioncpu2.cpp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - gecode3_yap.cc - gecode4_yap.cc - gecode5_yap.cc - - - - - - - - - - - hacks.c - hacks.h - jpl.c - jpl.h - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - myddas_mysql.c - myddas_util.c - myddas_wkb.h - myddas_wkb2prolog.c - myddas_wkb2prolog.h - - - - - - - myddas_odbc.c - - - - - - - - - myddas_postgres.c - myddas_wkb2prolog.h - - - - - - - - - - - - - - JNIHelp.h - JniConstants.h - ScopedLocalRef.h - jni.h - - ALog-priv.h - JNIHelp.cpp - JniConstants.cpp - android_database_SQLiteCommon.cpp - android_database_SQLiteCommon.h - android_database_SQLiteConnection.cpp - android_database_SQLiteDebug.cpp - android_database_SQLiteGlobal.cpp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .#sqlite3.c - sqlite3.c - sqlite3.h - sqlite3ext.h - - myddas_sqlite3.c - - MyddasProto.h - myddas.c - myddas.h - myddas_initialization.c - myddas_shared.c - myddas_sqllight.c - myddas_statistics.c - myddas_statistics.h - myddas_statistics_structs.h - myddas_structs.h - myddas_top_level.c - myddas_types.h - myddas_util.c - myddas_util.h - myddas_util_connection.c - - - - pl2pl.c - pl2py.c - py2pl.c - pybips.c - pypreds.c - python.c - - - - - - - - - - - - - bpx.c - bpx.h - error.c - error.h - fputil.c - fputil.h - gamma.c - gamma.h - glue.c - glue.h - idtable.c - idtable.h - idtable_preds.c - idtable_preds.h - random.c - random.h - stuff.h - termpool.c - termpool.h - vector.c - vector.h - xmalloc.c - xmalloc.h - - - - - mp.h - mp_core.c - mp_core.h - mp_em_aux.c - mp_em_aux.h - mp_em_ml.c - mp_em_ml.h - mp_em_preds.c - mp_em_preds.h - mp_em_vb.c - mp_em_vb.h - mp_flags.c - mp_flags.h - mp_preds.c - mp_preds.h - mp_sw.c - mp_sw.h - - - em.h - em_aux.c - em_aux.h - em_aux_ml.c - em_aux_ml.h - em_aux_vb.c - em_aux_vb.h - em_ml.c - em_ml.h - em_preds.c - em_preds.h - em_vb.c - em_vb.h - flags.c - flags.h - graph.c - graph.h - graph_aux.c - graph_aux.h - hindsight.c - hindsight.h - up.h - util.c - util.h - viterbi.c - viterbi.h - - - - - - - - - - - - - - - - - - - - - - - - - - - prosqlite.c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - yap.i - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pl2pl.c - pl2py.c - py2pl.c - py4yap.h - pybips.c - pyload.c - pypreds.c - python.c - - - - - - - - - - - - - raptor_config.h - raptor_yap.c - xml2_yap.c - - - - - - - - - - - rconfig.h - real.c - real.h - - - - - - - - Alg.h - BasicHeap.h - BoxedVec.h - Heap.h - Map.h - Queue.h - Solver.C - Solver.h - SolverTypes.h - Sort.h - Vec.h - pl-minisat.C - - - - - - - - - - - - - - - - python.i - yap.i - - - - b+tree.c - b+tree.h - b+tree_private.h - b+tree_udi.c - b+tree_udi.h - - - - - rtree.c - rtree.h - rtree_private.h - rtree_udi.c - rtree_udi.h - - - uthash.h - uthash_udi.c - uthash_udi.h - uthash_udi_private.h - - judy.c - udi_common.h - utarray.h - uthash.h - - - - - - - - - - - - - lbfgs.h - - - arithmetic_ansi.h - arithmetic_sse_double.h - arithmetic_sse_float.h - lbfgs.c - - - yap_lbfgs.c - - - - - - - - - - - - - - - - - - - common.h - complete.c - console.c - console.h - console_i.h - edit.c - history.c - history.h - menu.c - menu.h - registry.c - - - - - - - - - - - - - - - bench.c - icu.c - unistring.c - util.c - util.h - - - - - - - - - case.c - charwidth.c - graphemetest.c - iterate.c - normtest.c - printproperty.c - tests.h - valid.c - - utf8proc.c - utf8proc.h - utf8proc_data.c - - - - - - foreigns.c - - - GitSHA1.c - YapConfig.h - YapTermConfig.h - config.h - cudd_config.h - dlocals.h - - - Makefile - - - - localhost - 2 - - - - . - ${AUTO_FOLDER} - - ${AUTO_FOLDER} - - ${MAKE} ${ITEM_NAME}.o - ${AUTO_COMPILE} - - ${AUTO_COMPILE} - - - - - - - - - - - - - - - gdb - - - - "${OUTPUT_PATH}" - - "${OUTPUT_PATH}" - . - false - 0 - 0 - - - - - - diff --git a/nbproject/private/cpp_standard_headers_indexer.cpp b/nbproject/private/cpp_standard_headers_indexer.cpp deleted file mode 100644 index 04f6fa660..000000000 --- a/nbproject/private/cpp_standard_headers_indexer.cpp +++ /dev/null @@ -1,135 +0,0 @@ -/* - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright (c) 2016 Oracle and/or its affiliates. All rights reserved. - * - * Oracle and Java are registered trademarks of Oracle and/or its affiliates. - * Other names may be trademarks of their respective owners. - * - * The contents of this file are subject to the terms of either the GNU - * General Public License Version 2 only ("GPL") or the Common - * Development and Distribution License("CDDL") (collectively, the - * "License"). You may not use this file except in compliance with the - * License. You can obtain a copy of the License at - * http://www.netbeans.org/cddl-gplv2.html - * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the - * specific language governing permissions and limitations under the - * License. When distributing the software, include this License Header - * Notice in each file and include the License file at - * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the GPL Version 2 section of the License file that - * accompanied this code. If applicable, add the following below the - * License Header, with the fields enclosed by brackets [] replaced by - * your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * If you wish your version of this file to be governed by only the CDDL - * or only the GPL Version 2, indicate your decision by adding - * "[Contributor] elects to include this software in this distribution - * under the [CDDL or GPL Version 2] license." If you do not indicate a - * single choice of license, a recipient has the option to distribute - * your version of this file under either the CDDL, the GPL Version 2 or - * to extend the choice of license to its licensees as provided above. - * However, if you add GPL Version 2 code and therefore, elected the GPL - * Version 2 license, then the option applies only if the new code is - * made subject to such option by the copyright holder. - * - * Contributor(s): - */ - -// List of standard headers was taken in http://en.cppreference.com/w/cpp/header - -#include // General purpose utilities: program control, dynamic memory allocation, random numbers, sort and search -#include // Functions and macro constants for signal management -#include // Macro (and function) that saves (and jumps) to an execution context -#include // Handling of variable length argument lists -#include // Runtime type information utilities -#include // std::bitset class template -#include // Function objects, designed for use with the standard algorithms -#include // Various utility components -#include // C-style time/date utilites -#include // typedefs for types such as size_t, NULL and others -#include // Low-level memory management utilities -#include // Higher level memory management utilities -#include // limits of integral types -#include // limits of float types -#include // standardized way to query properties of arithmetic types -#include // Exception handling utilities -#include // Standard exception objects -#include // Conditionally compiled macro that compares its argument to zero -#include // Macro containing the last error number -#include // functions to determine the type contained in character data -#include // functions for determining the type of wide character data -#include // various narrow character string handling functions -#include // various wide and multibyte string handling functions -#include // std::basic_string class template -#include // std::vector container -#include // std::deque container -#include // std::list container -#include // std::set and std::multiset associative containers -#include // std::map and std::multimap associative containers -#include // std::stack container adaptor -#include // std::queue and std::priority_queue container adaptors -#include // Algorithms that operate on containers -#include // Container iterators -#include // Common mathematics functions -#include // Complex number type -#include // Class for representing and manipulating arrays of values -#include // Numeric operations on values in containers -#include // forward declarations of all classes in the input/output library -#include // std::ios_base class, std::basic_ios class template and several typedefs -#include // std::basic_istream class template and several typedefs -#include // std::basic_ostream, std::basic_iostream class templates and several typedefs -#include // several standard stream objects -#include // std::basic_fstream, std::basic_ifstream, std::basic_ofstream class templates and several typedefs -#include // std::basic_stringstream, std::basic_istringstream, std::basic_ostringstream class templates and several typedefs -#include // std::strstream, std::istrstream, std::ostrstream(deprecated) -#include // Helper functions to control the format or input and output -#include // std::basic_streambuf class template -#include // C-style input-output functions -#include // Localization utilities -#include // C localization utilities -#include // empty header. The macros that appear in iso646.h in C are keywords in C++ -#if __cplusplus >= 201103L -#include // (since C++11) std::type_index -#include // (since C++11) Compile-time type information -#include // (since C++11) C++ time utilites -#include // (since C++11) std::initializer_list class template -#include // (since C++11) std::tuple class template -#include // (since C++11) Nested allocator class -#include // (since C++11) fixed-size types and limits of other types -#include // (since C++11) formatting macros , intmax_t and uintmax_t math and conversions -#include // (since C++11) defines std::error_code, a platform-dependent error code -#include // (since C++11) C-style Unicode character conversion functions -#include // (since C++11) std::array container -#include // (since C++11) std::forward_list container -#include // (since C++11) std::unordered_set and std::unordered_multiset unordered associative containers -#include // (since C++11) std::unordered_map and std::unordered_multimap unordered associative containers -#include // (since C++11) Random number generators and distributions -#include // (since C++11) Compile-time rational arithmetic -#include // (since C++11) Floating-point environment access functions -#include // (since C++11) Unicode conversion facilities -#include // (since C++11) Classes, algorithms and iterators to support regular expression processing -#include // (since C++11) Atomic operations library -#include // (since C++11)(deprecated in C++17) simply includes the header -#include // (since C++11)(deprecated in C++17) simply includes the headers (until C++17) (since C++17) and : the overloads equivalent to the contents of the C header tgmath.h are already provided by those headers -#include // (since C++11)(deprecated in C++17) defines one compatibility macro constant -#include // (since C++11)(deprecated in C++17) defines one compatibility macro constant -#include // (since C++11) std::thread class and supporting functions -#include // (since C++11) mutual exclusion primitives -#include // (since C++11) primitives for asynchronous computations -#include // (since C++11) thread waiting conditions -#endif -#if __cplusplus >= 201300L -#include // (since C++14) shared mutual exclusion primitives -#endif -#if __cplusplus >= 201500L -#include // (since C++17) std::any class template -#include // (since C++17) std::optional class template -#include // (since C++17) std::variant class template -#include // (since C++17) Polymorphic allocators and memory resources -#include // (since C++17) std::basic_string_view class template -#include // (since C++17) Predefined execution policies for parallel versions of the algorithms -#include // (since C++17) std::path class and supporting functions -#endif diff --git a/nbproject/private/launcher.properties b/nbproject/private/launcher.properties deleted file mode 100644 index 3edc2d897..000000000 --- a/nbproject/private/launcher.properties +++ /dev/null @@ -1,42 +0,0 @@ -# Launchers File syntax: -# -# [Must-have property line] -# launcher1.runCommand= -# [Optional extra properties] -# launcher1.displayName= -# launcher1.hide= -# launcher1.buildCommand= -# launcher1.runDir= -# launcher1.runInOwnTab= -# launcher1.symbolFiles= -# launcher1.env.= -# (If this value is quoted with ` it is handled as a native command which execution result will become the value) -# [Common launcher properties] -# common.runDir= -# (This value is overwritten by a launcher specific runDir value if the latter exists) -# common.env.= -# (Environment variables from common launcher are merged with launcher specific variables) -# common.symbolFiles= -# (This value is overwritten by a launcher specific symbolFiles value if the latter exists) -# -# In runDir, symbolFiles and env fields you can use these macroses: -# ${PROJECT_DIR} - project directory absolute path -# ${OUTPUT_PATH} - linker output path (relative to project directory path) -# ${OUTPUT_BASENAME}- linker output filename -# ${TESTDIR} - test files directory (relative to project directory path) -# ${OBJECTDIR} - object files directory (relative to project directory path) -# ${CND_DISTDIR} - distribution directory (relative to project directory path) -# ${CND_BUILDDIR} - build directory (relative to project directory path) -# ${CND_PLATFORM} - platform name -# ${CND_CONF} - configuration name -# ${CND_DLIB_EXT} - dynamic library extension -# -# All the project launchers must be listed in the file! -# -# launcher1.runCommand=... -# launcher2.runCommand=... -# ... -# common.runDir=... -# common.env.KEY=VALUE - -# launcher1.runCommand= \ No newline at end of file diff --git a/nbproject/private/private.xml b/nbproject/private/private.xml deleted file mode 100644 index 4f3fdc626..000000000 --- a/nbproject/private/private.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - true - - - 0 - 0 - - diff --git a/nbproject/project.xml b/nbproject/project.xml deleted file mode 100644 index 2af04720a..000000000 --- a/nbproject/project.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - org.netbeans.modules.cnd.makeproject - - - yap-6.3 - c,i - C,cc,cpp,cxx - h,hpp - UTF-8 - - - . - - - - Default - 0 - - - - false - - - - diff --git a/packages/python/CMakeLists.txt b/packages/python/CMakeLists.txt index 407b46c5f..177109efb 100644 --- a/packages/python/CMakeLists.txt +++ b/packages/python/CMakeLists.txt @@ -25,7 +25,7 @@ SOVERSION ${YAP_MAJOR_VERSION}.${YAP_MINOR_VERSION} ) # arithmetic hassle. -target_link_libraries(Py4YAP YAPPython libYap ${PYTHON_LIBRARIES}) +target_link_libraries(Py4YAP libYap ${PYTHON_LIBRARIES}) install(TARGETS Py4YAP @@ -37,7 +37,7 @@ install(TARGETS Py4YAP endif() -target_link_libraries(YAPPython libYap) +target_link_libraries(YAPPython Py4YAP libYap) # arithmetic hassle. set_property(TARGET YAPPython PROPERTY CXX_STANDARD_REQUIRED ON) diff --git a/packages/python/swig/CMakeLists.txt b/packages/python/swig/CMakeLists.txt index c844c5990..1bfdfcccc 100644 --- a/packages/python/swig/CMakeLists.txt +++ b/packages/python/swig/CMakeLists.txt @@ -14,11 +14,12 @@ SET_SOURCE_FILES_PROPERTIES(../../swig/yap.i PROPERTIES SWIG_FLAGS "-O;-py3") SET_SOURCE_FILES_PROPERTIES(../../swiyap.i PROPERTIES SWIG_MODULE_NAME yap4py.yap) #SET_SOURCE_FILES_PROPERTIES(../../swi/yap.i PROPERTIES OUTPUT_NAME yap) +file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/yap4py) set(YAP4PY_PL prolog/jupyter.yap prolog/yapi.yap) set(YAP4PY_PY yap4py/__init__.py yap4py/__main__.py yap4py/yapi.py) -configure_file("setup.py.in" ${CMAKE_CURRENT_BINARY_DIR}/setup.py) +configure_file("setup.py.in" setup.py) configure_file("MANIFEST.in" ${CMAKE_CURRENT_BINARY_DIR}/MANIFEST.in) configure_file("YAP4PY.md" README.md) @@ -42,10 +43,6 @@ INCLUDE_DIRECTORIES(${PYTHON_INCLUDE_PATH} ${CMAKE_CURRENT_BINARY_DIR}/yap4py/i # LIBRARY DESTINATION ${PYTHON_MODULE_PATH} # ) -if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/yap4py) - file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/yap4py) -endif() - if (CONDA) set(bdist bdist_conda) else() diff --git a/packages/python/yap_kernel/CMakeLists.txt b/packages/python/yap_kernel/CMakeLists.txt index 17a2d6344..ef966f337 100644 --- a/packages/python/yap_kernel/CMakeLists.txt +++ b/packages/python/yap_kernel/CMakeLists.txt @@ -63,6 +63,7 @@ add_custom_target( YAPKernel ALL COMMAND ${PYTHON_EXECUTABLE} ${SETUP_PY} build sdist bdist WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + DEPENDS YAP4PY ) install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install --ignore-installed --no-deps . diff --git a/packages/python/yap_kernel/yap_kernel.egg-info/PKG-INFO b/packages/python/yap_kernel/yap_kernel.egg-info/PKG-INFO deleted file mode 100644 index 8f1cf08ff..000000000 --- a/packages/python/yap_kernel/yap_kernel.egg-info/PKG-INFO +++ /dev/null @@ -1,21 +0,0 @@ -Metadata-Version: 1.1 -Name: yap-kernel -Version: 6.3.5 -Summary: YAP Kernel for Jupyter -Home-page: http://ipython.org -Author: YAP Development Team -Author-email: YAP-dev@scipy.org -License: BSD -Description-Content-Type: UNKNOWN -Description: UNKNOWN -Keywords: Interactive,Interpreter,Shell,Web -Platform: Linux -Platform: Mac OS X -Platform: Windows -Classifier: Intended Audience :: Developers -Classifier: Intended Audience :: System Administrators -Classifier: Intended Audience :: Science/Research -Classifier: License :: OSI Approved :: BSD License -Classifier: Programming Language :: Prolog -Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 3 diff --git a/packages/python/yap_kernel/yap_kernel.egg-info/SOURCES.txt b/packages/python/yap_kernel/yap_kernel.egg-info/SOURCES.txt deleted file mode 100644 index a7647ab96..000000000 --- a/packages/python/yap_kernel/yap_kernel.egg-info/SOURCES.txt +++ /dev/null @@ -1,82 +0,0 @@ -setup.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel_launcher.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/core/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/core/yap_kernel/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/core/yap_kernel/getipython.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/display.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/shellapp.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/core/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/core/getipython.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/core/interactiveshell.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/core/modulefind.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/core/oinspect.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/core/release.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/core/shellapp.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_ipython/prolog/jupyter.yap -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/__main__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/_version.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/codeutil.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/connect.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/datapub.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/displayhook.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/embed.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/eventloops.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/formatters.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/heartbeat.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inputtransformer.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/interactiveshell.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/iostream.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/jsonutil.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/kernelapp.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/kernelbase.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/kernelspec.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/log.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/parentpoller.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/pickleutil.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/serialize.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/yapkernel.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/zmqshell.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel.egg-info/PKG-INFO -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel.egg-info/SOURCES.txt -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel.egg-info/dependency_links.txt -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel.egg-info/requires.txt -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel.egg-info/top_level.txt -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/comm/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/comm/comm.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/comm/manager.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/gui/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/gui/gtk3embed.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/gui/gtkembed.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/blocking.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/channels.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/client.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/constants.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/ipkernel.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/manager.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/socket.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/tests/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/tests/test_kernel.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/inprocess/tests/test_kernelmanager.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/pylab/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/pylab/backend_inline.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/pylab/config.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/resources/kernel.js -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/resources/logo-32x32.png -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/resources/logo-64x64.png -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/resources/prolog.js -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/__init__.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_connect.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_embed_kernel.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_io.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_jsonutil.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_kernel.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_kernelspec.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_message_spec.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_pickleutil.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_serialize.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_start_kernel.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/test_zmq_shell.py -/home/vsc/github/yap-6.3/packages/python/yap_kernel/yap_kernel/tests/utils.py \ No newline at end of file diff --git a/packages/python/yap_kernel/yap_kernel.egg-info/dependency_links.txt b/packages/python/yap_kernel/yap_kernel.egg-info/dependency_links.txt deleted file mode 100644 index 8b1378917..000000000 --- a/packages/python/yap_kernel/yap_kernel.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/packages/python/yap_kernel/yap_kernel.egg-info/requires.txt b/packages/python/yap_kernel/yap_kernel.egg-info/requires.txt deleted file mode 100644 index 95929088b..000000000 --- a/packages/python/yap_kernel/yap_kernel.egg-info/requires.txt +++ /dev/null @@ -1,7 +0,0 @@ - -[test] -nose_warnings_filters -nose-timer - -[test:python_version=="2.7"] -mock diff --git a/packages/python/yap_kernel/yap_kernel.egg-info/top_level.txt b/packages/python/yap_kernel/yap_kernel.egg-info/top_level.txt deleted file mode 100644 index 311940483..000000000 --- a/packages/python/yap_kernel/yap_kernel.egg-info/top_level.txt +++ /dev/null @@ -1,4 +0,0 @@ -core -yap_ipython -yap_kernel -yap_kernel_launcher diff --git a/pl/debug.yap b/pl/debug.yap index 0df501a83..5140fd7d0 100644 --- a/pl/debug.yap +++ b/pl/debug.yap @@ -972,7 +972,7 @@ be lost. get_code( debugger_input,NC), '$get_deb_depth_char_by_char'(NC,XI,XF). % reset when given garbage. -'$get_deb_depth_char_by_char'(C,_,10) :- skip(10). +'$get_deb_depth_char_by_char'(_C,_,10) :- skip(10). '$set_deb_depth'(D) :- yap_flag(debugger_print_options,L), diff --git a/rules.ninja b/rules.ninja deleted file mode 100644 index 3785744a6..000000000 --- a/rules.ninja +++ /dev/null @@ -1,578 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.7 - -# This file contains all the rules used to get the outputs files -# built from the input files. -# It is included in the main 'build.ninja'. - -# ============================================================================= -# Project: YAP -# Configuration: Debug -# ============================================================================= -# ============================================================================= - -############################################# -# Rule for running custom commands. - -rule CUSTOM_COMMAND - command = $COMMAND - description = $DESC - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__yap-bin - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C executable. - -rule C_EXECUTABLE_LINKER__yap-bin - command = $PRE_LINK && /usr/bin/clang $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C executable $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__libYap - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__libYap - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for creating library symlink. - -rule CMAKE_SYMLINK_LIBRARY - command = /usr/bin/cmake -E cmake_symlink_library $in $SONAME $out && $POST_BUILD - description = Creating library symlink $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__Py4YAP - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__Py4YAP - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__YAPPython - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__YAPPython - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__libYAPOs - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__libOPTYap - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__myddas - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__Yapsqlite3 - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__Yapsqlite3 - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__Yapmysql - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__Yapmysql - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__Yapodbc - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__Yapodbc - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__utf8proc - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__libswi - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__YAP.2b.2b - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared library. - -rule CXX_SHARED_LIBRARY_LINKER__YAP.2b.2b - command = $PRE_LINK && /usr/bin/clang++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__matrix - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__matrix - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__yap_random - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__yap_random - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__regexp - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__regexp - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__yap_rl - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__yap_rl - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__sys - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__sys - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__tries - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__tries - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__itries - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__itries - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__raptor - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__raptor - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__libxml2 - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__libxml2 - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__horus - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared library. - -rule CXX_SHARED_LIBRARY_LINKER__horus - command = $PRE_LINK && /usr/bin/clang++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__HorusCli - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building CXX object $out - - -############################################# -# Rule for linking CXX executable. - -rule CXX_EXECUTABLE_LINKER__HorusCli - command = $PRE_LINK && /usr/bin/clang++ $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX executable $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__gecode_yap - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared library. - -rule CXX_SHARED_LIBRARY_LINKER__gecode_yap - command = $PRE_LINK && /usr/bin/clang++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__real - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__real - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__jplYap - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__jplYap - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__minisat2 - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared library. - -rule CXX_SHARED_LIBRARY_LINKER__minisat2 - command = $PRE_LINK && /usr/bin/clang++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling C files. - -rule C_COMPILER__yap_mpi - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building C object $out - - -############################################# -# Rule for linking C shared library. - -rule C_SHARED_LIBRARY_LINKER__yap_mpi - command = $PRE_LINK && /usr/bin/clang -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking C shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER___Py2YAP - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $IN_ABS - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared module. - -rule CXX_MODULE_LIBRARY_LINKER___Py2YAP - command = $PRE_LINK && /usr/bin/clang++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared module $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for re-running cmake. - -rule RERUN_CMAKE - command = /usr/bin/cmake -H/home/vsc/github/yap-6.3 -B/home/vsc/github/yap-6.3 - description = Re-running CMake... - generator = 1 - - -############################################# -# Rule for cleaning all built files. - -rule CLEAN - command = /usr/bin/ninja -t clean - description = Cleaning all built files... - - -############################################# -# Rule for printing all primary targets available. - -rule HELP - command = /usr/bin/ninja -t targets - description = All primary targets available: - diff --git a/yap-6.3-new.kdev4 b/yap-6.3-new.kdev4 deleted file mode 100644 index 3ba97cdc5..000000000 --- a/yap-6.3-new.kdev4 +++ /dev/null @@ -1,4 +0,0 @@ -[Project] -CreatedFrom=yap-6.3-new -Manager=KDevCMakeManager -Name=yap-6.3-new diff --git a/yap-6.3.kdev4 b/yap-6.3.kdev4 deleted file mode 100644 index 603cc1d39..000000000 --- a/yap-6.3.kdev4 +++ /dev/null @@ -1,4 +0,0 @@ -[Project] -CreatedFrom=yap-6.3 -Manager=KDevCMakeManager -Name=yap-6.3