Hi JP, > [ 03:15:54 /usr/local/bin ] > sshfs > dyld: Library not loaded: /usr/local/lib/libintl.8.dylib > Referenced from: /usr/local/lib/libgthread-2.0.0.dylib > Reason: image not found > Trace/BPT trap
This suggests that you did not install gettext as you should have! You have libintl.a in you lib folder but libintl.8.dylib is missing. > So I followed your most recent suggestion by downloading your latest build > and reinstalling sshfs. However, I got the exact same result as above. By the > way, the Makefile still had -arch ppc references in it which I had to delete. > I wouldn't be surprised if I screwed something up along the way, but here are > some of my observations anyway. If done correctly there should be no "-arch ppc" in your Makefile. I followed the HOWTO to the letter (used the exact same versions of glib and gettext) and got a working sshfs binary. To get glib to compile I had to comment one line in "glib/gconvert.c", though. > I eventually installed the precompiled binary (from here: > http://code.google.com/p/macfuse/source/browse/#svn/trunk/filesystems/sshfs/binary) > and got it working without a hitch, so sshfs can definitely run on my > system. Interestingly, the binary I downloaded is significantly bigger than > the one I compiled myself, have a look. > > -rwxr-xr-x 1 root staff 82K 24 May 15:10 sshfs > -rw-r--r--@ 1 jplew staff 716K 24 May 15:14 sshfs-static-leopard My binary is 163 KB, as should yours. sshfs-static-leopard is significant larger because it is a static binary, as the name suggests. It already integrates libglib, libgthread and libintl. That's why you don't have to compile/install those libraries for sshfs-static-leopard to work. You have two options: keep using the pre-compiled sshfs binary or provide the complete Terminal output of steps 1 to 3 of the HOWTO to track down why this is not working for you. Regards, Benjamin -- You received this message because you are subscribed to the Google Groups "MacFUSE" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/macfuse?hl=en.
