-
Notifications
You must be signed in to change notification settings - Fork 24
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
Allow to build static libzest.a #19
Labels
Comments
For reference, this is what I have so far.
|
I know this used to be somewhat of a headache, though it seems to be supported more formally within mruby via https://github.com/mruby/mruby/blob/master/tasks/libmruby.rake (see the libmruby_static bit). I'd expect updating the build_config.rb will be the best path forward to avoid linker pains. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The target is to have zynaddsubfx ui object file to be self-contained, not relying on finding libzest as shared library.
I have been trying to do this recently, but failing always at some point.
I am able to build the test-libversion statically, the issue right now is how to reliably create a libzest.a. Some files created by mruby have the same base filename, which messes up things when creating an "ar" file. I tried creating a all-in-one object (using
ld -r
) but that lead to missing symbols somehow.So I am leaving the request here for a static build.
The text was updated successfully, but these errors were encountered: