在Ubuntu上安装Python全局数组工具包

在Ubuntu上安装Python全局数组工具包,python,c,mpi,Python,C,Mpi,我正在尝试在笔记本电脑上安装全局阵列()。如《安装指南》中所述,我会./confgure,然后制作。这里我得到一个错误: ma/ma.c: In function 'list_verify': ma/ma.c:1379:17: error: format not a string literal and no format arguments [-Werror=format-security] (void)printf(preamble);

我正在尝试在笔记本电脑上安装全局阵列()。如《安装指南》中所述,我会./confgure,然后制作。这里我得到一个错误:

ma/ma.c: In function 'list_verify':
ma/ma.c:1379:17: error: format not a string literal and no format arguments [-Werror=format-security]
                 (void)printf(preamble);
                 ^
ma/ma.c:1403:17: error: format not a string literal and no format arguments [-Werror=format-security]
                 (void)printf(preamble);
                 ^
ma/ma.c:1428:17: error: format not a string literal and no format arguments [-Werror=format-security]
                 (void)printf(preamble);
                 ^
cc1: some warnings being treated as errors
make[2]: *** [ma/ma.lo] Error 1
make[2]: Leaving directory `/home/dimka/UT/Master/Parallel computing/Project/ga-5-3'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/dimka/UT/Master/Parallel computing/Project/ga-5-3'
make: *** [all] Error 2
有什么问题吗?我只需要Python模块。另外,我可以在不安装整个GAT的情况下使用Python模块吗

cc1:某些警告被视为错误


原因选项为
-Werror
;使用
-Wno error=format security
将其删除或选择性禁用。另见e。g

嘿,你们再次遇到安装问题:)是的,但这是一个有点不同的错误。我正在尝试安装framework,但出现错误。您的编译器标志中可能有
-Wall
(例如,作为makefile中
CFLAGS
的一部分)。我选中了,不,我在makefile中没有该标志。