bash-4.2# rake db:create
/opt/rubystack-2.3.1-0/ruby/bin/.ruby.bin: symbol lookup error: /opt/rubystack-2.3.1-0/ruby/lib/ruby/gems/2.3.0/gems/pg-0.18.4/lib/pg_ext.so: undefined symbol: rb_thread_select
bash-4.2# ruby -v
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux]
bash-4.2# rails -v
Rails 4.2.6
bash-4.2# gem list pg
*** LOCAL GEMS ***
pg (0.18.4, 0.15.1)
what's the problem? it's bitnami's ruby stack.
NOTE: It's NOT pg version's bug? Please check my log! Ruby version 2.3.1, pg
version 0.18.4.
The
rb_thread_select
function has been deprecated since Ruby 1.9.3. It was replaced by therb_thread_fd_select
function as of Ruby 2.2:However, the
pg
gem has been using the correct function since version 0.15. Here's the relevant section ofpg_connection.c
@ e5cb1df:These directives are evaluated at compile time, so the C extension's shared object must have been compiled incorrectly.
The
HAVE_RB_THREAD_FD_SELECT
macro must not have been defined whenpg_ext.so
was built. This could have happened because:rb_thread_fd_select
References:
rb_thread_fd_select()
on Ruby 1.9, to avoid deprecation warnings onrb_thread_select()
.