-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide GCC 14 #398
Comments
I have a prototype implementation of GCC 14.2. It's difficult to build old glibc versions with it so I'm building glibc 2.35 at the moment. Please advise.
|
I presume you meant RISC-V instead of Rust 🙂
For architetuctures like x86_64 which have thousands of systems around still running Red Hat 7 (in extended support up to 2027 or 28, don't remember), which ships with glibc 2.17 that's a no-go. RISC-V is different because it's a much more recent architecture, with only few usable (for Julia workloads) boards, we have less constraints about it. |
Can you please elaborate on what's the issue with glibc 2.17? |
The particular error I'm seeing is that it complains that the flag |
That's a linker option (which we use often), I'm missing the connection with the glibc version. |
The failing command is
and the error message is
This error is not there with glibc 2.35. (I haven't investigated the error.) |
Usual suggestion: read the log file, the actual error may be different than what printed to screen. |
It seems that Rust isn't well supported in GCC 12 or 13. The release notes of GCC 14 promise much better support, including support for vector extensions. It would be convenient to provide GCC 14 in BinaryBuilder.
The text was updated successfully, but these errors were encountered: