From 45d480a8fa81e2656da7c6675fcdcea8668c6462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCnzli?= Date: Wed, 29 Jan 2020 21:35:09 +0100 Subject: [PATCH] Cm[ox]_format: document fields that are stored in reverse order. --- file_formats/cmo_format.mli | 2 ++ file_formats/cmx_format.mli | 2 ++ 2 files changed, 4 insertions(+) diff --git a/file_formats/cmo_format.mli b/file_formats/cmo_format.mli index d953a8817..0952157b3 100644 --- a/file_formats/cmo_format.mli +++ b/file_formats/cmo_format.mli @@ -53,6 +53,8 @@ type compilation_unit = type library = { lib_units: compilation_unit list; (* List of compilation units *) lib_custom: bool; (* Requires custom mode linking? *) + (* In the following fields the lists are reversed with respect to + how they end up being used on the command line. *) lib_ccobjs: string list; (* C object files needed for -custom *) lib_ccopts: string list; (* Extra opts to C compiler *) lib_dllibs: string list } (* DLLs needed *) diff --git a/file_formats/cmx_format.mli b/file_formats/cmx_format.mli index 0efa32eec..91ad2d1ff 100644 --- a/file_formats/cmx_format.mli +++ b/file_formats/cmx_format.mli @@ -52,5 +52,7 @@ type unit_infos = type library_infos = { lib_units: (unit_infos * Digest.t) list; (* List of unit infos w/ MD5s *) + (* In the following fields the lists are reversed with respect to + how they end up being used on the command line. *) lib_ccobjs: string list; (* C object files needed *) lib_ccopts: string list } (* Extra opts to C compiler *)