manuel-serrano / bigloo

a practical Scheme compiler
http://www-sop.inria.fr/indes/fp/Bigloo
Other
138 stars 19 forks source link

gmp and srfi-27 #12

Closed svenha closed 5 years ago

svenha commented 5 years ago

I found an inconsistency: if configure detects that there is no gmp, then srfi-27 is disabled automatically. If --no-gmp is explicitly set on the configure command line, srfi-27 is not disabled. I don't know which of the two locations should be adjusted. Similarly, the output of autoconf/limbs differs: empty (autom.) vs 1 (--no-gmp)

manuel-serrano commented 5 years ago

Yes. You are correct. These are mistakes. I'm working at fixing them. Thanks for your report.

svenha commented 5 years ago

The 4.3d tar file from 2018-11-22 fixes the problem: --no-gmp disables srfi-27. Thanks.