Browse Source

Disable GPU backends with static build on Linux.

pull/1817/head
XMRig 4 years ago
parent
commit
950b5fa75e
No known key found for this signature in database GPG Key ID: 446A53638BE94409
  1. 4
      CMakeLists.txt
  2. 4
      cmake/flags.cmake
  3. 6
      src/backend/cuda/cuda.cmake
  4. 6
      src/backend/opencl/opencl.cmake

4
CMakeLists.txt

@ -198,10 +198,6 @@ include_directories(src)
include_directories(src/3rdparty)
include_directories(${UV_INCLUDE_DIR})
if (BUILD_STATIC)
set(CMAKE_EXE_LINKER_FLAGS " -static")
endif()
if (WITH_DEBUG_LOG)
add_definitions(/DAPP_DEBUG)
endif()

4
cmake/flags.cmake

@ -45,6 +45,10 @@ if (CMAKE_CXX_COMPILER_ID MATCHES GNU)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libgcc -static-libstdc++")
endif()
if (BUILD_STATIC)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static")
endif()
add_definitions(/D_GNU_SOURCE)
if (${CMAKE_VERSION} VERSION_LESS "3.1.0")

6
src/backend/cuda/cuda.cmake

@ -1,3 +1,9 @@
if (BUILD_STATIC AND XMRIG_OS_LINUX AND WITH_CUDA)
message(WARNING "CUDA backend is not compatible with static build, use -DWITH_CUDA=OFF to suppress this warning")
set(WITH_CUDA OFF)
endif()
if (WITH_CUDA)
add_definitions(/DXMRIG_FEATURE_CUDA)

6
src/backend/opencl/opencl.cmake

@ -1,3 +1,9 @@
if (BUILD_STATIC AND XMRIG_OS_LINUX AND WITH_OPENCL)
message(WARNING "OpenCL backend is not compatible with static build, use -DWITH_OPENCL=OFF to suppress this warning")
set(WITH_OPENCL OFF)
endif()
if (WITH_OPENCL)
add_definitions(/DCL_TARGET_OPENCL_VERSION=200)
add_definitions(/DCL_USE_DEPRECATED_OPENCL_1_2_APIS)

Loading…
Cancel
Save