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

LNK2019 error- in fortran code on visual studio

Rohit8199
Beginner
489 Views

I am new to Fortran, i am trying to use the dgeev function in my code but Linker 2019 error is showing what is my mistake, what can I do please suggest.

 

0 Kudos
1 Reply
mecej4
Honored Contributor III
470 Views

There are a number of different reasons for an "unresolved external symbol" error to occur, and your question can be answered better after you provide details of how you call DGEEV in your code, and which library you tell the linker to obtain that routine from.

The simplest guessed explanation is that you have a call to that routine in your Fortran source code, and did not specify that one or more of the Lapack or MKL libraries should be used by the linker.

0 Kudos
Reply