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

时间:2011-03-21 10:42:37

标签: python ibm-mq mq

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

python setup.py build server

我收到以下错误:

构建PyMQI服务器32位

运行构建

运行build_py

运行build_ext

建立'pymqe'扩展

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?

1 个答案:

答案 0 :(得分:1)

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

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

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