我可以在没有Python解释器的情况下构建LLVM吗?

时间:2017-03-07 21:29:14

标签: build cmake llvm

当无法找到Python解释器时,构建LLVM cmake配置失败。据我所知,需要Python来运行LLVM测试。我对测试LLVM不感兴趣,我的配置中明确禁用了测试。在这种情况下是否可以强制cmake不要求Python?

2 个答案:

答案 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脚本生成一些其他文件。