Describe the bug
When building scalapack (by running toolchain_gnu.sh), the compilation fails due to the error: implicit function declaration.
Expected behavior
When running toolchain_gnu.sh, it should install the toolchain without error.
To Reproduce
- Clone newest source code
- Run
./toolchain/toolchain_gnu.sh with GCC14 as default compiler.
Environment
- OS: Archlinux
- Compiler: GCC 14.1.1
Additional Context
Before GCC14, implicit function declaration is treated as warning but since GCC14 this is treated as error by default, which will cause compilation to stop. By adding flags to bypass this, I can confirm that the whole compilation procedure succeeds and the program works well.
This is also reported in scalapack upstream but no response. This bug is described and fixed by AUR (archlinux user repo) package maintainer, see this commit.
I change toolchain/scripts/stage3/install_scalapack.sh as in this commit to fix it.
Task list for Issue attackers (only for developers)
Describe the bug
When building scalapack (by running
toolchain_gnu.sh), the compilation fails due to the error: implicit function declaration.Expected behavior
When running
toolchain_gnu.sh, it should install the toolchain without error.To Reproduce
./toolchain/toolchain_gnu.shwith GCC14 as default compiler.Environment
Additional Context
Before GCC14, implicit function declaration is treated as warning but since GCC14 this is treated as error by default, which will cause compilation to stop. By adding flags to bypass this, I can confirm that the whole compilation procedure succeeds and the program works well.
This is also reported in scalapack upstream but no response. This bug is described and fixed by AUR (archlinux user repo) package maintainer, see this commit.
I change
toolchain/scripts/stage3/install_scalapack.shas in this commit to fix it.Task list for Issue attackers (only for developers)