Closed
Description
Checklist
- I've looked through the issues and pull requests for similar request
- This feature could be solved with a custom docker image (optional)
Describe your request
I'm working for a application with many math libs. And gfortran is always required.
It's not difficult to add it. For gnu, Add gfortran-${ARCH}-${SYSTEM}-gnu${ABI} is enough. And for musl, we can add GCC_CONFIG += --enable-languages=c,c++,fortran
to musl.sh
.
Describe why this would be a good inclusion for cross
It's true that it will increase the size of the docker. But there's always gfortran in the cross-toolchain published by musl.cc or linaro. So I just think if we can add it to our image too. It will make cross docker more complete.