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

Compiling with API commands

marksale
Beginner
1,187 Views
I am developing and application that creates and compiles fortran code. The current version uses the createprocess API call to call the df.exe command. Is there a published API call to compile fortran code from the compaq digital fortran (or other) compiler, so I don't have to use the createprocess call?
Thank
Mark
0 Kudos
2 Replies
james1
Beginner
1,187 Views
Is there a reason you want to avoid the method you described? I suppose you could get to Visual Studio through automation but that would be more work.

James
0 Kudos
Steven_L_Intel1
Employee
1,187 Views
Ditto. I recommend the CreateProcess to run the DF command. It's the most straightforward way. You'll want to make sure that the Visual Fortran environment variables are set system-wide.

Steve
0 Kudos
Reply