如何为 Python 的自定义安装构建 pygobject?

How to build pygobject for custom installation of Python?

出于我自己的原因,我在 Debian Wheezy 上从源代码安装了 python3.3。我想向其中添加一些模块,包括 pygobject(gi.repository 等)。我想要的大多数软件已经在 python3.2(Wheezy 上的默认 python3)的同一台机器上运行并安装了。

我可以通过操作 PYTHONPATH 将 python3.3 指向泛型 /usr/lib/python3/dist-packages 以获取 already-installed python3.2 代码,但是(当然? ) 无法正确导入。所以,我认为我需要从 python3.3.

的源代码构建 pygobject

获得 pygobject 的 Wheezy 源包后,我尝试了以下操作,将配置指向下载的 pygobject 目录中的 python3.3 安装和可执行文件:

$ PYTHON=/usr/local/bin/python3.3
$ export PYTHON
$ ./configure --prefix=/usr/local

输出结果如下:

checking whether make supports nested variables... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for some Win32 platform... no
checking for native Win32... no
checking how to print strings... printf
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating ./config.lt
config.lt: creating libtool
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking whether gcc and cc understand -c and -o together... yes
checking whether /usr/local/bin/python3.3 version >= 2.5.2... yes
checking for /usr/local/bin/python3.3 version... 3.3
checking for /usr/local/bin/python3.3 platform... linux
checking for /usr/local/bin/python3.3 script directory... ${prefix}/lib/python3.3/site-packages
checking for /usr/local/bin/python3.3 extension module directory... ${exec_prefix}/lib/python3.3/site-packages
checking for /usr/local/bin/python3.3 >= 3.1... yes
checking for python version... (cached) 3.3
checking for python platform... (cached) linux
checking for python script directory... (cached) ${prefix}/lib/python3.3/site-packages
checking for python extension module directory... (cached) ${exec_prefix}/lib/python3.3/site-packages
checking for headers required to compile python extensions... not found
configure: error: Python headers not found

我已经检查了包 python-devpython3-dev 是否已安装,但当然这些是针对 python2.7 的默认 Wheezy pythons 和python3.2,分别。那么,我该如何更改配置来为 python3.3 选择正确的 headers?

如果相关,确切的版本号如下:python-3.3.6, pygobject-3.2.2.

build 目录中的 config.log 文件对于解决这个问题非常有用。

python3.3 headers 安装在 /usr/local/include/python3.3m,但 pygobject 构建过程在错误的地方查找,在 /usr/local/include/python3.3(缺少 m)。要更正此配置需要调整环境标志:

$ PYTHON=/usr/local/bin/python3.3
$ export PYTHON
$ CPPFLAGS=-I/usr/local/include/python3.3m
$ export CPPFLAGS
$ ./configure --prefix=/usr/local

无法找到库时的其他问题可以通过配置 PKG_CONFIG_PATH 来解决,如果需要指定多个,则使用冒号作为分隔符(有关示例,请参见 answers to this question)。在 Debian 上,我需要以下附加行才能成功 运行 ./configure:

$ PKG_CONFIG_PATH=/usr/lib/pkgconfig
$ export PKG_CONFIG_PATH