https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96387
cents2823 at yahoo dot co.jp changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |FIXED
Status|WAITING |RESOLVED
--- Comment #4 from cents2823 at yahoo dot co.jp ---
Thank you for answering.
>Did you recompile GCC, MPFR and mpc after this change?
> If not then there is still no bug.
I have uninstalled and installed g++, but have not recompiled MPFR and mpc.
Does gmp struct change affect g++, MPFR, mpc?
I found a procedure today that does not cause g++ errors.
It's unclear why the new procedure shouldn't throw any errors.
This bug report is resolved because the error can be avoided.
Thanking you in advance.
Frome:Tsukamoto
Old procedure:
#1 gnu gmp gmp-h.in 150 line __mpz_struct
_mp_alloc int --> long int
_mp_size int --> long int
#2 gnu gmp gmp-h.in 188 line__mpf_struct
_mp_prec int --> long int
_mp_size int --> long int
#3 gmp install(configure,make,make check,make install)
#4 ln -nfs /usr/local/lib/libgmp.so.10.4.0
/usr/lib/x86_64-linux-gnu/libgmp.so.10
New procedure:
%1 gnu gmp gmp-h.in 188 line__mpf_struct
_mp_prec int --> long int
_mp_size int --> long int
%2 gmp install(configure,make,make check,make install)
%3 ln -nfs /usr/local/lib/libgmp.so.10.4.0 /usr/lib/x86_64-linux-
gnu/libgmp.so.10
%4 gnu gmp gmp-h.in 150 line __mpz_struct
_mp_alloc int --> long int
_mp_size int --> long int
%5 gmp install(configure,make,make check,make install)