安裝 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

與您想要更改預設值的任何其他選項一起。

相關內容