-
Notifications
You must be signed in to change notification settings - Fork 105
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
Implement per-platform compiler version selection #1360
base: master
Are you sure you want to change the base?
Conversation
I wonder if it would be simpler, both in terms of implementation and user interface, to do something like, for example: # In the Yggdrasil `build_tarballs.jl` script:
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
preferred_gcc_version=(p -> Sys.islinux(p) && arch(p) == "riscv64" ? v"14" : nothing)) When |
This implements the ability to select a different compiler version for each requested platform. This can be useful when certain platforms might need a newer version of GCC to fix bugs in the toolchain (e.g., riscv), but we don't want to increase the version for working platforms.
An example use of this is:
This will then use GCC 13 on the RISCV platforms, and GCC 6 on all other platforms.