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

后端 未结 2 1959
温柔的废话
温柔的废话 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.

提交回复
热议问题