Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am running Mac OS X Lion Server on another Mac mini. I installed PostgreSQL through Homebrew. When running

$ sudo gem install pg

the gem install works fine, but when (from my laptop) I run:

$ cap deploy

it fails and I get the following messages:

Output from $ cap deploy:

[out :: Pace.local] checking for pg_config... yes
[out :: Pace.local] Using config values from /usr/bin/pg_config
[out :: Pace.local] checking for libpq-fe.h... yes
[out :: Pace.local] checking for libpq/libpq-fs.h... yes
[out :: Pace.local] checking for pg_config_manual.h... yes
[out :: Pace.local] checking for PQconnectdb() in -lpq... no
[out :: Pace.local] checking for PQconnectdb() in -llibpq... no
[out :: Pace.local] checking for PQconnectdb() in -lms/libpq... no
[out :: Pace.local] Can't find the PostgreSQL client library (libpq)
[out :: Pace.local] *** extconf.rb failed ***
[out :: Pace.local] Could not create Makefile due to some reason, probably lack of
[out :: Pace.local] necessary libraries and/or headers.  Check the mkmf.log file for more
[out :: Pace.local] details.  You may need configuration options.

and I get the error messages shown in:

mkmf.log:

find_executable: checking for pg_config... -------------------- yes

--------------------

find_header: checking for libpq-fe.h... -------------------- yes

"gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include   -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common    conftest.c -o conftest.i"
checked program was:
/* begin */
1: #include <libpq-fe.h>
/* end */

--------------------

find_header: checking for libpq/libpq-fs.h... -------------------- yes

"gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include   -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common    conftest.c -o conftest.i"
checked program was:
/* begin */
1: #include <libpq/libpq-fs.h>
/* end */

--------------------

find_header: checking for pg_config_manual.h... -------------------- yes

"gcc -E -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include   -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common    conftest.c -o conftest.i"
checked program was:
/* begin */
1: #include <pg_config_manual.h>
/* end */

--------------------

have_library: checking for PQconnectdb() in -lpq... -------------------- no

"gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch i386 -arch x86_64  -L/usr/local/Cellar/postgresql/9.1.4/lib     -lruby -lpq  -lpthread -ldl -lobjc  "
ld: warning: ignoring file /usr/local/Cellar/postgresql/9.1.4/lib/libpq.dylib, file was built for unsupported file format which is not the architecture being linked (i386)
Undefined symbols for architecture i386:
"_PQconnectdb", referenced from:
_t in cccMktph.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//ccbuecN1.out (No such file or directory)
checked program was:
/* begin */
1: #include <libpq-fe.h>
2: 
3: /*top*/
4: int main() { return 0; }
5: int t() { void ((*volatile p)()); p = (void ((*)()))PQconnectdb; return 0; }
/* end */

"gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch i386 -arch x86_64  -L/usr/local/Cellar/postgresql/9.1.4/lib     -lruby -lpq  -lpthread -ldl -lobjc  "
conftest.c: In function 't':
conftest.c:5: error: too few arguments to function 'PQconnectdb'
conftest.c: In function 't':
conftest.c:5: error: too few arguments to function 'PQconnectdb'
lipo: can't figure out the architecture type of:                /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//cckhI2ka.out
checked program was:
/* begin */
1: #include <libpq-fe.h>
2: 
3: /*top*/
4: int main() { return 0; }
5: int t() { PQconnectdb(); return 0; }
/* end */

--------------------

have_library: checking for PQconnectdb() in -llibpq... -------------------- no

"gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch i386 -arch x86_64  -L/usr/local/Cellar/postgresql/9.1.4/lib     -lruby -llibpq  -lpthread -ldl -lobjc  "
ld: library not found for -llibpq
collect2: ld returned 1 exit status
ld: library not found for -llibpq
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//cctsaEf7.out (No such file or directory)
checked program was:
/* begin */
1: #include <libpq-fe.h>
2: 
3: /*top*/
4: int main() { return 0; }
5: int t() { void ((*volatile p)()); p = (void ((*)()))PQconnectdb; return 0; }
/* end */

"gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch i386 -arch x86_64  -L/usr/local/Cellar/postgresql/9.1.4/lib     -lruby -llibpq  -lpthread -ldl -lobjc  "
conftest.c: In function 't':
conftest.c:5: error: too few arguments to function 'PQconnectdb'
conftest.c: In function 't':
conftest.c:5: error: too few arguments to function 'PQconnectdb'
lipo: can't figure out the architecture type of: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//cc3OxLEw.out
checked program was:
/* begin */
1: #include <libpq-fe.h>
2: 
3: /*top*/
4: int main() { return 0; }
5: int t() { PQconnectdb(); return 0; }
/* end */

--------------------

have_library: checking for PQconnectdb() in -lms/libpq... -------------------- no

"gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch i386 -arch x86_64  -L/usr/local/Cellar/postgresql/9.1.4/lib     -lruby -lms/libpq  -lpthread -    ldl -lobjc  "
ld: library not found for -lms/libpq
collect2: ld returned 1 exit status
ld: library not found for -lms/libpq
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//ccAWgBGN.out (No such file or directory)
checked program was:
/* begin */
1: #include <libpq-fe.h>
2: 
3: /*top*/
4: int main() { return 0; }
5: int t() { void ((*volatile p)()); p = (void ((*)()))PQconnectdb; return 0; }
/* end */

"gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin11.0 -I.  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -I/usr/local/Cellar/postgresql/9.1.4/include -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L. -arch i386 -arch x86_64  -L/usr/local/Cellar/postgresql/9.1.4/lib     -lruby -lms/libpq  -lpthread -    ldl -lobjc  "
conftest.c: In function 't':
conftest.c:5: error: too few arguments to function 'PQconnectdb'
conftest.c: In function 't':
conftest.c:5: error: too few arguments to function 'PQconnectdb'
lipo: can't figure out the architecture type of: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//ccbZi3QN.out
checked program was:
/* begin */
1: #include <libpq-fe.h>
2: 
3: /*top*/
4: int main() { return 0; }
5: int t() { PQconnectdb(); return 0; }
/* end */

--------------------
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.