-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
rust recipe shazamio-core, builds fine, but cannot locate symbol __gxx_personality_v0 #3030
Comments
Maybe you try to play with linking flags in Something like: def get_recipe_env(self, arch, **kwargs):
env = super().get_recipe_env(arch, **kwargs)
env['LDFLAGS'] += ' -lstdc++'
return env |
Hi @T-Dynamos,
I deleted buildozer home and build folders and built again, with new recipe, it builds successfully, but I still get same behavior: app crashes and on log there is same error. |
Hi, How can I create a recipe that install from there ? |
@magowiz This can't be used, as it's compiled for glibc, but android is bionic. (Only wheels compiled with android-ndk will work) |
I believe this error can be easily solved, I will try work on it ASAP. |
thank you very much! |
Hi, is there news about it? |
Checklist
p4a.branch = develop
)Versions
Description
I was trying to add to my project a
shazamio-core
recipe which is a rust project, so I used the recipe classRustCompiledComponentsRecipe
and wrote my own recipe, which is this:It compiles fine, but in android, when I launch my app I get this import error:
then the app crashes
buildozer.spec
Command:
Spec file:
Logs
no errors on building
The text was updated successfully, but these errors were encountered: