我想知道是否可以在使用Sourcery工具链为ARM进行交叉编译时将我的应用程序链接到libssh。我的主机系统是Ubuntu x86_64
:~/c/ssh$ arm-none-linux-gnueabi-gcc ssh.c -o arm `pkg-config --cflags --libs libssh`
cc1: warning: include location "/usr/local/include" is unsafe for cross-compilation [-Wpoison-system-directories]
/home/user/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_GNU_Linux/bin/../lib/gcc/arm-none-linux-gnueabi/4.6.1/../../../../arm-none-linux-gnueabi/bin/ld: warning: library search path "/usr/local/lib" is unsafe for cross-compilation
/usr/local/lib/libssh.so: file not recognized: File format not recognized
collect2: ld returned 1 exit status
我的应用程序使用此命令使用gcc编译正确:
gcc ssh.c -o ssh -lssh
交叉编译时添加相同的-lssh标志会导致以下错误:
:~/c/ssh$ arm-none-linux-gnueabi-gcc ssh.c -o arm -lssh
ssh.c:2:49: fatal error: libssh/libssh.h: No such file or directory
compilation terminated.
答案 0 :(得分:4)
您的第一次尝试是尝试从主机环境而不是目标环境链接libssh.o。这是因为命令“pkg-config --cflags --libs libssh”会在主机上返回libssh的包配置。
您需要专门为目标环境(ARM)获取或编译libssh的副本。
如果你自己编译(可能是你唯一的选择,对我来说至少快速谷歌没有透露任何合适的预建包),那么你应该指定一个单独的安装目录,例如。在你的主目录某处。这将导致单独的include和lib目录,包含交叉编译的libssh,您可以从自己的编译命令中引用它,例如:
arm-none-linux-gnueabi-gcc -I{includedir} -L{libdir} ssh.c -o arm -lssh
请注意,libssh依赖于其他库 - openssl和zlib - 您还必须交叉编译。