Skip to content

Commit

Permalink
dill 2024-03-12 (ebc98c4d) (ornladios#4091)
Browse files Browse the repository at this point in the history
Upstream Shortlog
  • Loading branch information
eisenhauer authored and vicentebolea committed Apr 3, 2024
1 parent a7fe261 commit f857343
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions thirdparty/dill/dill/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,17 @@ set(ARM_HARD_FLOAT ${HARDFP_AVAILABLE})

option(DILL_IGNORE_NATIVE "Build to do emulation, regardless of architecture"
OFF)
option(DILL_NATIVE_ONLY "Build to native code only" ON)
if(DILL_IGNORE_NATIVE)
set(NATIVE_CG FALSE)
set(NATIVE_ARCH UNSUPPORTED)
endif()
set(LIBFFI_INTERNAL OFF)
find_package(LibFFI)
if (DILL_NATIVE_ONLY)
set(LIBFFI_FOUND FALSE)
else()
find_package(LibFFI)
endif()
if(LIBFFI_FOUND)
message(STATUS "Enabling emulation")
set(EMULATION_POSSIBLE TRUE)
Expand Down Expand Up @@ -531,8 +536,10 @@ if(NOT DILL_QUIET)
message(STATUS "CMAKE_BUILD_TYPE = ${CMAKE_BUILD_TYPE}" )
message(STATUS "DILL_ENABLE_DISASSEMBLY = ${DILL_ENABLE_DISASSEMBLY}" )
message(STATUS "DILL_MULTI_TARGET = ${DILL_MULTI_TARGET}" )
message(STATUS "BUILD_SHARED_LIBS = ${BUILD_SHARED_LIBS}" )
message(STATUS "DILL_IGNORE_NATIVE = ${DILL_IGNORE_NATIVE}" )
message(STATUS "DILL_NATIVE_ONLY = ${DILL_NATIVE_ONLY}" )
message(STATUS "BUILD_TESTING = ${BUILD_TESTING}" )
message(STATUS "BUILD_SHARED_LIBS = ${BUILD_SHARED_LIBS}" )
message(STATUS "Change a value with: cmake -D<Variable>=<Value>" )
message(STATUS "-----------------------------------------------------------------------------")
endif()

0 comments on commit f857343

Please sign in to comment.