File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,10 +94,10 @@ const ALLOC_OVERFLOW_FUNCTION = Ref(false)
9494function __init__ ()
9595 try
9696 if version (). major != VERSION . major || bits_per_limb () != BITS_PER_LIMB
97- msg = bits_per_limb () != BITS_PER_LIMB ? error : warn
98- msg ( " The dynamically loaded GMP library (v\" $( version ()) \" with __gmp_bits_per_limb == $( bits_per_limb ()) ) \n " ,
99- " does not correspond to the compile time version (v \" $VERSION \" with __gmp_bits_per_limb == $BITS_PER_LIMB ). \n " ,
100- " Please rebuild Julia. " )
97+ msg = """ The dynamically loaded GMP library (v \" $( version ()) \" with __gmp_bits_per_limb == $( bits_per_limb ()) )
98+ does not correspond to the compile time version (v\" $VERSION \" with __gmp_bits_per_limb == $BITS_PER_LIMB ).
99+ Please rebuild Julia. """
100+ bits_per_limb () != BITS_PER_LIMB ? @error (msg) : @warn (msg )
101101 end
102102
103103 ccall ((:__gmp_set_memory_functions , :libgmp ), Cvoid,
You can’t perform that action at this time.
0 commit comments