我正在尝试编写一个程序,该程序将在执行无效操作时停止,无论它是如何使用 GFortran 编译的。使用 ifort 我可以做这样的事情:
use ieee_exceptions
....
logical :: halt
....
call ieee_get_halting_mode(IEEE_USUAL,halt)
call ieee_set_halting_mode(IEEE_USUAL,.True.)
....
! Something that may stop the program
....
call ieee_set_halting_mode(IEEE_USUAL,halt)
GFortran 是否有类似于 ifort 的模块ieee_exceptions
?或者更好的是,有没有办法在不知道程序将如何编译或将使用哪个编译器的情况下停止暂停模式?