简体   繁体   中英

Snow Leopard, sqlite3-ruby

So I followed every suggestion in this thread

without success. I'm running os x 10.6, rails 2.3.3, ruby 1.9.1 and still getting this error when I try accessing the front page of my rails app:

uninitialized constant SQLite3::Driver::Native::Driver::API

I've googled every possible combination of snow leopard, rails, sqlite3 without any luck. Hoping someone can help. Thanks!

I finally solved this by recompiling ruby 1.9.1 with the appropriate sqlite3 libraries linked. So in my case I needed to create this link:

sudo ln -s  /Developer/SDKs/MacOSX10.6.sdk/usr/lib/libsqlite3.0.dylib /usr/local/lib/libsqlite3.dylib

或者,简单地说

sudo gem install sqlite3-ruby

很奇怪,但是我卸载了所有的Sqlite3版本并重新安装了Sqlite3并且它工作正常。

ennuikillers' answer worked for me. I'll add that I did this on a mac (running snow leopard) and /usr/local/lib/libsqlite3.dylib already existed and was symlinked to the wrong thing.

I had to add the line: sudo rm /usr/local/lib/libsqlite3.dylib

before the symlink line.

I had a similar thing happen on an older Ubuntu server (6.06), on which I had installed SQLite from source. There was no ld.so.conf file so I had to create that and add /usr/local/lib to it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM