Home > Archive > Fortran > July 2004 > .il files
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Matthew Nobes 2004-07-08, 8:58 pm |
| Hello all,
I got the intel fortran 90 compilier up and working on my debian
system, but have one small snag. The optimization -fast (which
expands to -O3 -ipo -static) seems to produce a lot
of .il files in addition to .mod and .o files. I understand
from the documentation that they are storing information
used to optimize across multiple files.
My question is, is there any way to shove these in some directory so
I don't have them clutter up my working directory? The compilier
flag
-module
does this for the .mod files, but I can't find an equivalent one
for the .il files.
Thanks in advance
Matt
--
Matthew Nobes c/c Physics Dept.
Simon Fraser University
Burnaby, B.C., Canada
| |
| Steve Lionel 2004-07-09, 4:00 pm |
| On Fri, 9 Jul 2004 00:32:17 +0000 (UTC), Matthew Nobes <manobes@sfu.ca> wrote:
>I got the intel fortran 90 compilier up and working on my debian
>system, but have one small snag. The optimization -fast (which
>expands to -O3 -ipo -static) seems to produce a lot
>of .il files in addition to .mod and .o files. I understand
>from the documentation that they are storing information
>used to optimize across multiple files.
>
>My question is, is there any way to shove these in some directory so
>I don't have them clutter up my working directory?
You don't say which version of Intel Fortran you are using. Version 8.0 allows
the IL to be stored in the .obj files so that you can put them in libraries,
etc. For details, read the chapter on Interprocedural Optimization in Volume
II of the Intel Fortran User's Guide. The switch -ipo_obj will be of use
here, but please read the manual because there's more involved than just
adding the switch.
Steve Lionel
Software Products Division
Intel Corporation
Nashua, NH
User communities for Intel Software Development Products
http://softwareforums.intel.com/
Intel Fortran Support
http://developer.intel.com/software/products/support/
|
|
|
|
|