https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119750
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed| |2025-04-11
Status|UNCONFIRMED |WAITING
Ever confirmed|0 |1
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/tmp/gcc-14.2.0/gcc.build.lnx':
configure: error: C compiler cannot create executables
See `config.log' for more details
This means your host gcc is not working in the first place.
what happens when you try to compile just a simple hello world program with the
host gcc included below:
```
#include <stdio.h>
int main(void) { printf ("Hello.\n"); return 0;}
```