0

我的 Fedora VM 上有 Python 2.7,我想升级到 Python 3.3.2。我这样做了:

wget http://python.org/ftp/python/3.3.2/Python-3.3.2.tar.bz2
tar xf Python-3.3.2.tar.bz2
cd Python-3.3.2
./configure --prefix=/usr/local

然后尝试了

make

只得到这个错误:

Objects/abstract.c:2281:20: error: variable 'countva' is uninitialized when
      used here [-Werror,-Wuninitialized]
        Py_VA_COPY(countva, va);
        ~~~~~~~~~~~^~~~~~~~~~~~
Include/pyport.h:875:37: note: expanded from:
#define Py_VA_COPY(x, y) Py_MEMCPY((x), (y), sizeof(va_list))
                                    ^
Objects/abstract.c:2278:20: note: initialize the variable 'countva' to
      silence this warning
    va_list countva;
                   ^
                    = NULL
1 error generated.
make: *** [Objects/abstract.o] Error 1

...什么?我该如何解决?Python安装文件应该没有问题吧?

4

1 回答 1

0

Python存档没有错,它一定是你的环境。

我在我的系统上复制了您的确切步骤,它在我的系统上运行。我认为-Werror开关是罪魁祸首。它将警告变成错误。您的编译器实际遇到的只是一个警告。

你可以在同一个终端输入echo $CFLAGS并发布输出吗?在我的系统上,这个命令将产生一个空行。也许你有一些CFLAGS设置在你的~/.bashrc?或者,也许你在你的which sets中做source了一个文件?~/.bashrcCFLAGS

于 2013-07-30T20:29:14.883 回答