VS2008下构建ICU样本的问题
我尝试使用 Visual Studio 构建 ICU4C 示例“uncv” 2008年没有成功
- 我添加了头目录(配置属性> C/C++>常规>附加包含目录)
- 引用了lib文件夹(配置属性>链接器>附加库目录)
- 我添加了bin文件夹PATH环境变量
构建后,会显示“未解析的外部符号...在函数中引用...”的错误。 我错过了什么吗?
I tried to build ICU4C sample "uncv" using visual studio 2008 without success
- I added the header directories (Configuration Properties > C/C++ > General > Additional Include Directories)
- referenced the lib folder (Configuration Properties > Linker > Additional Library Directories)
- I added the bin folder the PATH environment variable
After building the errors of kind "unresolved external symbol ... referenced in function ..." is shown. Am i missing anything ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确实错过了一步——您需要实际链接到 ICU .lib 文件,而不是仅仅告诉链接器它们所在的位置。有关详细信息,请参阅.Lib 文件作为链接器输入信息。
You did indeed miss one step -- you need to actually link to the ICU .lib files rather than just tell the linker where they reside. See .Lib Files as Linker Input for more information.