安装 CHARM 工具包时 ./configure.sh 给出不成功的结果

安装 CHARM 工具包时 ./configure.sh 给出不成功的结果

以下是 ./configure.sh 的结果快照 -

CFLAGS            -O2 -g 
CHARM_CFLAGS       -m32 -Wall -Wundef -Wwrite-strings -Wmissing-prototypes  -fstack-protector-all -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits
LDFLAGS           -m32 
make              make
python            /usr/bin/python3
build_ext options build_ext 
install           install
host CPU          i386
wget              /usr/bin/wget
gprof enabled     no
profiler          no
static build      no
-Werror enabled   no
integer module    yes
ecc module        yes
pairing module    yes
disable benchmark no
libm found        yes
libgmp found      yes
libpbc found      no
libcrypto found   yes
Documentation     no

如何“启用”并将“否”转换为“是”,因为这个问题在 make 命令(在此之后运行)中也产生了问题?

谢谢

答案1

通常你可以使用 --help 选项运行 configure.sh 来获取帮助 - 例如:

./configure.sh --help

在帮助文本中,你可以看到你的选项。要禁用整数模块,你可以这样写:

./configure.sh --disable-integer

您可能希望将任何其他选项连同默认选项一起更改。

相关内容