A pre-release version of IML 1.2 beta had this problem. We believe we
have fixed this problem. However, we'd like to know if this problem
happens again.
IML does not use any functions defined in libm.lib. The linker is
somehow confused and tries to link libm.lib. Try linking the
application with the /NODEFAULTLIB option (in the case of
MS Visual C++ link.exe). You probably have to explicitly specify which
library files to link.
Your linker is probably linking libcd.lib (debug version of libc.lib)
after libc.lib is linked. For better debugging, you should link
libcd.lib before libc.lib for obvious reasons. Try linking the
application with the /FORCE option (in the case of MS Visual C++ link.exe)
if the problem persists.