On 05/19/2016 11:33 AM, Jeffrey Walton wrote:
I also know GCC is using something, but it does not tell me what it is: $ gcc -v Using built-in specs. ...
You probably have to use strace to find which file GCC is trying to open. It is going to be something like
/usr/lib/gcc/x86_64-redhat-linux/5.3.1/specsBut the exact path will be very distribution-specific. But it's probably not a good idea to patch an existing GCC installation by putting a file there.
Florian