Cmake 提示Intel SPMD Compiler (ISPC) not found ,我安装完ntel SPMD Compiler (ISPC)后应该怎么办
时间: 2023-03-31 14:03:40 浏览: 309
cmake ios终端下执行提示错误 iOS version not found, tested: [5.0;5.1;6.0;6.1;7.0;8.3]的解决方案
您可以尝试在CMakeLists.txt文件中添加以下行:
set(ISPC_EXECUTABLE "ispc")
或者在命令行中使用以下命令:
cmake -DISPC_EXECUTABLE=/path/to/ispc .
确保将“/path/to/ispc”替换为您安装ISPC的实际路径。
阅读全文