在构建 Python PyMQI 1.2 时,如何强制使用我的 GCC 编译器?
当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
setup.py build 命令具有以下两个选项,
使用它们来指定要使用的编译器。
The
setup.py build
command has the following two optionsUse those to specify the compiler which you want to use.