f2py-f90wrap错误`undefined symbol:__ test_mod_MOD_p`

时间:2018-01-26 11:13:17

标签: python fortran f2py

我正在尝试使用f90wrap包装一些Fortran,它是基于f2py构建的。 (我可以使用f2py,但我想扩展一些代码以使用派生类型)。

这是一个我试图包装的简单.f90测试代码:

module test_mod

   integer::p

end module

我已使用以下命令编译和包装:

gfortran -fPIC -c test.f90

f90wrap -m test test.f90

f2py-f90wrap -c -m _test f90wrap_*.f90

当我跑步时:

python test.py

在此test.py文件中生成:

import _test
import f90wrap.runtime
import logging

class Test_Mod(f90wrap.runtime.FortranModule):
    """
    Module test_mod


    Defined at test.f90 lines 1-3

    """
    @property
    def p(self):
        """
        Element p ftype=integer pytype=int


        Defined at test.f90 line 3

        """
        return _test.f90wrap_test_mod__get__p()

    @p.setter
    def p(self, p):
        _test.f90wrap_test_mod__set__p(p)

    def __str__(self):
        ret = ['<test_mod>{\n']
        ret.append('    p : ')
        ret.append(repr(self.p))
        ret.append('}')
        return ''.join(ret)

    _dt_array_initialisers = []


test_mod = Test_Mod()

我收到以下错误:

  File "test.py", line 1, in <module>
    import _test
ImportError: _test.cpython-35m-x86_64-linux-gnu.so: undefined symbol: __test_mod_MOD_p

通过f90-wrap repo挖掘并查看makefile中的某些测试,我在下面看到相同的进程.f90文件不会产生同样的问题:

module testextends_mod


PUBLIC

    ! -----------------------------------------------
    type Superclass
        ! IN: Ask subroutine to stop in the middle.
        integer :: stop_at = -1     ! -1 --> don't stop
    end type Superclass

    type, extends(Superclass) :: Subclass1
        integer :: nl
    end type

    type, extends(Superclass) :: Subclass2
        integer :: nl
    end type

end module

有谁能看到我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

以下作品:

git blame