gpt4 book ai didi

c++ - 使用 c++11 编译时,Mingw g++ 无法识别 off_t

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:29:52 27 4
gpt4 key购买 nike

我写了尽可能小的测试题:

#include <sys/types.h>
int main(int argc, char** argv) {
off_t l = 0;
return 0;
}

以下作品:g++ test.cpp

但是如果我尝试使用 c++11 进行编译,我会得到:

c:\test>g++ -std=c++11 test.cpp

test.cpp: In function 'int main(int, char**)':
test.cpp:5:2: error: 'off_t' was not declared in this scope
test.cpp:5:8: error: expected ';' before 'l'
test.cpp:6:9: error: 'l' was not declared in this scope

谁能解释为什么会这样?这困扰我的原因是我试图在我的 c++11 代码中使用 zlib 库。库 zlib.h 大量使用 off_t。

我的编译器版本是:gcc 4.7.2

Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=c:/mingw/bin/../libexec/gcc/mingw32/4.7.2/lto-wrapper.exe
Target: mingw32
Configured with: ../gcc-4.7.2/configure --enable-languages=c,c++,ada,fortran,objc,obj-c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --enable-libgomp --disable-win32-registry --enable-libstdcxx-debug --disable-build-poststage1-with-cxx --enable-version-specific-runtime-libs -build=mingw32 --prefix=/mingw
Thread model: win32
gcc version 4.7.2 (GCC)

最佳答案

当使用选项 -std=c++11 时,编译器定义了 -D__STRICT_ANSI__,它删除了 off_t 的定义,只留下 _off_t 的定义。

编译器这样做是正确的,因为 off_t 不符合标准。

这让我很困惑,因为我想要 c++11 来处理像 nullptr 和 lambdas 这样很酷的东西。我根本不关心 STRICT_ANSI。

解决方案是使用 -std=gnu++11

(另一种选择是只为需要它的头文件输入 typedef off_t typedef _off_t off_t;)

关于c++ - 使用 c++11 编译时,Mingw g++ 无法识别 off_t,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19666666/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com