我终于设法得到“PG”宝石花时间试图弄清楚为什么它不工作后安装...
最后我进入sudo env ARCHFLAGS="-arch x86_64" gem install pg -v 0.12.2 -- --with-pg-config=/Applications/Postgres.app/Contents/MacOS/bin/pg_config
这工作就像一个魅力。 但是现在我仍然有同样的错误,当我尝试捆绑 - 所以我想我并没有真正解决问题呢? 总之,这里就是bundle install
时说:
Installing pg (0.12.2)
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/Users/thomas/.rvm/rubies/ruby-1.9.3-p392/bin/ruby extconf.rb --with-pg-config=/usr/pgsql-9.2/bin/pg_config
Using config values from /usr/pgsql-9.2/bin/pg_config
sh: /usr/pgsql-9.2/bin/pg_config: No such file or directory
sh: /usr/pgsql-9.2/bin/pg_config: No such file or directory
checking for libpq-fe.h... yes
checking for libpq/libpq-fs.h... yes
checking for PQconnectdb() in -lpq... yes
checking for PQconnectionUsedPassword()... yes
checking for PQisthreadsafe()... yes
checking for PQprepare()... yes
checking for PQexecParams()... yes
checking for PQescapeString()... yes
checking for PQescapeStringConn()... yes
checking for PQgetCancel()... yes
checking for lo_create()... yes
checking for pg_encoding_to_char()... yes
checking for PQsetClientEncoding()... yes
checking for rb_encdb_alias()... yes
checking for rb_enc_alias()... yes
checking for struct pgNotify.extra in libpq-fe.h... yes
checking for unistd.h... yes
checking for ruby/st.h... yes
creating extconf.h
creating Makefile
make
compiling compat.c
compiling pg.c
pg.c: In function ‘pgconn_wait_for_notify’:
pg.c:2117: warning: ‘rb_thread_select’ is deprecated (declared at /Users/thomas/.rvm/rubies/ruby-1.9.3-p392/include/ruby-1.9.1/ruby/intern.h:380)
pg.c: In function ‘pgconn_block’:
pg.c:2592: warning: format not a string literal and no format arguments
pg.c:2598: warning: ‘rb_thread_select’ is deprecated (declared at /Users/thomas/.rvm/rubies/ruby-1.9.3-p392/include/ruby-1.9.1/ruby/intern.h:380)
pg.c:2607: warning: format not a string literal and no format arguments
linking shared-object pg_ext.bundle
ld: warning: directory not found for option '-L-Wl,-undefined,dynamic_lookup'
Undefined symbols for architecture x86_64:
....
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status
make: *** [pg_ext.bundle] Error 1
我认为这个问题是捆绑试图安装使用来自另一个postresql安装pg_config(我已经删除)的宝石。 有没有什么办法,以确保打捆使用了正确的道路?