VS2008下构建ICU样本的问题

发布于 2024-11-05 21:26:50 字数 340 浏览 0 评论 0原文

我尝试使用 Visual Studio 构建 ICU4C 示例“uncv” 2008年没有成功

  1. 我添加了头目录(配置属性> C/C++>常规>附加包含目录)
  2. 引用了lib文件夹(配置属性>链接器>附加库目录)
  3. 我添加了bin文件夹PATH环境变量

构建后,会显示“未解析的外部符号...在函数中引用...”的错误。 我错过了什么吗?

I tried to build ICU4C sample "uncv" using visual studio 2008 without success

  1. I added the header directories (Configuration Properties > C/C++ > General > Additional Include Directories)
  2. referenced the lib folder (Configuration Properties > Linker > Additional Library Directories)
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦途 2024-11-12 21:26:50

您确实错过了一步——您需要实际链接到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文