gcc: error trying to exec 'cc1'
If I execute gcc, I always get the error:
gcc: error trying to exec 'cc1': execvp: no such file or directory
.
I'm on Fedora 23 and I have gcc version 5.1.1 installed. The file /usr/libexec/gcc/x86_64-redhat-linux/5.1.1/cc1
exists. Does anyone know what's wrong?
You may want to use
strace
to hunt this issue down. Runningstrace -e trace=%process gcc
may be what you need. Have a look atman strace
for details.