(for PR #29582)
2026-03-25 13:14.46: New job: test herdtools7.7.55 with ocaml-compiler.5.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
on debian-13-ocaml-5.4/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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0; \
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" != 'ocaml-compiler.5.4.0' && 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-25 13:14.46: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-herdtools7.7.55-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.46: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(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 ocaml-compiler.5.4.0 5.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
\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\" != 'ocaml-compiler.5.4.0' && 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-25 13:14.46: Waiting for resource in pool OCluster
2026-03-25 19:07.47: Waiting for worker…
2026-03-25 19:10.36: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 5 ++++-
packages/ocaml-option-llvm/ocaml-option-llvm.1/opam | 18 ++++++++++++++++++
.../ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 69 insertions(+), 12 deletions(-)
create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 19:10.38 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-25 19:10.38 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 19:10.38 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-25 19:10.38 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-25 19:10.38 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 19:10.39 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 19:10.39 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" 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 [114 kB]
- Fetched 10.0 MB in 1s (10.9 MB/s)
- Reading package lists...
-
2026-03-25 19:10.39 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 19:10.39 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
\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\" != 'ocaml-compiler.5.4.0' && 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 8 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
- recompile ocaml-compiler 5.4.0 (pinned)
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:10.39 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" 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 8 packages
- install dune 3.22.0 [required by herdtools7]
- 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 dune.3.22.0 (cached)
-> retrieved herdtools7.7.55 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed ocamlfind.1.9.8
-> installed dune.3.22.0
-> installed menhirCST.20260209
-> installed menhirLib.20260209
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed menhir.20260209
-> installed herdtools7.7.55
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:11.46 ---> saved as "8662c08a342f3bfbf30fbca7799c9851b3349f2863bdb6191a4f21687d41125e"
/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-25 19:12.23 ---> saved as "9604919c6f8e1f2a6cc9ebb85d674fa4ed4ed90030d63bd6dc6390d463d05ecd"
/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/5.4" (CWD=/home/opam/.opam/5.4/.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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I jingle/.jingle.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I tools/.mfind.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -I gen/.readRelax.eobjs/byte -I /home/opam/.opam/5.4/lib/ocaml/unix -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file tools/.mfind.eobjs/byte/mobserved.cmi -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file tools/.mfind.eobjs/byte/testInfo.cmi -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file tools/.mfind.eobjs/byte/madd.cmi -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file tools/.mfind.eobjs/byte/mhash.cmi -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/archExtra_herd.cmi -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file gen/.readRelax.eobjs/byte/normaliser.cmi -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file gen/.readRelax.eobjs/byte/mexpand.cmi -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/5.4/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 -cmi-file litmus/.litmus.eobjs/byte/cGenParser_litmus.cmi -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/constraints.cmi -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file gen/.readRelax.eobjs/byte/topUtils.cmi -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/5.4/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 /home/opam/.opam/5.4/lib/ocaml/unix -I lib/.herdtools.objs/byte -I lib/.herdtools.objs/native -cmi-file gen/.readRelax.eobjs/byte/final.cmi -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/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 -cmi-file litmus/.litmus.eobjs/byte/skelUtil.cmi -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/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 -cmi-file litmus/.litmus.eobjs/byte/top_klitmus.cmi -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/mIPSSem.cmi -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/bellSem.cmi -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/x86Sem.cmi -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/cSem.cmi -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/aRMSem.cmi -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/aArch64Mem.cmi -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/5.4/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 -cmi-file herd/.herd.eobjs/byte/x86Mem.cmi -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.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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/5.4/bin/ocamlc.opt -w -40 -w +a-3-4-9-29-33-41-45 -g -bin-annot -bin-annot-occurrences -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.
-> 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/5.4" (CWD=/home/opam/.opam/5.4/.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-25 19:13.03 ---> saved as "7a51d53cab63b6ef6d1a6e910d31df35b172f64c2eefebae4bc4380038bba572"
Job succeeded
2026-03-25 19:13.11: Job succeeded