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

error LNK2019: unresolved external symbol FAGLSTARTWATCH

Matthaios_Antoninis
541 Views
Hello,
I have a code designed with CVF and it uses Array Visualizer, I have download already Array Visualizer and I have set the paths for libraries and Includes. I have a module where we call all the graph - things, inside there is the call of the following subroutines :
call faglStartWatch(VDATA, status)
call faglShow(VDATA, status)
call faglName(VDATA, "Response at monitor node direction x", status)
and while I am trying to Link them (x64 platform) I receive :
error LNK2019: unresolved external symbol FAGLSTARTWATCH
error LNK2019: unresolved external symbol FAGLSHOW
error LNK2019: unresolved external symbol FAGLNAME
please give me some information how I can resolve these problems, maybe there are some other calls ...
Please find attached the module.
Thank you in advance.
PS I am usingIntel Visual Fortran Compiler XE 12.1.2.278 [Intel 64]
0 Kudos
2 Replies
mecej4
Honored Contributor III
541 Views
You have to specify that the link step should use the Array Visualizer library that contains the missing symbols. You specified where to find the library, but you may not have have asked which extra libraries should be searched.
0 Kudos
Steven_L_Intel1
Employee
541 Views
Intel AV has a modified API from that in CVF. You will need to study the Intel AV documentation to see what you need to change. I see that there is an avStartWatch, but don't know what is equivalent to faglShow and faglName.
0 Kudos
Reply