I have a fortran file with a lot of useful subroutines, and I want to make a Python interface to it using f2py.
The problem arises because some fortran subroutines call the FFT subroutine from the NAG library (named c06ebf). When imported into Python, it produces the 'undefined symbol: co6ebf' warning.
Is there other way to perform FFT within my Fortran subroutine and to be able to create Python interface from it using f2py?