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

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

提交回复
热议问题