gfortran debugging with gdb: w_powf.c: No such file or directory

后端 未结 2 1946
温柔的废话
温柔的废话 2021-01-26 11:55

I have a Fortran program I am debuging. I have a list of varables and one of the expected variables is almost double its expected value. So I compiled the program, with debug f

相关标签:
2条回答
  • 2021-01-26 12:12

    The error means that the source file w_powf.c is not available on your system. It's not related to your program apparently. You can safely ignore that error.

    Note that the lines you mention have the operator ** which I suppose is implemented in that file, so it's just telling you that there is no access to the source code of the implementation of that operator.

    0 讨论(0)
  • 2021-01-26 12:23

    ** is in Fortran exponential operator. Exponentiation is implemented in glibc w_powf.c. Gdb can't find this file in your sources. This is not an error, rather diagnostic.

    0 讨论(0)
提交回复
热议问题