Numéro
Chaque fois que j'essaie de compiler quelque chose avec gcc, j'obtiens cette erreur :
gcc: error trying to exec 'cc1plus': execvp: No such file or directory
Ce que j'ai essayé
J'ai essayé de désinstaller gcc et de le réinstaller en utilisant brew.
Autres informations
Je suis sur un MBP 2015 exécutant Mojave.
Edit 1
$ file $(which gcc)
/usr/local/bin/gcc: Mach-O 64-bit executable x86_64
$ which gcc
/usr/local/bin/gcc
$ gcc --version
gcc (Homebrew GCC 8.2.0) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Edit 2
$ cat > /tmp/foo.c << EOFeof
#include<stdio.h>
int main(void) {
printf("Hello World\n");
return 0;
}
EOFeof
gcc /tmp/foo.c -o /tmp/foo
/tmp/foo
gcc: error trying to exec 'cc1': execvp: No such file or directory
zsh: no such file or directory: /tmp/foo