编辑设置以允许 gcc 编译中的参数不匹配
Edit setup to allow argument mismatch in gcc compilation
我正在尝试安装 this python package。不幸的是,由于等级不匹配,我 运行 陷入了编译错误。
已报告此软件包的错误 here。错误报告说“最实用的解决方案似乎是将编译器标志 -fallow-argument-mismatch 添加到设置脚本中。”
我不知道该怎么做。 setup.py 脚本只包含这个:
from numpy.distutils.core import setup
from numpy.distutils.core import Extension
import os
import glob
ext_modules = [ Extension('orthpol_light',
glob.glob(os.path.join('src','*.f'))) ]
setup(
name='orthpol_light',
version = "1.0.1",
license = "COPYING.LESSER",
description = "Light python wrapper for the ORTHPOL package",
long_description=open("README.rst").read(),
url="http://www.limitcycle.it",
author = "Daniele Bigoni",
author_email = "dabi@limitcycle.it",
ext_modules = ext_modules
)
我把旗子放在这里了吗?我真的不知道。导致错误的文件位于 src/r1mach.f
感谢帮助!
修复已在您 link 的 adapt-to-gcc10
分支 https://bazaar.launchpad.net/~catastropeia/pyorthpol/adapt-to-gcc10/revision/68
中实施
相关命令则变为
ext_modules = [ Extension('orthpol_light',
glob.glob(os.path.join('src','*.f')),
extra_f77_compile_args=['-fallow-argument-mismatch']) ]
我正在尝试安装 this python package。不幸的是,由于等级不匹配,我 运行 陷入了编译错误。
已报告此软件包的错误 here。错误报告说“最实用的解决方案似乎是将编译器标志 -fallow-argument-mismatch 添加到设置脚本中。”
我不知道该怎么做。 setup.py 脚本只包含这个:
from numpy.distutils.core import setup
from numpy.distutils.core import Extension
import os
import glob
ext_modules = [ Extension('orthpol_light',
glob.glob(os.path.join('src','*.f'))) ]
setup(
name='orthpol_light',
version = "1.0.1",
license = "COPYING.LESSER",
description = "Light python wrapper for the ORTHPOL package",
long_description=open("README.rst").read(),
url="http://www.limitcycle.it",
author = "Daniele Bigoni",
author_email = "dabi@limitcycle.it",
ext_modules = ext_modules
)
我把旗子放在这里了吗?我真的不知道。导致错误的文件位于 src/r1mach.f
感谢帮助!
修复已在您 link 的 adapt-to-gcc10
分支 https://bazaar.launchpad.net/~catastropeia/pyorthpol/adapt-to-gcc10/revision/68
相关命令则变为
ext_modules = [ Extension('orthpol_light',
glob.glob(os.path.join('src','*.f')),
extra_f77_compile_args=['-fallow-argument-mismatch']) ]