I am running some codes which were developed in Compaq Fortran, now in Intel Visual Compiler 11.1. In the original code, it use DFLIB, so I change it to IFQWIN accordingly. But I got lots of errors complainning unresolved external symbol_wetviewport, setcolor, rectangle, floodfill, ect. I would guess those functions should be included in IFQWIN already, but why I still got the error messages? And the funny thing is, under the debug mode, the program complied normally, and the error messages only occurred under the relased mode. Anybody can help? Much appreciated...
链接已复制
4 回复数
Maybe you forgot to change the runtime library option in the release configuration?
(right click on the project name, select "Properties", then on the left "Configuration properties" > "Fortran" > "Libraries", then on the right change "Runtime Library" to "QuickWin".)
(right click on the project name, select "Properties", then on the left "Configuration properties" > "Fortran" > "Libraries", then on the right change "Runtime Library" to "QuickWin".)
http://software.intel.com/en-us/articles/migrating-from-compaq-visual-fortran/
In DFLIB, symbols have been relocated into one of three new modules: IFCORE, IFPORT and IFQWIN. I think I am using the right one.
In DFLIB, symbols have been relocated into one of three new modules: IFCORE, IFPORT and IFQWIN. I think I am using the right one.
