Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29285 Discussions

compile + link in visual studio net program that needs imsl 5.0

dhalpern
Beginner
560 Views
Could someone tell me how does compile+link a fortran program that needs to be linked to the IMSL 5.0 libraries using intel fortran 8.0 inside visual studio net 2003?
Thanks.
David Halpern
0 Kudos
1 Reply
g_f_thomas
Beginner
560 Views
Here's what I did:

1. Create a console IVF project and using imslmp.f90 in the VNI examples/.../validate folder.
Add the line:
include 'link_f90_dll.h' after implicit none.
Put a pause before the end program statement to keep the console from closing within the IDE when the app has run.
2. From Tools/Options/Intel Fortran, add

C:Program FilesVNICTT5.0libintel32

and

C:Program FilesVNICTT5.0includeIntel32
C:Program FilesVNICTT5.0includeIntel32_s

to the Project Directories.

That's a start.

HTH,
Gerry T.
0 Kudos
Reply