Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IVF Link error LNK1104

Status
Not open for further replies.

Cbemis

Programmer
Oct 7, 2011
1
US
I am building a FORTRAN project with Intel Visual Fortan. The compile is fine but the link stops with this message: error LNK1104 can't find dfor.lib. How do I over come this error?
 
It really depends on how you are doing your development. Some people prefer Visual studio, others prefer the command line.

If you are using Visual Studio, select your project properties. Expand Linker, Select Input. In the dialog, under Additional Dependencies, add dfor.lib. Click OK to close the dialog, rebuild and that's it. Remember to do both Debug and Release.

If you are running it from the command line, just add dfor.lib to the link line.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top