summaryrefslogtreecommitdiff
path: root/INSTALL.adoc
diff options
context:
space:
mode:
authorSébastien Hinderer <Sebastien.Hinderer@inria.fr>2017-03-28 17:04:35 +0200
committerSébastien Hinderer <Sebastien.Hinderer@inria.fr>2017-04-26 19:28:17 +0200
commit40fcbb5f0a70171193891c863a325f31291f16f7 (patch)
tree8f268ceb14ea77bd3c1cb9ac2b9c71c36d119b5f /INSTALL.adoc
parent418b706cc996cf69b53159ecfe1d699c4a1c5398 (diff)
downloadocaml-40fcbb5f0a70171193891c863a325f31291f16f7.tar.gz
Move configuration header files from the config to the byterun/caml directory
This commit moves: - config/m.h to byterun/caml/m.h - config/s.h to byterun/caml/s.h Consequently, m.h and s.h now get installed alongside other OCaml header files. This commit also updates the .depend files, introducing updates in the dependencies which are not consequences of this commit itself.
Diffstat (limited to 'INSTALL.adoc')
-rw-r--r--INSTALL.adoc9
1 files changed, 5 insertions, 4 deletions
diff --git a/INSTALL.adoc b/INSTALL.adoc
index ca275efeb5..03a00b6229 100644
--- a/INSTALL.adoc
+++ b/INSTALL.adoc
@@ -25,8 +25,8 @@
./configure
+
-This generates the three configuration files `Makefile`, `m.h` and `s.h`
-in the `config/` subdirectory.
+This generates the three configuration files `config/Makefile`,
+`byterun/caml/m.h` and `byterun/caml/s.h`.
+
The `configure` script accepts the following options:
+
@@ -313,8 +313,9 @@ In the latter case, the destination directory defaults to the
Read the "common problems" and "machine-specific hints" section at the end of
this file.
-Check the files `m.h` and `s.h` in `config/`. Wrong endianness or alignment
-constraints in `m.h` will immediately crash the bytecode interpreter.
+Check the files `m.h` and `s.h` in `byterun/caml/`.
+Wrong endianness or alignment constraints in `machine.h` will
+immediately crash the bytecode interpreter.
If you get a "segmentation violation" signal, check the limits on the stack size
and data segment size (type `limit` under csh or `ulimit -a` under bash). Make