Segmentation fault with Rails after upgrading to OS Sierra, possibly related to sqlite3 gem

后端 未结 7 1116
一个人的身影
一个人的身影 2020-12-15 17:20

After upgrading to OSX Sierra I am having an issue with random segmentation faults. It most commonly occurs when running rails test and I believe it is due to the sqlite3_ad

7条回答
  •  再見小時候
    2020-12-15 18:00

    Looks like a patch has been issued! The patch will look for sqlite3 in your brew folder instead of using Apple's supplied version by default. Simply run:

    bundle update
    

    to get the latest version of sqlite3-ruby and if you don't already have sqlite3 installed in your homebrew directory, run:

    brew install sqlite3
    

提交回复
热议问题