Portable GMP for nettle for ecc-diff-fuzzer (#1755)

see https://gmplib.org/manual/Build-Options.html
This commit is contained in:
Catena cyber 2018-08-24 18:46:54 +02:00 committed by jonathanmetzman
parent c5bb59e245
commit 1b0567adda
1 changed files with 3 additions and 1 deletions

View File

@ -21,7 +21,9 @@
cd nettle
tar -xvf ../gmp-6.1.2.tar.bz2
cd gmp-6.1.2
./configure
#do not use assembly instructions as we do not know if they will be available on the machine who will run the fuzzer
#we could do instead --enable-fat
./configure --disable-assembly
make
make install
cd ..