How to supress warning for “Deleted feature: PAUSE statement” in gfortran?

浪子不回头ぞ 提交于 2020-01-11 11:06:14

问题


I googled it but i could not find the answer. How can I suppress this warning AND ONLY THIS:

Warning: Deleted feature: PAUSE statement at (1)

i know I can supress all the warning but I wanna suppress only this one. Or if not possible. suppress warning for delete features. thanks A.


回答1:


Compile with -std=legacy or -w (lowercase). Note that -w will suppress all warnings.



来源:https://stackoverflow.com/questions/16350426/how-to-supress-warning-for-deleted-feature-pause-statement-in-gfortran

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!