jayhick wrote: |
---|
i hate linker errors!!!
|
Why?
There are only really a few linker errors:
1. "Undefined Identifier" error
2. "Multiple or Redefinition " error
3. Cannot find a particular library error.
You have mostly type 2 - "Redefinition" errors.
Most of those errors are saying that while linking
libcmt.lib library it came across a function
that it had already found in the
LIBCMTD.lib library.
Given that
libcmt.lib is the release library and
LIBCMTD.lib is the debug version of
the same library -You would link one OR the other depending on whether you
are making a Release or Debug build NOT both.
it looks like your project linker properties are incorrectly set.
Check your project linker settings.
This last error:
LINK : fatal error LNK1104: cannot open file 'atls.lib' is saying that it cannot find this library
to link it in.
Again Recheck your project linker settings (maybe you have not set the correct path or set it incorrectly)