make install:无法运行 strip:没有此文件或目录

make install:无法运行 strip:没有此文件或目录
root@server:~/shc-3.8.9# make install
***     Installing shc and shc.1 on /usr/local
***     Do you want to continue? y
install -c -s shc /usr/local/bin/
install: cannot run strip: No such file or directory
install: strip process terminated abnormally
make: *** [install] Error 1

我不make install经常使用它。有人能告诉我如何修复它吗?:)

/edit1:这个错误实际上发生在我上面发布的错误之前,如果造成混淆,请见谅。(我尝试使用“cp shc-3.8.9.c shc”绕过下面的错误,但随后出现了上面的错误。所以现在我安装了“binutils”,并重复了安装过程,我收到此错误)

root@server:~/shc-3.8.9# make
cc -Wall  shc.c -o shc
make: cc: Command not found
make: *** [shc] Error 127

答案1

makestrip尝试调用未安装的程序。

安装包binutils

相关内容