使用整个LibTomCrypt源代码,我使用Visual Studio 2010构建了一个库文件,该文件可以毫无问题地编译。但是,在创建链接TomCrypt库的简单测试控制台应用程序时,我收到以下代码的链接器错误:
测试代码 :
#include <stdio.h>
#include <tomcrypt.h>
int main()
{
int Cipher;
register_cipher( &aes_desc );
Cipher = find_cipher( "aes" );
if( Cipher != CRYPT_OK )
return 0;
printf( "Cipher name: %s\n", cipher_descriptor[ Cipher ].name );
unregister_cipher( &aes_desc );
return 0;
}
链接器错误 :
error LNK1120: 1 unresolved externals
error LNK2001: unresolved external symbol _aes_desc
有趣的是, debug 库构建与测试代码完美配合。 tomcrypt.lib 的发布版本似乎缺少某些符号。
现在我并不擅长构建和使用库文件,但我想知道,是否有一些特定的编译器标志或注意事项我可以在发布模式下构建库并在我的测试程序中正确链接?可能是通过一些编译器优化从库的发布版本中缺少LibTomCrypt代码中定义的静态aes_desc结构吗?
我希望有人可以为我和其他遇到此问题的人提供一些见解。
答案 0 :(得分:2)
我今天刚遇到相关问题。 visual studio的项目配置包括构建aes.c的自定义步骤,但仅涵盖Debug构建。一旦我为Release版本制定了类似的规定,一切都很好。
在文本编辑器中打开Visual Studio 2010项目,并将自定义构建步骤替换为以下内容。这也将修复Debug构建的一些警告:
<CustomBuild Include="src\ciphers\aes\aes.c">
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">cl /nologo /MTd /W3 /Gm /EHsc /ZI /Od /I "src\headers" /I "..\libtommath" /D "_DEBUG" /D "LTM_DESC" /D "WIN32" /D "_MBCS" /D "_LIB" /D "LTC_SOURCE" /D "USE_LTM" /Fp"Debug/libtomcrypt.pch" /Fo"Debug/" /Fd"Debug/" /FD /RTC1 /c %(FullPath)
cl /nologo /DENCRYPT_ONLY /MTd /W3 /Gm /EHsc /ZI /Od /I "src\headers" /I "..\libtommath" /D "_DEBUG" /D "LTM_DESC" /D "WIN32" /D "_MBCS" /D "_LIB" /D "LTC_SOURCE" /D "USE_LTM" /Fp"Debug/libtomcrypt.pch" /Fo"Debug/aes_enc.obj" /Fd"Debug/" /FD /RTC1 /c %(FullPath)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Debug/aes.obj;Debug/aes_enc.obj;%(Outputs)</Outputs>
</CustomBuild>
<CustomBuild Include="src\ciphers\aes\aes.c">
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">cl /nologo /MT /W3 /O2 /I "src\headers" /I "..\libtommath" /D "NDEBUG" /D "LTM_DESC" /D "WIN32" /D "_MBCS" /D "_LIB" /D "LTC_SOURCE" /D "USE_LTM" /Fp"Release/libtomcrypt.pch" /Fo"Release/" /Fd"Release/" /FD /c %(FullPath)
cl /nologo /DENCRYPT_ONLY /MT /W3 /O2 /I "src\headers" /I "..\libtommath" /D "NDEBUG" /D "LTM_DESC" /D "WIN32" /D "_MBCS" /D "_LIB" /D "LTC_SOURCE" /D "USE_LTM" /Fp"Release/libtomcrypt.pch" /Fo"Release/aes_enc.obj" /Fd"Release/" /FD /c %(FullPath)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Release/aes.obj;Release/aes_enc.obj;%(Outputs)</Outputs>
</CustomBuild>