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

后端 未结 1 1878
一个人的身影
一个人的身影 2021-01-22 17:03

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 supres

相关标签:
1条回答
  • 2021-01-22 17:55

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

    0 讨论(0)
提交回复
热议问题