This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
I have a .lib file which built before by a older version compiler(version c2000_5.1.3).
Now I'm using a newer version compiler(version c2000_20.2.5.LTS). And when I try to link the .lib file, I got below error from linker.
unresolved symbol __memcpy_ff, first referenced in xxx.lib<xxx.obj>
unresolved symbol _memcpy, first referenced in yyy.obj
A linker option "--symbol_map=__memcpy_ff=_memcpy" can stop the complains of linker.
My questions are:
1. Is this a good solution?
2. Is there any better way to make compiler and linker forward compatible?
3. Is there a list of points of incompatibility between different compiler and linker versions?
Thank you.
1. Is this a good solution?
It would be better if you rebuilt that old library with a newer compiler. But if that is impractical, using --symbol_map is a reasonable solution.
3. Is there a list of points of incompatibility between different compiler and linker versions?
No. We try very hard to avoid such situations. But this one got past all our testing.
Thanks and regards,
-George
3. Is there a list of points of incompatibility between different compiler and linker versions?No. We try very hard to avoid such situations. But this one got past all our testing.
George,
Can I understand you like this way:
The compiler/linker was designed to be forward compatible, this "memcpy" issue should be an accident. There are currently no other known incompatibilities.
For a more complete statement regarding compatibility, please see the article Compiler Version Numbers and What They Mean. Search for the sub-part titled Compatibility Between Different Compiler Versions.
Thanks and regards,
-George