ABSOFT_FORTRAM 실행시 경고메시지 "Olimit was exceeded on function" 해결하기

blue18068의 이미지

Begin scan
amakedepend "@/host/Release/mkdep_F95"
Scan completed
Begin build
f95 -c -nowdir -m64 -O2 -o "./Release/DCS.o" "DCS.f95"

"DCS.f95": Warning: Olimit was exceeded on function MAIN__; will not perform function-scope optimization.
To still perform function-scope optimization, use -OPT:Olimit=0 (no limit) or -OPT:Olimit=16149

"DCS.f95": Warning: To override Olimit for all functions in file, use -OPT:Olimit=16149
(Compiler may run out of memory or run very slowly for large Olimit values)

f95 -m64 -O2 "./Release/DCS.o" "./Release/modulel.o" "./Release/global.o" -o "./DCS.e"
Build completed

ABSOFT_FORTRAM 에서 DCS.f95 이라는 약간 복잡한 프로그램을 실행하면 위와 같은 경고 메시지가 뜹니다.

해결책 좀 가르쳐 주세요^^!