我正在为 ndk 编译应用程序,我收到错误“未定义对 `__errno_location' 的引用”。
错误来自一行
sprintf( buff, "%s TIOCMGET failed: %s\n", buff, strerror(errno) );
如果我评论这一行,链接器不会抱怨,否则它会抱怨。
我正在尝试使用 Sourcery G++ Lite 的 arm-none-linux-gnueabi-gcc 工具链为 android 构建我自己的可执行文件。
我正在为 ndk 编译应用程序,我收到错误“未定义对 `__errno_location' 的引用”。
错误来自一行
sprintf( buff, "%s TIOCMGET failed: %s\n", buff, strerror(errno) );
如果我评论这一行,链接器不会抱怨,否则它会抱怨。
我正在尝试使用 Sourcery G++ Lite 的 arm-none-linux-gnueabi-gcc 工具链为 android 构建我自己的可执行文件。