在ubuntu下安装gawk,make的时候还是提示nout found
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ubuntu下安装gawk,make的时候还是提示nout found相关的知识,希望对你有一定的参考价值。
已经安装过gawk了 apt-get install gawk
然后make的时候,还是报错,错误信息如下:
make[1]: Entering directory `/home/senrayi/work/project'
/bin/sh: 1: /bin/gawk: not found
make[1]: *** [setup] Error 127
make[1]: Leaving directory `/home/senrayi/work/project'
make: *** [loader] Error 2
问题已经解决了:因为我是64位系统,所以安装了32位系统的库
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 (安装32位的库)
不过有同事在64位上成功运行的,我这个是特例,不过总算解决了
make all-recursive
make[1]: Entering directory `/usr/local/src/autoconf-2.69'
Making all in bin
make[2]: Entering directory `/usr/local/src/autoconf-2.69/bin'
rm -f autom4te autom4te.tmp
srcdir=''; \
test -f ./autom4te.in || srcdir=./; \
sed -e 's|@SHELL[@]|/bin/bash|g' -e 's|@PERL[@]|/usr/bin/perl|g' -e 's|@PERL_FLOCK[@]|yes|g' -e 's|@bindir[@]|/usr/local/bin|g' -e 's|@pkgdatadir[@]|/usr/local/share/autoconf|g' -e 's|@prefix[@]|/usr/local|g' -e 's|@autoconf-name[@]|'`echo autoconf | sed 's,x,x,'`'|g' -e 's|@autoheader-name[@]|'`echo autoheader | sed 's,x,x,'`'|g' -e 's|@autom4te-name[@]|'`echo autom4te | sed 's,x,x,'`'|g' -e 's|@M4[@]|/usr/bin/m4|g' -e 's|@M4_DEBUGFILE[@]|--debugfile|g' -e 's|@M4_GNU[@]|--gnu|g' -e 's|@AWK[@]|gawk|g' -e 's|@RELEASE_YEAR[@]|'`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' ../ChangeLog`'|g' -e 's|@VERSION[@]|2.69|g' -e 's|@PACKAGE_NAME[@]|GNU Autoconf|g' -e 's|@configure_input[@]|Generated from autom4te.in; do not edit by hand.|g' $srcdirautom4te.in >autom4te.tmp
以上是关于在ubuntu下安装gawk,make的时候还是提示nout found的主要内容,如果未能解决你的问题,请参考以下文章