You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to know if it is currently possible to change the version of the compiler-builtins package that is compiled together with the core crate.
We are having problems with the current version of compiler-builtins on the sparc-unknown-linux-gnu target. A new version has been produced to fix the issue. However, we are not able to test it because we cannot prevent the original one from being included. We would like to be able to link the new version, which is stored on a separate branch, instead of the current version.
We cannot add a dependency to the other version of the package into our Cargo.toml file because then cargo will include both versions and generate a linking error telling us that there are currently two versions of the same functions.