未在此范围内声明的变量 - Mingw w64
variable not declared in this scope - Mingw w64
我在 Mingw 64 位中遇到这个错误
error: '_controlfp' was not declared in this scope
我尝试使用
包括float.h
#include <float.h>
这是我的声明
uint32_t old;
_controlfp_s(&old, _PC_64, _MCW_PC);
但是我仍然遇到这个问题。我还添加了 mingw 的 include 目录的路径作为搜索的第一个路径。关于如何解决此问题的任何建议。
此定义存在于 float.h 中。似乎 mingw64 试图在 C:\mingw64\x86_64-w64-mingw32\include
中的 float.h 中查找此定义,但是此定义存在于文件 [=13] 中=].为了解决这个问题,我将定义复制到实际的源文件中。
我在 Mingw 64 位中遇到这个错误
error: '_controlfp' was not declared in this scope
我尝试使用
包括float.h
#include <float.h>
这是我的声明
uint32_t old;
_controlfp_s(&old, _PC_64, _MCW_PC);
但是我仍然遇到这个问题。我还添加了 mingw 的 include 目录的路径作为搜索的第一个路径。关于如何解决此问题的任何建议。
此定义存在于 float.h 中。似乎 mingw64 试图在 C:\mingw64\x86_64-w64-mingw32\include
中的 float.h 中查找此定义,但是此定义存在于文件 [=13] 中=].为了解决这个问题,我将定义复制到实际的源文件中。