- github
- ocaml
- opam-repository
- 19c70f
- compilers,4.14,dune.3.22.0~alpha2,revdeps,herdtools7.7.55
(not at the head of any monitored branch or PR)
2026-03-16 19:17.35: New job: test herdtools7.7.55 with dune.3.22.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29547/head (19c70fd6a788b154ec5e9fe26bca1d12fb2519be)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29547/head" && git reset --hard 19c70fd6
git fetch origin master
git merge --no-edit 4f056bfedf536e66065c3783e694e6aa0b38261a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2
RUN opam reinstall dune.3.22.0~alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall herdtools7.7.55; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'herdtools7.7.55' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test herdtools7.7.55) || true
RUN opam reinstall --with-test --verbose herdtools7.7.55; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'herdtools7.7.55' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-16 19:17.35: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-dune.3.22.0~alpha2-herdtools7.7.55-19c70fd6a788b154ec5e9fe26bca1d12fb2519be"
2026-03-16 19:17.35: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall herdtools7.7.55;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'herdtools7.7.55' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test herdtools7.7.55) || true"))
(run (shell "opam reinstall --with-test --verbose herdtools7.7.55;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'herdtools7.7.55' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-16 19:17.35: Waiting for resource in pool OCluster
2026-03-17 04:57.33: Waiting for worker…
2026-03-17 04:59.55: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 88% (16357/18461)
Updating files: 89% (16431/18461)
Updating files: 90% (16615/18461)
Updating files: 91% (16800/18461)
Updating files: 92% (16985/18461)
Updating files: 93% (17169/18461)
Updating files: 94% (17354/18461)
Updating files: 95% (17538/18461)
Updating files: 96% (17723/18461)
Updating files: 97% (17908/18461)
Updating files: 98% (18092/18461)
Updating files: 99% (18277/18461)
Updating files: 100% (18461/18461)
Updating files: 100% (18461/18461), done.
HEAD is now at 4f056bfedf Merge pull request #29543 from Zaneham/add-olint-0.1.0
Updating 4f056bfedf..19c70fd6a7
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha2/opam | 39 +++++++++++
.../dune-build-info.3.22.0~alpha2/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha2/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha2/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha2/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha2/opam
create mode 100644 packages/dune/dune.3.22.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-17 05:20.06 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 05:20.06 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 05:20.06 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-03-17 05:20.06 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 05:20.06 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 05:20.08 ---> using "bac94271bd2933048ab9ec083de7359406ae7b709f9e625d1aacde394e5b6b85" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 05:20.08 ---> using "1963dd823dac22306d550e5e9c9f971346ae5d465407ab924aff86b04a5120b3" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 2s (4753 kB/s)
- Reading package lists...
-
2026-03-17 05:20.08 ---> using "2bbae9754f2da55382df5a713573b4f2579b518f80eaef97920d7868fdc429fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
dune is now pinned to version 3.22.0~alpha2
2026-03-17 05:20.08 ---> using "3b312e1ba2e2d3ce6c50234ba2e62c6d827f15439acf5c47c65286f0b2bce15a" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha2 (cached)
-> installed dune.3.22.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 05:20.08 ---> using "79a7862cc80cedc04a487927a5645f883e0c17c692a64a036ab827a7afe98a62" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall herdtools7.7.55;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'herdtools7.7.55' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
herdtools7.7.55 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install herdtools7 7.55
- install menhir 20260209 [required by herdtools7]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by menhir]
- install menhirSdk 20260209 [required by menhir]
- install ocamlfind 1.9.8 [required by herdtools7]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved herdtools7.7.55 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed menhirCST.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed menhirGLR.20260209
-> installed ocamlfind.1.9.8
-> installed menhir.20260209
-> installed herdtools7.7.55
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 05:22.45 ---> saved as "52f6c28613ccfd3efe92e76d2d1882a5aa30cecdb11fbc0a19e2cceb99748f90"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test herdtools7.7.55) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile herdtools7 7.55
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved herdtools7.7.55 (https://opam.ocaml.org/cache)
-> removed herdtools7.7.55
-> installed herdtools7.7.55
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 05:24.30 ---> saved as "b904627348145a5e6f78e8017181e096223b5e8c38937051171f0a340d501ef3"
/home/opam: (run (shell "opam reinstall --with-test --verbose herdtools7.7.55;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'herdtools7.7.55' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile herdtools7 7.55
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [herdtools7.7.55: extract]
-> retrieved herdtools7.7.55 (cached)
Processing 2/4: [herdtools7: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "sh" "./dune-build.sh" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/herdtools7.7.55)
- File "dune-project", line 3, characters 14-17:
- 3 | (using menhir 2.0)
- ^^^
- Warning: Version 2.0 of the menhir extension is not supported until version
- 1.4 of the dune language.
- Supported versions of this extension in version 1.2 of the dune language:
- - 1.0
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/check402.cmo -c -impl lib/check402.ml)
- File "lib/check402.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/myMap.cmo -c -impl lib/myMap.ml)
- File "lib/myMap.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/echo.cmo -c -impl lib/echo.ml)
- File "lib/echo.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/warn.cmi -c -intf lib/warn.mli)
- File "lib/warn.mli", line 21, characters 22-23:
- 21 | module Make : functor(O:Config) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/tar.cmi -c -intf lib/tar.mli)
- File "lib/tar.mli", line 46, characters 12-13:
- 46 | module Make(O:Option) : S
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/archs.cmo -c -impl lib/Archs.ml)
- File "lib/Archs.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/lexUtils.cmi -c -intf lib/lexUtils.mli)
- File "lib/lexUtils.mli", line 31, characters 23-24:
- 31 | module Make : functor (O:Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/lexRename.cmi -c -intf lib/lexRename.mli)
- File "lib/lexRename.mli", line 25, characters 22-23:
- 25 | module Make : functor(O:Config) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/location.cmo -c -impl lib/location.ml)
- File "lib/location.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/checkName.cmi -c -intf lib/checkName.mli)
- File "lib/checkName.mli", line 28, characters 4-5:
- 28 | (I:sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter I.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/myLib.cmi -c -intf lib/myLib.mli)
- File "lib/myLib.mli", line 28, characters 11-12:
- 28 | functor (C:Config) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/scopeLexer.cmi -c -intf lib/scopeLexer.mli)
- File "lib/scopeLexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/parseModel.cmi -c -intf lib/parseModel.mli)
- File "lib/parseModel.mli", line 24, characters 23-24:
- 24 | module Make : functor (O:Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/splitter.cmi -c -intf lib/splitter.mli)
- File "lib/splitter.mli", line 58, characters 23-24:
- 58 | module Make : functor (O:Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/int32Constant.cmo -c -impl lib/int32Constant.ml)
- File "lib/int32Constant.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/int64Constant.cmo -c -impl lib/int64Constant.ml)
- File "lib/int64Constant.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/parsedConstant.cmo -c -impl lib/parsedConstant.ml)
- File "lib/parsedConstant.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/outTar.cmi -c -intf lib/outTar.mli)
- File "lib/outTar.mli", line 20, characters 23-24:
- 20 | module Make : functor (O:Tar.Option) -> OutTests.S
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/interpreter.cmo -c -impl lib/interpreter.ml)
- File "lib/interpreter.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/pseudo.cmo -c -impl lib/pseudo.ml)
- File "lib/pseudo.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/bellInterpreter.cmo -c -impl lib/BellInterpreter.ml)
- File "lib/BellInterpreter.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/aRMBase.cmo -c -impl lib/ARMBase.ml)
- File "lib/ARMBase.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/bellBase.cmo -c -impl lib/BellBase.ml)
- File "lib/BellBase.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/mIPSBase.cmo -c -impl lib/MIPSBase.ml)
- File "lib/MIPSBase.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/x86Base.cmo -c -impl lib/X86Base.ml)
- File "lib/X86Base.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/readBell.cmo -c -impl lib/readBell.ml)
- File "lib/readBell.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/bellCheck.cmi -c -intf lib/BellCheck.mli)
- File "lib/BellCheck.mli", line 20, characters 9-10:
- 20 | functor (O:sig val debug : bool val compat :bool end) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- File "lib/BellCheck.mli", line 23, characters 9-10:
- 23 | (C:sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/genParser.cmi -c -intf lib/genParser.mli)
- File "lib/genParser.mli", line 64, characters 5-6:
- 64 | (C:Config)
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- File "lib/genParser.mli", line 66, characters 5-6:
- 66 | (L:LexParse with type instruction = A.parsedPseudo) :
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter L.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/aArch64Base.cmo -c -impl lib/AArch64Base.ml)
- File "lib/AArch64Base.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/cBase.cmo -c -impl lib/CBase.ml)
- File "lib/CBase.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/pPCBase.cmo -c -impl lib/PPCBase.ml)
- File "lib/PPCBase.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/rISCVBase.cmo -c -impl lib/RISCVBase.ml)
- File "lib/RISCVBase.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/x86_64Base.cmo -c -impl lib/X86_64Base.ml)
- File "lib/X86_64Base.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/simpleDumper.cmo -c -impl lib/simpleDumper.ml)
- File "lib/simpleDumper.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/int32Value.cmo -c -impl lib/int32Value.ml)
- File "lib/int32Value.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/modelLexer.cmi -c -intf lib/modelLexer.mli)
- File "lib/modelLexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/int64Value.cmo -c -impl lib/int64Value.ml)
- File "lib/int64Value.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/stateLexer.cmi -c -intf lib/stateLexer.mli)
- File "lib/stateLexer.mli", line 19, characters 23-24:
- 19 | module Make : functor (O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/cGenParser_lib.cmo -c -impl lib/CGenParser_lib.ml)
- File "lib/CGenParser_lib.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/mIPSLexer.cmi -c -intf lib/MIPSLexer.mli)
- File "lib/MIPSLexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/x86Lexer.cmi -c -intf lib/X86Lexer.mli)
- File "lib/X86Lexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/bellLexer.cmi -c -intf lib/BellLexer.mli)
- File "lib/BellLexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/aRMLexer.cmi -c -intf lib/ARMLexer.mli)
- File "lib/ARMLexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/rISCVLexer.cmi -c -intf lib/RISCVLexer.mli)
- File "lib/RISCVLexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/x86_64Lexer.cmi -c -intf lib/X86_64Lexer.mli)
- File "lib/X86_64Lexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/pPCLexer.cmi -c -intf lib/PPCLexer.mli)
- File "lib/PPCLexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/cLexer.cmi -c -intf lib/CLexer.mli)
- File "lib/CLexer.mli", line 17, characters 22-23:
- 17 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I lib/.herdtools.objs/byte -no-alias-deps -o lib/.herdtools.objs/byte/aArch64Lexer.cmi -c -intf lib/AArch64Lexer.mli)
- File "lib/AArch64Lexer.mli", line 19, characters 22-23:
- 19 | module Make : functor(O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/cat2html.cmo -c -impl tools/cat2html.ml)
- File "tools/cat2html.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/callMap.cmo -c -impl jingle/callMap.ml)
- File "jingle/callMap.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mapply.cmo -c -impl tools/mapply.ml)
- File "tools/mapply.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mcond.cmo -c -impl tools/mcond.ml)
- File "tools/mcond.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mcycles.cmo -c -impl tools/mcycles.ml)
- File "tools/mcycles.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mfind.cmo -c -impl tools/mfind.ml)
- File "tools/mfind.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mnames.cmo -c -impl tools/mnames.ml)
- File "tools/mnames.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/rehash.cmo -c -impl tools/rehash.ml)
- File "tools/rehash.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mflags.cmo -c -impl tools/mflags.ml)
- File "tools/mflags.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/splitdot.cmo -c -impl tools/splitdot.ml)
- File "tools/splitdot.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/logConstr.cmo -c -impl tools/logConstr.ml)
- File "tools/logConstr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/cDumper.cmo -c -impl tools/CDumper.ml)
- File "tools/CDumper.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/toolParse.cmi -c -intf tools/toolParse.mli)
- File "tools/toolParse.mli", line 23, characters 15-16:
- 23 | functor (B: functor(A:ArchBase.S) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter B.
- File "tools/toolParse.mli", line 31, characters 15-16:
- 31 | functor (B: functor(A:ArchBase.S) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter B.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/lexHashLog.cmi -c -intf tools/lexHashLog.mli)
- File "tools/lexHashLog.mli", line 26, characters 10-11:
- 26 | functor (C:Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/trTrue.cmi -c -intf tools/trTrue.mli)
- File "tools/trTrue.mli", line 28, characters 12-13:
- 28 | module Make(O:Config)(Out:Out) : sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mixOption.cmo -c -impl tools/mixOption.ml)
- File "tools/mixOption.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/dumperMiscParser.cmo -c -impl tools/dumperMiscParser.ml)
- File "tools/dumperMiscParser.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/transposeDumper.cmo -c -impl tools/transposeDumper.ml)
- File "tools/transposeDumper.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/parseMap.cmo -c -impl jingle/parseMap.ml)
- File "jingle/parseMap.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/version.cmo -c -impl jingle/Version.ml)
- File "jingle/Version.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/cDumper.cmo -c -impl jingle/cDumper.ml)
- File "jingle/cDumper.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/machMixed.cmo -c -impl gen/machMixed.ml)
- File "gen/machMixed.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/scopeGen.cmo -c -impl gen/scopeGen.ml)
- File "gen/scopeGen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/annot.cmi -c -intf gen/annot.mli)
- File "gen/annot.mli", line 19, characters 23-24:
- 19 | module Make : functor (O:LexUtils.Config) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/arch.cmo -c -impl jingle/arch.ml)
- File "jingle/arch.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/version.cmo -c -impl gen/Version.ml)
- File "gen/Version.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/lineUtils.cmo -c -impl gen/lineUtils.ml)
- File "gen/lineUtils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/lexConf_gen.cmo -c -impl gen/lexConf_gen.ml)
- File "gen/lexConf_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/lexLog_gen.cmo -c -impl gen/lexLog_gen.ml)
- File "gen/lexLog_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mobserved.cmo -c -impl tools/mobserved.ml)
- File "tools/mobserved.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "tools/mobserved.ml", line 26, characters 12-18:
- 26 | module Make(Config:Config) =
- ^^^^^^
- Warning 60 [unused-module]: unused module Config.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mproj.cmo -c -impl tools/mproj.ml)
- File "tools/mproj.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mlisa2c.cmo -c -impl tools/mlisa2c.ml)
- File "tools/mlisa2c.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/madd.cmo -c -impl tools/madd.ml)
- File "tools/madd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "tools/madd.ml", line 34, characters 16-17:
- 34 | module Make(A:ArchBase.S) = struct
- ^
- Warning 60 [unused-module]: unused module A.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/msort.cmo -c -impl tools/msort.ml)
- File "tools/msort.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mdiag.cmo -c -impl tools/mdiag.ml)
- File "tools/mdiag.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mshowhashes.cmo -c -impl tools/mshowhashes.ml)
- File "tools/mshowhashes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mhash.cmo -c -impl tools/mhash.ml)
- File "tools/mhash.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "tools/mhash.ml", line 53, characters 16-17:
- 53 | module Make(A:ArchBase.S) = struct
- ^
- Warning 60 [unused-module]: unused module A.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mtrue.cmo -c -impl tools/mtrue.ml)
- File "tools/mtrue.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/dumper.cmo -c -impl tools/dumper.ml)
- File "tools/dumper.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/archExtra_tools.cmi -c -intf tools/archExtra_tools.mli)
- File "tools/archExtra_tools.mli", line 19, characters 13-14:
- 19 | functor (O : sig val hexa : bool end) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mixPerm.cmo -c -impl tools/mixPerm.ml)
- File "tools/mixPerm.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/version_jingle.cmo -c -impl jingle/Version_jingle.ml)
- File "jingle/Version_jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mlock.cmo -c -impl tools/mlock.ml)
- File "tools/mlock.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/prettyProg.cmo -c -impl tools/prettyProg.ml)
- File "tools/prettyProg.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/archExtra_gen.cmo -c -impl gen/archExtra_gen.ml)
- File "gen/archExtra_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/aArch64Arch_jingle.cmo -c -impl jingle/AArch64Arch_jingle.ml)
- File "jingle/AArch64Arch_jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/bellArch_jingle.cmo -c -impl jingle/BellArch_jingle.ml)
- File "jingle/BellArch_jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/version_gen.cmo -c -impl gen/Version_gen.ml)
- File "gen/Version_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/logRelax.cmo -c -impl gen/logRelax.ml)
- File "gen/logRelax.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/aRMArch_jingle.cmo -c -impl jingle/ARMArch_jingle.ml)
- File "jingle/ARMArch_jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/cArch_jingle.cmo -c -impl jingle/CArch_jingle.ml)
- File "jingle/CArch_jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/mapping.cmo -c -impl jingle/mapping.ml)
- File "jingle/mapping.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/pPCArch_jingle.cmo -c -impl jingle/PPCArch_jingle.ml)
- File "jingle/PPCArch_jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/rISCVArch_jingle.cmo -c -impl jingle/RISCVArch_jingle.ml)
- File "jingle/RISCVArch_jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/splitcond.cmo -c -impl tools/splitcond.ml)
- File "tools/splitcond.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/ksort.cmo -c -impl tools/ksort.ml)
- File "tools/ksort.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mselect.cmo -c -impl tools/mselect.ml)
- File "tools/mselect.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/logState.cmi -c -intf tools/logState.mli)
- File "tools/logState.mli", line 90, characters 12-13:
- 90 | module Make(O:sig val verbose : int end) : sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/gen_theme.cmo -c -impl jingle/gen_theme.ml)
- File "jingle/gen_theme.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/machAtom.cmi -c -intf gen/machAtom.mli)
- File "gen/machAtom.mli", line 25, characters 23-24:
- 25 | module Make : functor (C:Config) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/recond.cmo -c -impl tools/recond.ml)
- File "tools/recond.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/alpha.cmo -c -impl tools/alpha.ml)
- File "tools/alpha.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/lexLog_tools.cmi -c -intf tools/lexLog_tools.mli)
- File "tools/lexLog_tools.mli", line 26, characters 12-13:
- 26 | module Make(O:Config) : sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/key.cmi -c -intf tools/key.mli)
- File "tools/key.mli", line 35, characters 12-15:
- 35 | module Make(Opt:Config) : sig
- ^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Opt.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/aArch64Arch_gen.cmo -c -impl gen/AArch64Arch_gen.ml)
- File "gen/AArch64Arch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/config.cmo -c -impl gen/config.ml)
- File "gen/config.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/readRelax.cmo -c -impl gen/readRelax.ml)
- File "gen/readRelax.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/knames.cmo -c -impl tools/knames.ml)
- File "tools/knames.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mixMerge.cmo -c -impl tools/mixMerge.ml)
- File "tools/mixMerge.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mcmp.cmo -c -impl tools/mcmp.ml)
- File "tools/mcmp.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mlog2name.cmo -c -impl tools/mlog2name.ml)
- File "tools/mlog2name.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mdiff.cmo -c -impl tools/mdiff.ml)
- File "tools/mdiff.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mfilter.cmo -c -impl tools/mfilter.ml)
- File "tools/mfilter.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/moutcomes.cmo -c -impl tools/moutcomes.ml)
- File "tools/moutcomes.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/msum.cmo -c -impl tools/msum.ml)
- File "tools/msum.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mtopos.cmo -c -impl tools/mtopos.ml)
- File "tools/mtopos.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mlog2cond.cmo -c -impl tools/mlog2cond.ml)
- File "tools/mlog2cond.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/matrix.cmi -c -intf tools/matrix.mli)
- File "tools/matrix.mli", line 87, characters 12-15:
- 87 | module Dump(Opt:Config) :
- ^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Opt.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/aRMArch_gen.cmo -c -impl gen/ARMArch_gen.ml)
- File "gen/ARMArch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I jingle/.jingle.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o jingle/.jingle.eobjs/byte/jingle.cmo -c -impl jingle/jingle.ml)
- File "jingle/jingle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/mIPSArch_gen.cmo -c -impl gen/MIPSArch_gen.ml)
- File "gen/MIPSArch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/x86Arch_gen.cmo -c -impl gen/X86Arch_gen.ml)
- File "gen/X86Arch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/cArch_gen.cmo -c -impl gen/CArch_gen.ml)
- File "gen/CArch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/genUtils.cmi -c -intf gen/genUtils.mli)
- File "gen/genUtils.mli", line 37, characters 9-12:
- 37 | functor (Cfg:Config) ->
- ^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Cfg.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/x86_64Arch_gen.cmo -c -impl gen/X86_64Arch_gen.ml)
- File "gen/X86_64Arch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mrcu.cmo -c -impl tools/mrcu.ml)
- File "tools/mrcu.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/bellArch_gen.cmo -c -impl gen/BellArch_gen.ml)
- File "gen/BellArch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/pPCArch_gen.cmo -c -impl gen/PPCArch_gen.ml)
- File "gen/PPCArch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/rISCVArch_gen.cmo -c -impl gen/RISCVArch_gen.ml)
- File "gen/RISCVArch_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mprog.cmo -c -impl tools/mprog.ml)
- File "tools/mprog.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/edge.cmo -c -impl gen/edge.ml)
- File "gen/edge.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mmixer.cmo -c -impl tools/mmixer.ml)
- File "tools/mmixer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I tools/.mfind.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o tools/.mfind.eobjs/byte/mcompare.cmo -c -impl tools/mcompare.ml)
- File "tools/mcompare.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/mexpand.cmo -c -impl gen/mexpand.ml)
- File "gen/mexpand.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "gen/mexpand.ml", line 27, characters 12-14:
- 27 | module Make(Co:Config) (A:Arch_gen.S) = struct
- ^^
- Warning 60 [unused-module]: unused module Co.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/namer.cmo -c -impl gen/namer.ml)
- File "gen/namer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/normaliser.cmo -c -impl gen/normaliser.ml)
- File "gen/normaliser.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "gen/normaliser.ml", line 45, characters 28-54:
- 45 | { edge : E.edge ; mutable dir : dir option ;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field dir is never mutated.
- File "gen/normaliser.ml", line 373, characters 31-49:
- 373 | mutable next : t ; mutable prev : t ; }
- ^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field prev is never read.
- (However, this field is used to build or mutate values.)
- File "gen/normaliser.ml", line 26, characters 23-24:
- 26 | module Make : functor (C:Config) -> functor (E:Edge.S) ->
- ^
- Warning 60 [unused-module]: unused module C.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/varAtomic.cmo -c -impl gen/varAtomic.ml)
- File "gen/varAtomic.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/atoms.cmo -c -impl gen/atoms.ml)
- File "gen/atoms.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/relax.cmo -c -impl gen/relax.ml)
- File "gen/relax.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/nexts.cmo -c -impl gen/nexts.ml)
- File "gen/nexts.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/cycle.cmo -c -impl gen/cycle.ml)
- File "gen/cycle.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/atomize.cmo -c -impl gen/atomize.ml)
- File "gen/atomize.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/classify.cmo -c -impl gen/classify.ml)
- File "gen/classify.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/norm.cmo -c -impl gen/norm.ml)
- File "gen/norm.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/compileCommon.cmo -c -impl gen/compileCommon.ml)
- File "gen/compileCommon.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/run_gen.cmo -c -impl gen/run_gen.ml)
- File "gen/run_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/topUtils.cmo -c -impl gen/topUtils.ml)
- File "gen/topUtils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "gen/topUtils.ml", line 25, characters 23-24:
- 25 | module Make : functor (O:Config) -> functor (C:ArchRun.S) ->
- ^
- Warning 60 [unused-module]: unused module O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/byteSize.cmo -c -impl herd/byteSize.ml)
- File "herd/byteSize.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/version.cmo -c -impl herd/Version.ml)
- File "herd/Version.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/version_herd.cmo -c -impl herd/Version_herd.ml)
- File "herd/Version_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/final.cmo -c -impl gen/final.ml)
- File "gen/final.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "gen/final.ml", line 24, characters 23-24:
- 24 | module Make : functor (O:Config) -> functor (C:ArchRun.S) ->
- ^
- Warning 60 [unused-module]: unused module O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/show.cmi -c -intf herd/show.mli)
- File "herd/show.mli", line 18, characters 28-29:
- 18 | module Generator : functor (O:PrettyConf.S) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- File "herd/show.mli", line 22, characters 23-24:
- 22 | module Make : functor (O:PrettyConf.S) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/archExtra_herd.cmo -c -impl herd/archExtra_herd.ml)
- File "herd/archExtra_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/archExtra_herd.ml", line 131, characters 26-28:
- 131 | module Mixed : functor (SZ : ByteSize.S) -> sig
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/aRMCompile_gen.cmo -c -impl gen/ARMCompile_gen.ml)
- File "gen/ARMCompile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/bellCompile.cmo -c -impl gen/BellCompile.ml)
- File "gen/BellCompile.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/mIPSCompile_gen.cmo -c -impl gen/MIPSCompile_gen.ml)
- File "gen/MIPSCompile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/pPCCompile_gen.cmo -c -impl gen/PPCCompile_gen.ml)
- File "gen/PPCCompile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/rISCVCompile_gen.cmo -c -impl gen/RISCVCompile_gen.ml)
- File "gen/RISCVCompile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/x86Compile_gen.cmo -c -impl gen/X86Compile_gen.ml)
- File "gen/X86Compile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/x86_64Compile_gen.cmo -c -impl gen/X86_64Compile_gen.ml)
- File "gen/X86_64Compile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/top_gen.cmo -c -impl gen/top_gen.ml)
- File "gen/top_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/constr.cmo -c -impl litmus/constr.ml)
- File "litmus/constr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/defString.cmo -c -impl litmus/defString.ml)
- File "litmus/defString.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/language.cmo -c -impl litmus/language.ml)
- File "litmus/language.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/useArch.cmo -c -impl litmus/useArch.ml)
- File "litmus/useArch.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/version.cmo -c -impl litmus/Version.ml)
- File "litmus/Version.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/indent.cmi -c -intf litmus/indent.mli)
- File "litmus/indent.mli", line 54, characters 23-27:
- 54 | module Make : functor (Chan : sig val hexa : bool val out : out_channel end) -> S
- ^^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Chan.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/dumpAll.cmi -c -intf gen/dumpAll.mli)
- File "gen/dumpAll.mli", line 33, characters 12-18:
- 33 | module Make(Config:Config) (T:Builder.S) : sig
- ^^^^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Config.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/version_litmus.cmo -c -impl litmus/Version_litmus.ml)
- File "litmus/Version_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/aArch64Compile_gen.cmo -c -impl gen/AArch64Compile_gen.ml)
- File "gen/AArch64Compile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/outUtils.cmo -c -impl litmus/outUtils.ml)
- File "litmus/outUtils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/cLang.cmo -c -impl litmus/CLang.ml)
- File "litmus/CLang.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/dumpParams.cmo -c -impl litmus/dumpParams.ml)
- File "litmus/dumpParams.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/objUtil.cmo -c -impl litmus/objUtil.ml)
- File "litmus/objUtil.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/compCond.cmi -c -intf litmus/compCond.mli)
- File "litmus/compCond.mli", line 17, characters 22-23:
- 17 | module Make: functor (O:Indent.S) -> functor (I:CompCondUtils.I) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/switch.cmi -c -intf litmus/switch.mli)
- File "litmus/switch.mli", line 21, characters 23-24:
- 21 | module Make : functor (O:Indent.S) -> functor (I:CompCondUtils.I) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/doEmitPrintf.cmo -c -impl litmus/doEmitPrintf.ml)
- File "litmus/doEmitPrintf.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/cArch_litmus.cmo -c -impl litmus/CArch_litmus.ml)
- File "litmus/CArch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/topology.cmo -c -impl litmus/topology.ml)
- File "litmus/topology.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/alt.cmo -c -impl gen/alt.ml)
- File "gen/alt.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/template.cmo -c -impl litmus/template.ml)
- File "litmus/template.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/valconstraint.cmo -c -impl herd/valconstraint.ml)
- File "herd/valconstraint.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/generateCrossDoc.cmo -c -impl litmus/generateCrossDoc.ml)
- File "litmus/generateCrossDoc.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/aArch64Arch_herd.cmo -c -impl herd/AArch64Arch_herd.ml)
- File "herd/AArch64Arch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/aRMArch_herd.cmo -c -impl herd/ARMArch_herd.ml)
- File "herd/ARMArch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/runUtils.cmo -c -impl litmus/runUtils.ml)
- File "litmus/runUtils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/top_litmus.cmi -c -intf litmus/top_litmus.mli)
- File "litmus/top_litmus.mli", line 100, characters 11-13:
- 100 | module Top(OT:TopConfig)(Tar:Tar.S) : sig
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter OT.
- File "litmus/top_litmus.mli", line 100, characters 25-28:
- 100 | module Top(OT:TopConfig)(Tar:Tar.S) : sig
- ^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Tar.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/dumpRun.cmi -c -intf litmus/dumpRun.mli)
- File "litmus/dumpRun.mli", line 50, characters 11-12:
- 50 | functor (O:Config) -> functor(Tar : Tar.S) -> functor (CT : OneTest) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- File "litmus/dumpRun.mli", line 50, characters 32-35:
- 50 | functor (O:Config) -> functor(Tar : Tar.S) -> functor (CT : OneTest) ->
- ^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Tar.
- File "litmus/dumpRun.mli", line 50, characters 57-59:
- 50 | functor (O:Config) -> functor(Tar : Tar.S) -> functor (CT : OneTest) ->
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter CT.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/cCompile_gen.cmo -c -impl gen/CCompile_gen.ml)
- File "gen/CCompile_gen.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/constraints.cmo -c -impl herd/constraints.ml)
- File "herd/constraints.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/constraints.ml", line 43, characters 26-28:
- 43 | module Mixed : functor (SZ: ByteSize.S) -> sig
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/cArch_herd.cmo -c -impl herd/CArch_herd.ml)
- File "herd/CArch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/bellArch_herd.cmo -c -impl herd/BellArch_herd.ml)
- File "herd/BellArch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/x86Arch_herd.cmo -c -impl herd/X86Arch_herd.ml)
- File "herd/X86Arch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/litmus.cmo -c -impl litmus/litmus.ml)
- File "litmus/litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/run_litmus.cmo -c -impl litmus/run_litmus.ml)
- File "litmus/run_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/mIPSArch_herd.cmo -c -impl herd/MIPSArch_herd.ml)
- File "herd/MIPSArch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/rISCVArch_herd.cmo -c -impl herd/RISCVArch_herd.ml)
- File "herd/RISCVArch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/archExtra_litmus.cmo -c -impl litmus/archExtra_litmus.ml)
- File "litmus/archExtra_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/x86_64Arch_herd.cmo -c -impl herd/X86_64Arch_herd.ml)
- File "herd/X86_64Arch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/pPCArch_herd.cmo -c -impl herd/PPCArch_herd.ml)
- File "herd/PPCArch_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/bellAction.cmo -c -impl herd/BellAction.ml)
- File "herd/BellAction.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/cAction.cmo -c -impl herd/CAction.ml)
- File "herd/CAction.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/lISAArch_litmus.cmo -c -impl litmus/LISAArch_litmus.ml)
- File "litmus/LISAArch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/simpleDumper_prime.cmo -c -impl litmus/simpleDumper_prime.ml)
- File "litmus/simpleDumper_prime.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/cGenParser_litmus.cmo -c -impl litmus/CGenParser_litmus.ml)
- File "litmus/CGenParser_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "litmus/CGenParser_litmus.ml", line 78, characters 5-6:
- 78 | (A:Arch_litmus.Base)
- ^
- Warning 60 [unused-module]: unused module A.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/litmusUtils.cmi -c -intf litmus/litmusUtils.mli)
- File "litmus/litmusUtils.mli", line 20, characters 22-23:
- 20 | module Hash : functor(O:Warn.Config) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/cSymbReg.cmo -c -impl litmus/CSymbReg.ml)
- File "litmus/CSymbReg.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/machAction.cmo -c -impl herd/machAction.ml)
- File "herd/machAction.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/mIPSArch_litmus.cmo -c -impl litmus/MIPSArch_litmus.ml)
- File "litmus/MIPSArch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/testDump.cmo -c -impl litmus/testDump.ml)
- File "litmus/testDump.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/aRMArch_litmus.cmo -c -impl litmus/ARMArch_litmus.ml)
- File "litmus/ARMArch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/x86Arch_litmus.cmo -c -impl litmus/X86Arch_litmus.ml)
- File "litmus/X86Arch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/aArch64Arch_litmus.cmo -c -impl litmus/AArch64Arch_litmus.ml)
- File "litmus/AArch64Arch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/rISCVArch_litmus.cmo -c -impl litmus/RISCVArch_litmus.ml)
- File "litmus/RISCVArch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/pPCArch_litmus.cmo -c -impl litmus/PPCArch_litmus.ml)
- File "litmus/PPCArch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/x86_64Arch_litmus.cmo -c -impl litmus/X86_64Arch_litmus.ml)
- File "litmus/X86_64Arch_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/mIPSCompile_litmus.cmo -c -impl litmus/MIPSCompile_litmus.ml)
- File "litmus/MIPSCompile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/test_litmus.cmo -c -impl litmus/test_litmus.ml)
- File "litmus/test_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/aRMCompile_litmus.cmo -c -impl litmus/ARMCompile_litmus.ml)
- File "litmus/ARMCompile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/x86_64Compile_litmus.cmo -c -impl litmus/X86_64Compile_litmus.ml)
- File "litmus/X86_64Compile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/rISCVCompile_litmus.cmo -c -impl litmus/RISCVCompile_litmus.ml)
- File "litmus/RISCVCompile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/x86Compile_litmus.cmo -c -impl litmus/X86Compile_litmus.ml)
- File "litmus/X86Compile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/diycross.cmo -c -impl gen/diycross.ml)
- File "gen/diycross.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/diyone.cmo -c -impl gen/diyone.ml)
- File "gen/diyone.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/pPCCompile_litmus.cmo -c -impl litmus/PPCCompile_litmus.ml)
- File "litmus/PPCCompile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I gen/.readRelax.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o gen/.readRelax.eobjs/byte/diy.cmo -c -impl gen/diy.ml)
- File "gen/diy.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/compile.cmo -c -impl litmus/compile.ml)
- File "litmus/compile.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/aArch64Compile_litmus.cmo -c -impl litmus/AArch64Compile_litmus.ml)
- File "litmus/AArch64Compile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/cCompile_litmus.cmo -c -impl litmus/CCompile_litmus.ml)
- File "litmus/CCompile_litmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/lISACompile.cmo -c -impl litmus/LISACompile.ml)
- File "litmus/LISACompile.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/event.cmo -c -impl herd/event.ml)
- File "herd/event.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/skelUtil.cmo -c -impl litmus/skelUtil.ml)
- File "litmus/skelUtil.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "litmus/skelUtil.ml", line 86, characters 29-30:
- 86 | module Dump : functor (O:Indent.S) -> functor(EPF:EmitPrintf.S) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- File "litmus/skelUtil.ml", line 86, characters 52-55:
- 86 | module Dump : functor (O:Indent.S) -> functor(EPF:EmitPrintf.S) -> sig
- ^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter EPF.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/lISALang.cmo -c -impl litmus/LISALang.ml)
- File "litmus/LISALang.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/aSMLang.cmo -c -impl litmus/ASMLang.ml)
- File "litmus/ASMLang.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -opaque -o herd/.herd.eobjs/byte/monad.cmi -c -intf herd/monad.mli)
- File "herd/monad.mli", line 112, characters 13-15:
- 112 | functor (SZ : ByteSize.S) -> sig
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/branch.cmo -c -impl herd/branch.ml)
- File "herd/branch.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/preSi.cmo -c -impl litmus/preSi.ml)
- File "litmus/preSi.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/skel.cmo -c -impl litmus/skel.ml)
- File "litmus/skel.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/kSkel.cmo -c -impl litmus/KSkel.ml)
- File "litmus/KSkel.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/eventsMonad.cmo -c -impl herd/eventsMonad.ml)
- File "herd/eventsMonad.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/top_klitmus.cmo -c -impl litmus/top_klitmus.ml)
- File "litmus/top_klitmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "litmus/top_klitmus.ml", line 247, characters 17-18:
- 247 | let module V = SymbConstant in
- ^
- Warning 60 [unused-module]: unused module V.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I litmus/.litmus.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o litmus/.litmus.eobjs/byte/klitmus.cmo -c -impl litmus/klitmus.ml)
- File "litmus/klitmus.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I tools/.mfind.eobjs/byte -I tools/.mfind.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o tools/.mfind.eobjs/native/mobserved.cmx -c -impl tools/mobserved.ml)
- File "tools/mobserved.ml", line 26, characters 12-18:
- 26 | module Make(Config:Config) =
- ^^^^^^
- Warning 60 [unused-module]: unused module Config.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I tools/.mfind.eobjs/byte -I tools/.mfind.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o tools/.mfind.eobjs/native/madd.cmx -c -impl tools/madd.ml)
- File "tools/madd.ml", line 34, characters 16-17:
- 34 | module Make(A:ArchBase.S) = struct
- ^
- Warning 60 [unused-module]: unused module A.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I tools/.mfind.eobjs/byte -I tools/.mfind.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o tools/.mfind.eobjs/native/testInfo.cmx -c -impl tools/testInfo.ml)
- File "tools/testInfo.ml", line 38, characters 12-13:
- 38 | module Make(A:ArchBase.S) = struct
- ^
- Warning 60 [unused-module]: unused module A.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I tools/.mfind.eobjs/byte -I tools/.mfind.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o tools/.mfind.eobjs/native/mhash.cmx -c -impl tools/mhash.ml)
- File "tools/mhash.ml", line 53, characters 16-17:
- 53 | module Make(A:ArchBase.S) = struct
- ^
- Warning 60 [unused-module]: unused module A.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/archExtra_herd.cmx -c -impl herd/archExtra_herd.ml)
- File "herd/archExtra_herd.ml", line 131, characters 26-28:
- 131 | module Mixed : functor (SZ : ByteSize.S) -> sig
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I gen/.readRelax.eobjs/byte -I gen/.readRelax.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o gen/.readRelax.eobjs/native/normaliser.cmx -c -impl gen/normaliser.ml)
- File "gen/normaliser.ml", line 45, characters 28-54:
- 45 | { edge : E.edge ; mutable dir : dir option ;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field dir is never mutated.
- File "gen/normaliser.ml", line 373, characters 31-49:
- 373 | mutable next : t ; mutable prev : t ; }
- ^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field prev is never read.
- (However, this field is used to build or mutate values.)
- File "gen/normaliser.ml", line 26, characters 23-24:
- 26 | module Make : functor (C:Config) -> functor (E:Edge.S) ->
- ^
- Warning 60 [unused-module]: unused module C.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I gen/.readRelax.eobjs/byte -I gen/.readRelax.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o gen/.readRelax.eobjs/native/topUtils.cmx -c -impl gen/topUtils.ml)
- File "gen/topUtils.ml", line 25, characters 23-24:
- 25 | module Make : functor (O:Config) -> functor (C:ArchRun.S) ->
- ^
- Warning 60 [unused-module]: unused module O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/constraints.cmx -c -impl herd/constraints.ml)
- File "herd/constraints.ml", line 43, characters 26-28:
- 43 | module Mixed : functor (SZ: ByteSize.S) -> sig
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I gen/.readRelax.eobjs/byte -I gen/.readRelax.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o gen/.readRelax.eobjs/native/mexpand.cmx -c -impl gen/mexpand.ml)
- File "gen/mexpand.ml", line 27, characters 12-14:
- 27 | module Make(Co:Config) (A:Arch_gen.S) = struct
- ^^
- Warning 60 [unused-module]: unused module Co.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I litmus/.litmus.eobjs/byte -I litmus/.litmus.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o litmus/.litmus.eobjs/native/cGenParser_litmus.cmx -c -impl litmus/CGenParser_litmus.ml)
- File "litmus/CGenParser_litmus.ml", line 78, characters 5-6:
- 78 | (A:Arch_litmus.Base)
- ^
- Warning 60 [unused-module]: unused module A.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I gen/.readRelax.eobjs/byte -I gen/.readRelax.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o gen/.readRelax.eobjs/native/final.cmx -c -impl gen/final.ml)
- File "gen/final.ml", line 24, characters 23-24:
- 24 | module Make : functor (O:Config) -> functor (C:ArchRun.S) ->
- ^
- Warning 60 [unused-module]: unused module O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/semExtra.cmo -c -impl herd/semExtra.ml)
- File "herd/semExtra.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/modelUtils.cmi -c -intf herd/modelUtils.mli)
- File "herd/modelUtils.mli", line 19, characters 23-24:
- 19 | module Make : functor (O:Model.Config) -> functor (S:SemExtra.S) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I litmus/.litmus.eobjs/byte -I litmus/.litmus.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o litmus/.litmus.eobjs/native/skelUtil.cmx -c -impl litmus/skelUtil.ml)
- File "litmus/skelUtil.ml", line 86, characters 29-30:
- 86 | module Dump : functor (O:Indent.S) -> functor(EPF:EmitPrintf.S) -> sig
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter O.
- File "litmus/skelUtil.ml", line 86, characters 52-55:
- 86 | module Dump : functor (O:Indent.S) -> functor(EPF:EmitPrintf.S) -> sig
- ^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter EPF.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -opaque -o herd/.herd.eobjs/byte/sem.cmi -c -intf herd/sem.mli)
- File "herd/sem.mli", line 31, characters 17-19:
- 31 | module Mixed(SZ:ByteSize.S) : sig
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/selaEvent.cmo -c -impl herd/SelaEvent.ml)
- File "herd/SelaEvent.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/machModelChecker.cmo -c -impl herd/machModelChecker.ml)
- File "herd/machModelChecker.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/mIPSSem.cmo -c -impl herd/MIPSSem.ml)
- File "herd/MIPSSem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/MIPSSem.ml", line 38, characters 17-19:
- 38 | module Mixed(SZ:ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/cSem.cmo -c -impl herd/CSem.ml)
- File "herd/CSem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/CSem.ml", line 42, characters 17-19:
- 42 | module Mixed(SZ : ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/bellSem.cmo -c -impl herd/BellSem.ml)
- File "herd/BellSem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/BellSem.ml", line 42, characters 17-19:
- 42 | module Mixed(SZ : ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/rISCVSem.cmo -c -impl herd/RISCVSem.ml)
- File "herd/RISCVSem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/pretty.cmo -c -impl herd/Pretty.ml)
- File "herd/Pretty.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/x86_64Sem.cmo -c -impl herd/X86_64Sem.ml)
- File "herd/X86_64Sem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/pPCSem.cmo -c -impl herd/PPCSem.ml)
- File "herd/PPCSem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I litmus/.litmus.eobjs/byte -I litmus/.litmus.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o litmus/.litmus.eobjs/native/top_klitmus.cmx -c -impl litmus/top_klitmus.ml)
- File "litmus/top_klitmus.ml", line 247, characters 17-18:
- 247 | let module V = SymbConstant in
- ^
- Warning 60 [unused-module]: unused module V.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/aRMSem.cmo -c -impl herd/ARMSem.ml)
- File "herd/ARMSem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/ARMSem.ml", line 52, characters 17-19:
- 52 | module Mixed(SZ:ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/aArch64Sem.cmo -c -impl herd/AArch64Sem.ml)
- File "herd/AArch64Sem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/x86Sem.cmo -c -impl herd/X86Sem.ml)
- File "herd/X86Sem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/X86Sem.ml", line 43, characters 17-19:
- 43 | module Mixed(SZ:ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/cMem.cmo -c -impl herd/CMem.ml)
- File "herd/CMem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/aArch64Mem.cmo -c -impl herd/AArch64Mem.ml)
- File "herd/AArch64Mem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/AArch64Mem.ml", line 25, characters 5-6:
- 25 | (B:AArch64Barrier.S with type a = S.barrier)
- ^
- Warning 60 [unused-module]: unused module B.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/bellMem.cmo -c -impl herd/BellMem.ml)
- File "herd/BellMem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/minimal.cmo -c -impl herd/minimal.ml)
- File "herd/minimal.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/cAV12.cmo -c -impl herd/CAV12.ml)
- File "herd/CAV12.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/x86Sem.cmx -c -impl herd/X86Sem.ml)
- File "herd/X86Sem.ml", line 43, characters 17-19:
- 43 | module Mixed(SZ:ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/mIPSSem.cmx -c -impl herd/MIPSSem.ml)
- File "herd/MIPSSem.ml", line 38, characters 17-19:
- 38 | module Mixed(SZ:ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/bellSem.cmx -c -impl herd/BellSem.ml)
- File "herd/BellSem.ml", line 42, characters 17-19:
- 42 | module Mixed(SZ : ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/aRMSem.cmx -c -impl herd/ARMSem.ml)
- File "herd/ARMSem.ml", line 52, characters 17-19:
- 52 | module Mixed(SZ:ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/cSem.cmx -c -impl herd/CSem.ml)
- File "herd/CSem.ml", line 42, characters 17-19:
- 42 | module Mixed(SZ : ByteSize.S) = struct
- ^^
- Warning 60 [unused-module]: unused module SZ.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/x86Mem.cmo -c -impl herd/X86Mem.ml)
- File "herd/X86Mem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "herd/X86Mem.ml", line 27, characters 5-6:
- 27 | (B:X86Barrier.S with type a = S.barrier)
- ^
- Warning 60 [unused-module]: unused module B.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/mem.cmo -c -impl herd/mem.ml)
- File "herd/mem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/rISCVMem.cmo -c -impl herd/RISCVMem.ml)
- File "herd/RISCVMem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/slrc11.cmo -c -impl herd/slrc11.ml)
- File "herd/slrc11.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/x86_64Mem.cmo -c -impl herd/X86_64Mem.ml)
- File "herd/X86_64Mem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/mIPSMem.cmo -c -impl herd/MIPSMem.ml)
- File "herd/MIPSMem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/pPCMem.cmo -c -impl herd/PPCMem.ml)
- File "herd/PPCMem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/aRMMem.cmo -c -impl herd/ARMMem.ml)
- File "herd/ARMMem.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/aArch64Mem.cmx -c -impl herd/AArch64Mem.ml)
- File "herd/AArch64Mem.ml", line 25, characters 5-6:
- 25 | (B:AArch64Barrier.S with type a = S.barrier)
- ^
- Warning 60 [unused-module]: unused module B.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/top_herd.cmo -c -impl herd/top_herd.ml)
- File "herd/top_herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/parseTest.cmi -c -intf herd/parseTest.mli)
- File "herd/parseTest.mli", line 40, characters 11-12:
- 40 | functor (C : Config) ->
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter C.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -I herd/.herd.eobjs/byte -I lib/.herdtools.objs/byte -no-alias-deps -o herd/.herd.eobjs/byte/herd.cmo -c -impl herd/herd.ml)
- File "herd/herd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -I herd/.herd.eobjs/byte -I herd/.herd.eobjs/native -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -intf-suffix .ml -no-alias-deps -o herd/.herd.eobjs/native/x86Mem.cmx -c -impl herd/X86Mem.ml)
- File "herd/X86Mem.ml", line 27, characters 5-6:
- 27 | (B:X86Barrier.S with type a = S.barrier)
- ^
- Warning 60 [unused-module]: unused module B.
-> compiled herdtools7.7.55
-> removed herdtools7.7.55
Processing 4/4: [herdtools7: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "sh" "./dune-install.sh" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/herdtools7.7.55)
- File "dune-project", line 3, characters 14-17:
- 3 | (using menhir 2.0)
- ^^^
- Warning: Version 2.0 of the menhir extension is not supported until version
- 1.4 of the dune language.
- Supported versions of this extension in version 1.2 of the dune language:
- - 1.0
-> installed herdtools7.7.55
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 05:26.37 ---> saved as "3945839b6a2504bb1291e6d7f574239326ce240fb3e875f5b30acd09b58343c3"
Job succeeded
2026-03-17 05:28.38: Job succeeded