如何从源代码构建 64 位版本的 libpq?

How build 64-bit version of libpq from source code?

我正在尝试从 C 代码连接到 PostgreSQL,我必须从源代码构建 libpq,因为我在 AIX 上。我按照此评论中的步骤操作 Where do i get libpq source? 但结果我得到了 32 位版本的 libpq.a,如何构建 64 位版本?

在 AIX 上编译比在其他平台上更难... 始终创建一个逐渐改进的脚本,直到获得可用版本。可能的开始:

#!/bin/sh

#assuming gcc
GCCLIB=$(dirname $(gcc -maix64 -pthread -print-file-name=libgcc_s.a))
export CFLAGS='-maix64 -mtune=native -pthread'
export CPPFLAGS='-D_GNU_SOURCE -D_XOPEN_SOURCE=500 -D_ALL_SOURCE'
export LDFLAGS="-maix64 -Wl,-brtl -Wl,-blibpath:/usr/local/lib64:${GCCLIB}:/usr/lib -L/usr/local/lib64 -pthread"
export OBJECT_MODE=64

./configure --prefix=/usr/local \
    --libdir=/usr/local/lib64   \
    --enable-shared             \
    --enable-static             \
    2>&1 | tee log.configure

make all 2>&1 | tee log.make.all
make install 2>&1 | tee log.make.install

-q64 编译器选项启用 64 位(编译器文档中有信息)

快速 google 搜索 xlC 64 位可以得到此 link,您可能会发现它有帮助。

http://northstar-www.dartmouth.edu/doc/ibmcxx/en_US/doc/complink/tasks/tubld64a.htm