user87205
user87205

Reputation:

Fortran 90, Compiling program: Error messages

I'm trying to figure out these error messages:

Traceback: not available, compile with -ftrace=frame or -ftrace=full Fortran runtime error: Missing RECL parameter in OPEN statement

but I have no ideas what these messages means.... First of all, what is "-ftrace=frame or -ftrace=full" mean? Also, what is "RECL parameter" ?

Could anyone explain to me, please? That will help me a lot.

Please forgive my English, English is my second language.

Yuuka

Upvotes: 0

Views: 3865

Answers (1)

Charlie Martin
Charlie Martin

Reputation: 112366

What operating system and compiler?

In any case, what it's saying is that you've got an OPEN statement in the program that has parameters that make it require a RECL (record length) parameter and it doesn't have one.

The other part says it can't tell you where in the program it happened. if you add one of those flags, then recompile, you'll get more information.

It kind of looks like it could be the Intel compiler, in which case this man page may help.

Upvotes: 4

Related Questions