当无法找到Python解释器时,构建LLVM cmake配置失败。据我所知,需要Python来运行LLVM测试。我对测试LLVM不感兴趣,我的配置中明确禁用了测试。在这种情况下是否可以强制cmake不要求Python?
答案 0 :(得分:1)
我会尝试将LLVM_INCLUDE_TESTS=NO
传递给cmake
命令:
LLVM_INCLUDE_TESTS:BOOL
Generate build targets for the LLVM unit tests. Defaults to ON. You can use this option to disable the generation of build targets for the LLVM unit tests.
请参阅LLVM文档:LLVM-specific variables。
答案 1 :(得分:-1)
目前无法构建不使用Python的LLVM。 LLVM配置使用llvm-build Python脚本生成一些其他文件。