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

intel array visualizer, visual c++ & debug

ducroset
Beginner
1,010 Views
0 Kudos
1 Reply
Intel_C_Intel
Employee
1,010 Views
AvCRTd.lib was compiled using the VS.Net C-runtime libraries and debug info which aren't compatible with the ones used by Visual C++ v6.0.

If you wish to use Visual C++ v6.0 you can edit the file AvCRT.h and change the line:
#pragma comment(lib, "AvCRTd.lib")

to:
#pragma comment(lib, "AvCRT.lib")

You'll still get the defaultlib warning, but otherwise it should be ok.

John
0 Kudos
Reply