"Steve Lionel" wrote in message news:k2vtn1...@mid.individual.net...
> On Windows, /exe is the option to use instead of /out. But in this
> example, all you need is:
> ifort hello.f90
> This will create a hello.exe; kernel32 is linked in by default.
I just put in kernel32.lib to create an mcve. The actual command line was
ifort cheby2.f90 chebyx.obj xygraph.obj /link Gdi32.lib Opengl32.lib
Glu32.lib User32.lib /out:cheby2.exe
In this context I think the /out command line parameter is read by link.exe,
not the Intel Fortran compiler.
>
> Perhaps you could spend a few minutes reading the documentation on how to
> use the compiler from the command line
I have found that I could get a lot of info via
ifort hello.f90 /#
BTW, the first crash was my fault, not ifort's. For some reason the
gfortran
executable didn't experience a problem due to deferencing an
unallocated array. The current crash is weird in that ifort gets hung in
a loop whereas gfortran doesn't. Hopefully I can figure out what's
going on -- it happens in a rather murky part of the code.