You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 19, 2021. It is now read-only.
I experienced the same build issue as @fruitofgeorge, and successfully solved the imobiledevice error. I then had this error:
ld: library not found for -ljsmn
Aside from "-ljsmn" being confusing (looks like an incorrect parsing of "-l jsmn"), I thought maybe the Makefile including jsmn in the libs was inaccurate. I removed this reference, and then Make worked without error. I'm not certain if this is correct, though.
Will iosVNCServer still work like this?
Thanks
QUOTE <
Digging further, turns out there is supposed to be a makefile in the /jsmn directory but when cloning it just makes an empty folder. I was able to find another repo for jsmn and copy it in.
After taking care of that, it complained of not finding the library for imobiledevice. Looks like when installed with brew, it appends the version number on it. I had to edit the makefile to be -l imobiledevice-1.0 and then it builds.
I experienced the same build issue as @fruitofgeorge, and successfully solved the imobiledevice error. I then had this error:
ld: library not found for -ljsmn
Aside from "-ljsmn" being confusing (looks like an incorrect parsing of "
-l jsmn
"), I thought maybe the Makefile including jsmn in the libs was inaccurate. I removed this reference, and then Make worked without error. I'm not certain if this is correct, though.Will iosVNCServer still work like this?
Thanks
QUOTE <
Digging further, turns out there is supposed to be a makefile in the /jsmn directory but when cloning it just makes an empty folder. I was able to find another repo for jsmn and copy it in.
After taking care of that, it complained of not finding the library for imobiledevice. Looks like when installed with brew, it appends the version number on it. I had to edit the makefile to be
-l imobiledevice-1.0
and then it builds.Originally posted by @fruitofgeorge in #1 (comment)
The text was updated successfully, but these errors were encountered: