-
Notifications
You must be signed in to change notification settings - Fork 242
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
how do you init your custom c module at app startup? #848
Comments
to clarify what I am asking for. I have a custom recipe which can build my python module. It has the entry point function:
I am trying to understand how to get this imported in my application. Should I explicitly be using |
It looks like that python is patched to override the dlopen on an external shared library with the internal dlsym on the python executable. |
I now understand the last piece of the puzzle. What is needed is to create an empty |
👋 We use the issue tracker exclusively for bug reports and feature requests. However, this issue appears to be a support request. Please use our support channels to get help with the project. If you're having trouble installing or using kivy-ios, maybe you could be interested to installation and requirements. Let us know if this comment was made in error, and we'll be happy to reopen the issue. |
Versions
Describe the bug
My custom recipe successfully builds an archive. In addition copying the archive file into the recipes of my environment gets it installed into the image. However, the only way to get the module loaded is for me to add it to the command table in main.m
where I forward declare my init outside of the main function:
To Reproduce
build your own custom recipe which compiles a static archive creating a new module
Expected behavior
Document or make it easy
Logs
Screenshots
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: