Replies: 1 comment
-
The vast majority of open-source projects automatically look in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Additional Info
Output of
brew config
Output of
brew doctor
Description of issue
Installed gcc-14. It works with '-c' option but fails at link stage.
Similar with gfortran-14 but it fails with '-c' option
$ cat hello.c
include <stdio.h>
int main()
{
printf("Hello\n");
return 0;
}
$ gcc-14 hello.c
gcc-14: internal compiler error: Segmentation fault signal terminated program collect2
Please submit a full bug report, with preprocessed source (by using -freport-bug).
See https://github.com/Homebrew/homebrew-core/issues for instructions.
$ cat hello.f90
program hello
print *,"hello"
end program
$ gfortran hello.f90
gfortran: internal compiler error: Segmentation fault signal terminated program f951
Please submit a full bug report, with preprocessed source (by using -freport-bug).
See https://github.com/Homebrew/homebrew-core/issues for instructions.
Actually I am a bit confused by the
brew doctor
output complaining about /usr/local/* content on Linux, where the Homebrew is located in /home/linuxbrew and not in /usr/local, as it is on MacOS.Beta Was this translation helpful? Give feedback.
All reactions