Open
Description
Just tried to compile Julia on my local dev machine (yay rolling release).
Fails with errors like: llvm/ADT/SmallVector.h:109:62: error: 'uint64_t' was not declared in this scope
Similar to root-project/root#17444
We likely need the patches from root-project/root#17510
Caused by https://gcc.gnu.org/pipermail/gcc-patches/2024-August/659176.html
For anyone else who runs into this an is looking for a quick solution:
~/s/julia-1.11 (release-1.11)> cat Make.user
override CC=gcc-14
override CXX=g++-14
With the gcc-14
package installed.