aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Roux2019-10-18 12:03:23 +0200
committerPierre Roux2019-11-01 10:21:43 +0100
commit3b1edf7cf689a54d03226072dd3b359026588e26 (patch)
treef880c28437fc8cf896f5d1bff608fac3c081c4cc
parent7088b2d4981496d5a2acf24566f486219237ef99 (diff)
Add the IEEE-754 arch requirement in INSTALL
Co-authored-by: Erik Martin-Dorel <erik.martin-dorel@irit.fr>
-rw-r--r--INSTALL10
1 files changed, 10 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index e30706e005..d9efd55b95 100644
--- a/INSTALL
+++ b/INSTALL
@@ -21,9 +21,19 @@ WHAT DO YOU NEED ?
- a C compiler
+ - an IEEE-754 compliant architecture with rounding to nearest
+ ties to even as default rounding mode (most architectures
+ should work nowadays)
+
- for CoqIDE, the lablgtk development files (version >= 3.0.0),
and the GTK 3.x libraries including gtksourceview3.
+ The IEEE-754 compliance is required by primitive floating-point
+ numbers (Require Import Floats). Common sources of incompatibility
+ are checked at configure time, preventing compilation. In the,
+ unlikely, event an incompatibility remains undetected, using Floats
+ would enable to prove False on this architecture.
+
Note that num and lablgtk should be properly registered with
findlib/ocamlfind as Coq's makefile will use it to locate the
libraries during the build.