2
我正在使用來自第三方的非常舊的Fortran 77代碼(也非常bug)。我已經編譯
FFLAGS=-O0 -Wall -g -fbacktrace -pedantic -Wextra
我在運行時得到警告標題:
At line <number> of file <namefile>.f (unit=6, file='stdout')
Fortran runtime warning: Extension: $ descriptor
我想弄清楚是什麼意思。
舊的Fortran代碼很可能給許多** **警告,尤其是'-Wextra'和'-pedantic'。它們很可能包含a)非標準擴展,b)現在已經過時或甚至被刪除的功能。我不認爲這些選項對舊代碼非常有用。 –