|
|
忙了一整天,终于把梦寐以求的linux装上了,现在面临一个问题,安装下载软件,很多的tar包,tar.gz包需要编译,胆识总是会出现错误
比如说安装myget时:
cd myget-0.1.0
[root@E myget-0.1.0]# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for g++... g++
checking for C++ compiler default output file name... configure: error: C++ compiler cannot create executables
See `config.log' for more details.
[root@E myget-0.1.0]# make
make: *** 没有指明目标并且找不到 makefile。 停止。
[root@E myget-0.1.0]# make install
make: *** 没有规则可以创建目标“install”。 停止。 |
|