-
Notifications
You must be signed in to change notification settings - Fork 8
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
Can we tailor the version of the compiler-builtins package that is compiled and linked together with the core crate? #61
Comments
Not knowing much about all this, it sounds like something that should be tested within the |
It is currently not possible to change the version with Supporting custom code with |
I also ran into this exact same problem while trying to use a custom version of compiler_builtins on disk There's currently a conflict with memcpy functions from esp32hal and compiler_builtins which hasn't been fixed yet so I was trying to use a custom version of compiler_builtins on disk to get around it. I did try patching via
But it looks as if the build-std is pulling in packages in such a way that they're not shown via "cargo tree" |
Closing per the comment in #61 (comment). |
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 thesparc-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.The text was updated successfully, but these errors were encountered: