我刚刚从 OS X Lion 升级到 OS X Mountain Lion。我的 Rails 环境大部分都保持不变。
为了使事情恢复到良好状态,我必须做的唯一步骤是: - 安装 XCode 4.4 - 安装 XCode 4.4 命令行工具 - 安装 gcc-4.2
所以一切都很顺利。
这就是问题所在,当我运行 bundle install 时,几乎所有的 gem 都正确安装了,除了我需要的最重要的 gem 之一 - postgresql gem 'pg'。
对于 0.12.2 以上的版本,它特别失败。
我正在使用红宝石 1.9.3p125。
我可以成功获取 0.12.2 pg gem 和以下版本,但是它们给了我分段错误(我猜是因为我正在使用的 ruby 版本)。
所以这让我相信它特定于 pg gem,而不是我的整体环境,因为其他 gem 安装得很好。
我还尝试重新安装 Postgresql 以确保我的 postgres 环境正常并且在这方面看起来不错。
有没有人能够安装 'pg' gem 版本 0.13.0 或更高版本(最好是 0.14.X)?
这是我的堆栈跟踪:
Building native extensions. This could take a while...
ERROR: Error installing pg:
ERROR: Failed to build gem native extension.
/Users/caseyli/.rvm/rubies/ruby-1.9.3-p125/bin/ruby extconf.rb
checking for pg_config... yes
Using config values from /usr/bin/pg_config
checking for libpq-fe.h... yes
checking for libpq/libpq-fs.h... yes
checking for pg_config_manual.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 PQescapeLiteral()... yes
checking for PQescapeIdentifier()... yes
checking for PQgetCancel()... yes
checking for lo_create()... yes
checking for pg_encoding_to_char()... yes
checking for pg_char_to_encoding()... yes
checking for PQsetClientEncoding()... yes
checking for PQlibVersion()... yes
checking for PQping()... yes
checking for rb_encdb_alias()... yes
checking for rb_enc_alias()... no
checking for PGRES_COPY_BOTH in libpq-fe.h... no
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 pg.c
pg.c: In function ‘pg_s_library_version’:
pg.c:273: warning: implicit declaration of function ‘PQlibVersion’
pg.c: In function ‘Init_pg_ext’:
pg.c:384: error: ‘PQPING_OK’ undeclared (first use in this function)
pg.c:384: error: (Each undeclared identifier is reported only once
pg.c:384: error: for each function it appears in.)
pg.c:386: error: ‘PQPING_REJECT’ undeclared (first use in this function)
pg.c:388: error: ‘PQPING_NO_RESPONSE’ undeclared (first use in this function)
pg.c:390: error: ‘PQPING_NO_ATTEMPT’ undeclared (first use in this function)
make: *** [pg.o] Error 1
Gem files will remain installed in /Users/caseyli/.rvm/gems/ruby-1.9.3- p125@elliottfarmequipment/gems/pg-0.14.0 for inspection.