我正在尝试使用OpenWRT工具链交叉编译OpenWRT Linux环境的POCO源包。我已经下载了POCO源代码包,我正在尝试交叉编译它,但我收到错误日志如下
src/Error.cpp: In static member function 'static std::string
Poco::Error::getMessage(int)': src/Error.cpp:71:55: error: invalid
conversion from 'int' to 'const char*' [-fpermissive]
return std::string(strerror_r(errorCode, errmsg, 256));
^
In file included from
/home/ubuntu/subhendu/options_cg/trunk/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_musl-1.1.10/mips-openwrt-linux-musl/include/c++/4.8.3/string:53:0,
from include/Poco/Bugcheck.h:24,
from include/Poco/Foundation.h:148,
from src/Error.cpp:17: /home/ubuntu/subhendu/options_cg/trunk/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_musl-1.1.10/mips-openwrt-linux-musl/include/c++/4.8.3/bits/basic_string.tcc:212:5:
error: initializing argument 1 of 'std::basic_string<_CharT,
_Traits, _Alloc>::basic_string(const _CharT*, const _Alloc&) [with _CharT = char; _Traits = std::char_traits<char>; _Alloc = std::allocator<char>]' [-fpermissive]
basic_string<_CharT, _Traits, _Alloc>::
^
/home/ubuntu/subhendu/Poco/poco-1.6.0/build/rules/compile:53: recipe for target
'/home/ubuntu/subhendu/Poco/poco-1.6.0/Foundation/obj/Linux/x86_64/debug_shared/Error.o'
failed make[1]: ***
[/home/ubuntu/subhendu/Poco/poco-1.6.0/Foundation/obj/Linux/x86_64/debug_shared/Error.o]
Error 1 make[1]: Leaving directory
'/home/ubuntu/subhendu/Poco/poco-1.6.0/Foundation' Makefile:69: recipe
for target 'Foundation-libexec' failed make: *** [Foundation-libexec]
Error 2
如果有人遇到同样的问题或对如何解决问题有所了解,请提供解决方案......
答案 0 :(得分:0)
看the man page for strerror_r,我看到了:
int strerror_r(int errnum, char *buf, size_t buflen);
/* XSI-compliant */
char *strerror_r(int errnum, char *buf, size_t buflen);
/* GNU-specific */
请注意返回类型的差异。
查看您的错误消息:
error: invalid conversion from 'int' to 'const char*' [-fpermissive]
return std::string(strerror_r(errorCode, errmsg, 256));
^
您正在编译的源似乎期待 GNU特定版本的strerror_r
,但获得符合XSI标准的版本。你的目标没有提供 GNU扩展,或者你的工具链设置不正确。
手册页继续:
glibc的功能测试宏要求(参见feature_test_macros(7)): 如果符合以下条件,则提供符合XSI标准的strerror_r()版本:
(_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE
否则,提供GNU特定版本。
所以你可能想调查那个方向。 (当您尝试编译时,_POSIX_C_SOURCE
,_XOPEN_SOURCE
和_GNU_SOURCE
设置为什么?)