在构建 Python PyMQI 1.2 时,如何强制使用我的 GCC 编译器?

发布于 2024-10-24 22:26:14 字数 588 浏览 2 评论 0原文

当我在 AIX 6.1 上运行以下命令来构建 PyMQI 1.2 时:

python setup.py build server

出现以下错误:

Building PyMQI server 32bits

running build

running build_py

running build_extbuilding

'pymqe' extension

cc_r -qlanglvl=extc89 -DNDEBUG -O3 -qstrict -qtune=pwr4 -qarch=pwr4 -qcpluscmt -D_LARGE_FILES -DPYQMI_SERVERBUILD=1 -I/usr/mqm/inc -I/opt/freeware/include/python2.6 -c pymqe.c -o build/temp.aix-6.1-2.6/pymqe .o 无法执行 cc_r: 没有这样的文件或目录

错误: 命令 'cc_r' 失败,退出状态 1

如何强制 Python 构建 scipt 使用我的 GCC 编译器而不是 cc_r ?

When I run the following command on AIX 6.1 to build PyMQI 1.2:

python setup.py build server

I get the following error:

Building PyMQI server 32bits

running build

running build_py

running build_ext

building 'pymqe' extension

cc_r -qlanglvl=extc89 -DNDEBUG -O3 -qstrict -qtune=pwr4 -qarch=pwr4 -qcpluscmt -D_LARGE_FILES -DPYQMI_SERVERBUILD=1 -I/usr/mqm/inc -I/opt/freeware/include/python2.6 -c pymqe.c -o build/temp.aix-6.1-2.6/pymqe.o
unable to execute cc_r: No such file or directory

error: command 'cc_r' failed with exit status 1

How do I force the Python build scipt to use my GCC compiler instead of cc_r ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

段念尘 2024-10-31 22:26:14

setup.py build 命令具有以下两个选项,

  --compiler (-c)    specify the compiler type
  --help-compiler    list available compilers

使用它们来指定要使用的编译器。

The setup.py build command has the following two options

  --compiler (-c)    specify the compiler type
  --help-compiler    list available compilers

Use those to specify the compiler which you want to use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文