我刚刚在我的home / myname / gcc-4.9目录中安装了gcc4.9,我做了以下内容:
1. cd /home/myname/gcc-source (where i have to run the config script)
2. ./configure --prefix=/home/myname/gcc-4.9 (and flags)
3. make && make install
4. now all the lib, bin, include etc folders are in /home/myname/gcc-4.9 directory.
我不小心在/ home / myname / gcc-source /目录中做了一个make clean,它开始删除了很多make的文件。
我的gcc还能用吗?我没有看到任何文件从/home/myname/gcc-4.9文件夹中删除。
或者我应该这样做./configure和make&&再次安装?
答案 0 :(得分:0)
是!
make && make install
由两部分组成:
make
- 编译(创建可执行文件)make install
- 将已编译的可执行文件复制到适当的目录 make clean
撤消make
的结果,但未触及make install
的结果(即您的程序保持安装)