0

我正在尝试安装 PARI/GP,在配置步骤中我得到:

$ ./Configure
[...]
Looking for the compilers ...
...cc is /usr/bin/cc
...gcc is /usr/local/bin/gcc
GNU compiler version 4.8.0 20120705 (experimental) (GCC)
###
### C compiler does not work. PARI/GP requires an ANSI C compiler! Aborting.
###
### Compiler was: /usr/local/bin/gcc  
$ gcc --version
gcc (GCC) 4.8.0 20120705 (experimental)

这很奇怪,因为文档说:

"Only ANSI C and C++ compilers are supported.  Choosing the GNU compiler
gcc/g++ enables the inlining of kernel routines (about 20% speedup; if you
use g++, it is a good idea to include the -fpermissive flag).  If you choose
not to use gcc, the C++ version of Pari will be a little faster because of
general inlining, but can be used in library mode only with C++ programs.
We strongly recommand using gcc all the way through."

我也尝试过使用 g++ 得到相同的结果。

我正在尝试在 linux x86_64 上编译。

有任何想法吗?提前致谢,

米;

4

2 回答 2

1

我有同样的问题。这是 Linux Mint 17.1 64 位的解决方案:

sudo apt-get install gcc libc6-dev libgmp-dev

此命令还安装 GMP 库(建议用于 PARI/GP)。

感谢 KB 关于如何查看问题的提示。

于 2015-03-11T13:08:30.737 回答
1

PARI 顶层的 config/get_cc 脚本试图编译一个测试程序,但失败了。

寻找线

$CC $CFLAGS $extraflag -o $exe ansi.c 2>/dev/null && $RUNTEST $exe

并删除 2>/dev/null。Configure 现在应该从编译器打印出明确的错误消息。他们应该提供提示。

于 2013-04-05T15:34:44.467 回答