i just installed gcc4.9 in my home/myname/gcc-4.9 directory, I did the following:
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.
I accidentally did a make clean in the /home/myname/gcc-source/ directory and it started removing a lot of files which were make'ed.
Will my gcc still work ? I didnt see any files getting deleted from /home/myname/gcc-4.9 folder as such.
Or should i do ./configure and make && make install again ?