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

intel array visualizer, visual c++ & debug

ducroset
Einsteiger
1.091Aufrufe
0 Kudos
1 Antworten
Intel_C_Intel
Mitarbeiter
1.091Aufrufe
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
Antworten