swprintf 和 vswprintf 未声明?

发布于 2024-09-13 09:56:30 字数 390 浏览 7 评论 0原文

我尝试使用 MinGW 在 Windows 上编译 Botan,但在编译过程中收到以下错误:

c:\qt\2010.04\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:159: error:
'::swprintf' has not been declared
c:\qt\2010.04\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:166: error:
'::vswprintf' has not been declared

Why are swprintf and vswprintf not statements, and how can I fix this?

I am trying to compile Botan on Windows with MinGW, and am receiving the following error during compilation:

c:\qt\2010.04\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:159: error:
'::swprintf' has not been declared
c:\qt\2010.04\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:166: error:
'::vswprintf' has not been declared

Why are swprintf and vswprintf not declared, and how can I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

巡山小妖精 2024-09-20 09:56:30

放入

#undef __STRICT_ANSI__ 

尝试在包含 stdio.h 之前

Try putting in

#undef __STRICT_ANSI__ 

before including stdio.h

云醉月微眠 2024-09-20 09:56:30

使用 MinGW (Qt 2010.05) 编译 Grantlee 时遇到同样的问题。

我如何编译它:

  • find file cwchar (C:\Qt\2010.05\mingw\lib\gcc\mingw32\4.4.0\include\c++\cwchar)
  • 注释掉以下几行(大约第 160 行)< /p>

    使用::swprintf;

    using ::vswprintf;

    使用

had the same problem compiling Grantlee using MinGW (Qt 2010.05).

How I got it to compile:

  • find file cwchar (C:\Qt\2010.05\mingw\lib\gcc\mingw32\4.4.0\include\c++\cwchar)
  • comment the following lines out (around line 160)

    using ::swprintf;

    using ::vswprintf;

说好的呢 2024-09-20 09:56:30

运行时请确保未设置 -ansi 标志。如果正在使用此标志,请将其删除,问题将得到解决。

When running make ensure that -ansi flag is not set. If this flag is being used then remove it and the problem will be solved.

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