Closed felmoudden closed 3 years ago
Yeah I think you're using a version of GMP that's old enough to not have mpz_clears
yet (the 4.1 docs, seem to support this, there aren't any 4.3 docs that I could find).
You could try building GMP 6.x from source, that's the version that this library was written against. Otherwise you'd probably have to fork this and replace all the mpz_clears
and mpz_inits
calls to individual mpz_clear
and mpz_init
calls, which could get tedious fast.
Hi,
I'm having difficulties to install it properly. I'm using a compiled version python 3.8.1 I first tried with
pip install fastecdsa
the install went fine but i got this error
I also tried different versions but same issue. I also tried with the setup.py file
everything was fine except those warnings
When I use this command
python3.8.1/Python-3.8.1/build/bin/python3 setup.py test
I'm having almost all the tests failing for the same error
I have python-devel and gmp-devel installed but I think it's related to how I compiled Python 3.8.1
if you have some tips it will be great.
Thanks for your support.
EDIT
I think the issue is coming from the gmp lib on rhel6
000000347100a0e0 T gmp_randclear 000000347100ac90 T gmp_randclear_mt 000000347100bf80 T gmpf_clear 0000003471022a60 T gmpq_clear 0000003471013b60 T __gmpz_clear
gmp-4.3.1-13.el6.x86_64 gmp-devel-4.3.1-13.el6.x86_64
I don't think there is a more recent version available en rhel6...