Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28546 Discussions

forrtl: severe (38): error during write, unit -1, file CONOUT$

carlchen
Beginner
241 Views

When using Optimus to call the software, this error is prompted, and the file is libifcoremd.dll. How should I modify it?  The error is 

> SINGLE WINDOW mode ...
forrtl: 拒绝访问。
forrtl: severe (38): error during write, unit -1, file CONOUT$
Image PC Routine Line Source
libifcoremd.dll 00007FFF7C14A335 Unknown Unknown Unknown
libifcoremd.dll 00007FFF7C1E8321 Unknown Unknown Unknown
libifcoremd.dll 00007FFF7C1E2E6E Unknown Unknown Unknown
concept_exe.win64 00007FF7419C33CB g1_setsinglewindo 985 g1_etc.f
concept_exe.win64 00007FF74320127A Unknown Unknown Unknown
concept_exe.win64 00007FF7431FBC72 Unknown Unknown Unknown
concept_exe.win64 00007FF744122531 Unknown Unknown Unknown
KERNEL32.DLL 00007FF8479E37E4 Unknown Unknown Unknown
ntdll.dll 00007FF84848CB81 Unknown Unknown Unknown

0 Kudos
2 Replies
andrew_4619
Honored Contributor III
191 Views

Is the file "g1_setsinglewindo 985 g1_etc.f" your file? This is where the error originates. You need to look at that you have a write statement that is in error. 

Ron_Green
Moderator
165 Views

if you add these options

/debug:full /traceback

 

you can get a more readable stack trace that will point you to the write or print statement that is the problem.  

Reply