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)
94
94
function __init__ ()
95
95
try
96
96
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 )
101
101
end
102
102
103
103
ccall ((:__gmp_set_memory_functions , :libgmp ), Cvoid,
You can’t perform that action at this time.
0 commit comments