| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # Check for 32bit system
- if(WIN32)
- if(NOT CMAKE_CL_64)
- message("***********************Compile on non 64-bit system now**********************")
- add_definitions(-DNON_64_PLATFORM)
- if(WITH_GPU)
- message(FATAL_ERROR "-DWITH_GPU=ON doesn't support on non 64-bit system now.")
- endif()
- if(ENABLE_PADDLE_BACKEND)
- message(FATAL_ERROR "-DENABLE_PADDLE_BACKEND=ON doesn't support on non 64-bit system now.")
- endif()
- if(ENABLE_POROS_BACKEND)
- message(FATAL_ERROR "-DENABLE_POROS_BACKEND=ON doesn't support on non 64-bit system now.")
- endif()
- endif()
- endif()
- if(IOS)
- if(ENABLE_ORT_BACKEND)
- message(FATAL_ERROR "Not support ONNXRuntime backend for IOS now. Please set ENABLE_ORT_BACKEND=OFF.")
- endif()
- if(ENABLE_PADDLE_BACKEND)
- message(FATAL_ERROR "Not support Paddle backend for IOS now. Please set ENABLE_PADDLE_BACKEND=OFF.")
- endif()
- if(ENABLE_OPENVINO_BACKEND)
- message(FATAL_ERROR "Not support OpenVINO backend for IOS now. Please set ENABLE_OPENVINO_BACKEND=OFF.")
- endif()
- if(ENABLE_TRT_BACKEND)
- message(FATAL_ERROR "Not support TensorRT backend for Android/IOS now. Please set ENABLE_TRT_BACKEND=OFF.")
- endif()
- endif()
- if(WITH_GPU)
- if(APPLE)
- message(FATAL_ERROR "Cannot enable GPU while compiling in Mac OSX.")
- elseif(IOS)
- message(FATAL_ERROR "Cannot enable GPU while compiling in IOS.")
- endif()
- endif()
- if(WITH_OPENCL)
- if(NOT ENABLE_LITE_BACKEND)
- message(FATAL_ERROR "Cannot enable OpenCL while compiling unless in Paddle Lite backend is enabled.")
- endif()
- endif()
|