-
Notifications
You must be signed in to change notification settings - Fork 85
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
It doesn't fix QT framework dependencies #12
Comments
Indeed, dylibbundler is only meant to work with "raw" dylib files. Frameworks come with many other constraints and are not managed by dylibbundler. However, frameworks also generally need no fixing, in my experience if they are built properly you can just copy them inside your executable and everything will work fine out of the box |
Please add optional framework bundling. It's a waste of time to fix partially bundled apps. |
@auriamg - can you elaborate what you mean by "[...] just copy them inside your executable" ? EDIT: Thanks! |
follow-up: On mac os x, using HomeBrew, the program |
Doesn't work. []s
|
Works for me :) Example here: |
That is not a given. For example, any library installed by MacPorts—whether it is a bare library or within a framework—is linked with absolute paths that need fixing up if bundled into an app. |
By default, QT installs itself on /usr/local/Qt-VERSION/VERSION/ etc...
When I use it to fix a binary, it correctly brings the binary's own libraries, but ignores Qt frameworks. (maybe because they don't have the .dylib on their name?)
I want to use it exactly to save me the work of adding QT's frameworks to my binary...
The text was updated successfully, but these errors were encountered: