1

我正在尝试使用 Python distutils 中的 ccomppiler 功能来编译和执行测试程序。到目前为止,我有:

from distutils import ccompiler
cc = ccompiler.new_compiler()
outfiles = cc.compile(['detect.c'])
cc.link_executable(outfiles, 'detect')
output = subprocess.check_output(['./detect']).decode('ascii')

这一切都很好。但是,与通过 setup.py "setup()" 运行 distutils 时不同的是,使用的是默认编译器gcc -pthread,而不是环境变量中的设置CC。我怎样才能让这个编译器使用设置CC

我尝试过但没有成功的事情:

  • cc.set_executable并且cc.set_executables,尽管我无法从文档中真正说出它们的作用或如何使用它们
  • 手动更改cc.compiler;没有效果
  • 往里看distutils.sysconfig;有很多方法可以获取配置变量,但无法设置任何东西!
4

0 回答 0