交叉编译openssh出现错误Makefile:548: recipe for target 'install_sw' failed

交叉编译openssh出现错误

将OpenSSH移植到ARM Linux,交叉编译openssh时,在第二步编译openssl时,make install出现如下错误:

cp: 'e_os2.h' and '/home/word/iTOP-4412-Linux-ssh/openssl-1.0.2l/include/openssl/e_os2.h' are the same file
Makefile:548: recipe for target 'install_sw' failed
make: *** [install_sw] Error 1

如下图:

交叉编译openssh出现错误Makefile:548: recipe for target 'install_sw' failed_第1张图片

这个错误主要是在配置文件时,将安装目录配置到了源码目录下:

$ cd ../openssl-1.0.1l
$ ./Configure --prefix=/home/veryarm/ssh/openssl.install  os/compiler:arm-none-linux-gnueabi-gcc
$ make
$ make install

也就是上面的/home/veryarm/ssh/openssl.install安装目录,不要填写成 ../openssl-1.0.1l目录,这样ok了。

具体交叉编译操作可参考OpenSSH移植到ARM Linux教程

你可能感兴趣的:(linux,openssl,openssh,makefile)