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

デフォルトから変更したいその他のオプションも一緒に指定します。

関連情報