当前位置: 技术问答>linux和unix
fedora下用 make编译出错
来源: 互联网 发布时间:2017-02-06
本文导语: 编译并安装: $ tar -zxf git-1.7.2.2.tar.gz $ cd git-1.7.2.2 $ make prefix=/usr/local all $ sudo make prefix=/usr/local install 第三句和第四句报错如下: [root@localhost git-1.7.9.2]# make prefix=/userlocal all * new build fla...
编译并安装:
第三句和第四句报错如下:
[root@localhost git-1.7.9.2]# make prefix=/userlocal all
* new build flags or prefix
CC daemon.o
/bin/sh: cc: 未找到命令
make: *** [daemon.o] 错误 127
]
求解释;
$ tar -zxf git-1.7.2.2.tar.gz
$ cd git-1.7.2.2
$ make prefix=/usr/local all
$ sudo make prefix=/usr/local install
第三句和第四句报错如下:
[root@localhost git-1.7.9.2]# make prefix=/userlocal all
* new build flags or prefix
CC daemon.o
/bin/sh: cc: 未找到命令
make: *** [daemon.o] 错误 127
]
求解释;
|
prefix=/usr/local 去掉
$ tar -zxf git-1.7.2.2.tar.gz
$ cd git-1.7.2.2
$ make all
$ sudo make install
$ tar -zxf git-1.7.2.2.tar.gz
$ cd git-1.7.2.2
$ make all
$ sudo make install
|
直接手工执行 cc ,可以运行吗
|
看一下CC赋值是哪个路径下的命令,是不是你没有对应的命令呢?
|
如果要修改prefix ,先进行configure 操作,或者查看发布包里的INSTALL或者README