This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/local/lib/libjtokyocabinet.1.1.0.dylib: no suitable image found. Did find: /usr/local/lib/libjtokyocabinet.1.1.0.dylib: mach-o, but wrong architecture /usr/local/lib/libjtokyocabinet.1.1.0.dylib: mach-o, but wrong architecture | |
at java.lang.ClassLoader$NativeLibrary.load(Native Method) | |
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1881) | |
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1798) | |
at java.lang.Runtime.loadLibrary0(Runtime.java:823) | |
at java.lang.System.loadLibrary(System.java:1047) | |
at tokyocabinet.Loader.load(Loader.java:41) | |
at tokyocabinet.HDB.<clinit>(HDB.java:37) | |
at Blah$.main(Blah.scala:6) | |
at Blah.main(Blah.scala) |
To translate, what is going on here is that by default Tokyo Cabinet will build a 32 bit binaries. Java 1.6 on OS X is 64 bit and will look for a 64 bit version of the library. Here is what I did to make things happy.
When running the configure script for Tokyo Cabinet itself, I added a flag:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./configure CFLAGS='-arch x86_64' |
I tried the same trick when configuring the Java bindings, but it didn't seem to end up in the resulting Makefile. So I edited the Makefile by hand. In the end, my CFLAGS line looks like this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CFLAGS = -std=c99 -Wall -fPIC -fsigned-char -O2 -arch x86_64 |
After that, I was able to get a small Scala script to create a Hash database.
As an aside, the Scala IDE for Eclipse seems really nice. I had tried it out a few months ago, and it has clearly made a lot of progress since then.