We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was first trying to compile idevicerestore, when this error message came up right as ld was about to finish:
ld: archive member 'libssl.a' not a mach-o file in '/usr/local/lib/libtatsu.a'
Then I made this little test program that links against libtatsu just to get a version number out of it:
#include <stdio.h> #include <libtatsu/tatsu.h> int main(void) { printf("libtatsu version: %s\n", libtatsu_version()); return 0; }
and got the same message.
I have openssl (libssl.a and lib crypto.a) compiled statically as well as all libimobiledevice stuff and of course libtatsu.
If anyone knows a fix on my end or knows what's causing the issue during the configure/make process, help would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was first trying to compile idevicerestore, when this error message came up right as ld was about to finish:
ld: archive member 'libssl.a' not a mach-o file in '/usr/local/lib/libtatsu.a'
Then I made this little test program that links against libtatsu just to get a version number out of it:
and got the same message.
I have openssl (libssl.a and lib crypto.a) compiled statically as well as all libimobiledevice stuff and of course libtatsu.
If anyone knows a fix on my end or knows what's causing the issue during the configure/make process, help would be greatly appreciated.
The text was updated successfully, but these errors were encountered: