如何获得 POSIX strerror_r而不是 GNU 版本?
我正在使用 glibc 版本 2.7 的 Ubuntu 8.04 上使用 g++ 进行编译(基于其中的内容)。
编辑
在上面的手册页上它说:
glibc 的功能测试宏要求(参见 feature_test_macros(7)):
The XSI-compliant version of strerror_r() is provided if:
(_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE
Otherwise, the GNU-specific version is provided.
然后它在feature_test_macros(7)中说:
If no feature test macros are explicitly defined, then the following feature
test macros are defined by default: _BSD_SOURCE, _SVID_SOURCE, _POSIX_SOURCE,
and _POSIX_C_SOURCE=200809L (200112L in glibc versions before 2.10; 199506L in
glibc versions before 2.4; 199309L in glibc versions before 2.1).
所以我应该得到 POSIX 版本,但我得到的是 GNU 版本。