Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 642
Millemila Avatar asked Sep 06 '25 17:09

Millemila


1 Answers

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

like image 73
cup Avatar answered Sep 10 '25 13:09

cup