Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Fortran 77 への Fortran 95 の追加を gfortran に拒否させる方法はありますか?
フラグを使用してみました-std=legacyが、それは f77 プログラムから非推奨の警告を削除するだけのようです。f95 の拡張機能は引き続き正常に動作します。
-std=legacy
で固定形式を設定できます
gfortran -ffixed-form -ffixed-line-length-none [sourcefiles]
そして、これは実際に違いを生む可能性があります(これにより出力が変化するプログラムがここにあります!)。
少なくとも f95 機能のほとんどを無効にするオプションがあると確信しています。