Build:
- 0
2026-01-13 04:05.02: New job: test dkml-component-staging-ocamlrun.4.12.1~v1.0.2 with dune.3.21.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29216/head (001b427da21d4d746e124eaaffab7b4134813f6d)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29216/head" && git reset --hard 001b427d
git fetch origin master
git merge --no-edit 1c361fac36225534ee877701522e296785f9a9db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.21.0 3.21.0
RUN opam reinstall dune.3.21.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" != 'dune.3.21.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall dkml-component-staging-ocamlrun.4.12.1~v1.0.2; \
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" != 'dkml-component-staging-ocamlrun.4.12.1~v1.0.2' && 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 dkml-component-staging-ocamlrun.4.12.1~v1.0.2) || true
RUN opam reinstall --with-test --verbose dkml-component-staging-ocamlrun.4.12.1~v1.0.2; \
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" != 'dkml-component-staging-ocamlrun.4.12.1~v1.0.2' && 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-01-13 04:05.02: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-dune.3.21.0-dkml-component-staging-ocamlrun.4.12.1~v1.0.2-001b427da21d4d746e124eaaffab7b4134813f6d"
2026-01-13 04:05.02: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.21.0 3.21.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.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\" != 'dune.3.21.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 dkml-component-staging-ocamlrun.4.12.1~v1.0.2;\
\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\" != 'dkml-component-staging-ocamlrun.4.12.1~v1.0.2' && 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 dkml-component-staging-ocamlrun.4.12.1~v1.0.2) || true"))
(run (shell "opam reinstall --with-test --verbose dkml-component-staging-ocamlrun.4.12.1~v1.0.2;\
\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\" != 'dkml-component-staging-ocamlrun.4.12.1~v1.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-13 04:05.02: Waiting for resource in pool OCluster
2026-01-13 19:00.37: Waiting for worker…
2026-01-13 19:03.32: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 67% (13046/19211)
Updating files: 68% (13064/19211)
Updating files: 69% (13256/19211)
Updating files: 70% (13448/19211)
Updating files: 71% (13640/19211)
Updating files: 72% (13832/19211)
Updating files: 73% (14025/19211)
Updating files: 74% (14217/19211)
Updating files: 75% (14409/19211)
Updating files: 76% (14601/19211)
Updating files: 77% (14793/19211)
Updating files: 78% (14985/19211)
Updating files: 79% (15177/19211)
Updating files: 80% (15369/19211)
Updating files: 81% (15561/19211)
Updating files: 82% (15754/19211)
Updating files: 83% (15946/19211)
Updating files: 84% (16138/19211)
Updating files: 85% (16330/19211)
Updating files: 86% (16522/19211)
Updating files: 87% (16714/19211)
Updating files: 88% (16906/19211)
Updating files: 89% (17098/19211)
Updating files: 90% (17290/19211)
Updating files: 91% (17483/19211)
Updating files: 92% (17675/19211)
Updating files: 93% (17867/19211)
Updating files: 94% (18059/19211)
Updating files: 95% (18251/19211)
Updating files: 96% (18443/19211)
Updating files: 97% (18635/19211)
Updating files: 98% (18827/19211)
Updating files: 99% (19019/19211)
Updating files: 100% (19211/19211)
Updating files: 100% (19211/19211), done.
HEAD is now at 1c361fac36 Merge pull request #29210 from dinosaure/release-miou-v0.5.1
Merge made by the 'ort' strategy.
packages/chrome-trace/chrome-trace.3.21.0/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0/opam | 54 ++++++++++++++++
.../dune-build-info/dune-build-info.3.21.0/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0/opam | 52 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0/opam | 39 +++++++++++
packages/dune/dune.3.21.0/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0/opam | 41 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0/opam | 48 ++++++++++++++
packages/top-closure/top-closure.3.21.0/opam | 40 ++++++++++++
packages/xdg/xdg.3.21.0/opam | 41 ++++++++++++
17 files changed, 789 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0/opam
create mode 100644 packages/dune-site/dune-site.3.21.0/opam
create mode 100644 packages/dune/dune.3.21.0/opam
create mode 100644 packages/dyn/dyn.3.21.0/opam
create mode 100644 packages/fs-io/fs-io.3.21.0/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam
create mode 100644 packages/ordering/ordering.3.21.0/opam
create mode 100644 packages/stdune/stdune.3.21.0/opam
create mode 100644 packages/top-closure/top-closure.3.21.0/opam
create mode 100644 packages/xdg/xdg.3.21.0/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
2026-01-13 19:03.44 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 19:03.44 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-13 19:03.44 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-13 19:03.44 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 19:03.44 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 19:03.46 ---> using "09c39d7126e88ed573ca8f78acbffb48c0088baecebf7a9155a91c3290ace20b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 19:03.46 ---> using "1f9ebb837e22c3f42b1c3f6e7178a2aa2fcb8206685e62bba70fde550083c584" 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 [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [95.5 kB]
- Fetched 9997 kB in 1s (7453 kB/s)
- Reading package lists...
-
2026-01-13 19:03.46 ---> using "bc5a313c83583d746179a868806b410c236b5a3d4895b7d8bc464eed6cfe706e" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0 3.21.0"))
dune is now pinned to version 3.21.0
2026-01-13 19:03.46 ---> using "448b2b0e77526967dc1d84c9cd1fd4fdf010f08d862d127b94c63a52bbc324d1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.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\" != 'dune.3.21.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.21.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.21.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0 (cached)
-> installed dune.3.21.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:03.46 ---> using "5acb627376dc8b6ecaceedd8635589b9dfb44ea06abcf3fc03092c3e94ea4126" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dkml-component-staging-ocamlrun.4.12.1~v1.0.2;\
\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\" != 'dkml-component-staging-ocamlrun.4.12.1~v1.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dkml-component-staging-ocamlrun.4.12.1~v1.0.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 21 packages
- install astring 0.8.5 [required by dkml-install]
- install bos 0.2.1 [required by dkml-install]
- install cmdliner 2.1.0 [required by dkml-install]
- install cppo 1.8.0 [required by ppx_deriving]
- install dkml-component-staging-ocamlrun 4.12.1~v1.0.2
- install dkml-install 0.5.3 [required by dkml-component-staging-ocamlrun]
- install fmt 0.11.0 [required by dkml-install]
- install fpath 0.7.3 [required by bos]
- install logs 0.10.0 [required by bos]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by astring, bos]
- install ocamlfind 1.9.8 [required by bos, astring, ppx_deriving]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by dkml-install]
- install ppxlib 0.37.0 [required by ppx_deriving]
- install result 1.5 [required by dkml-install]
- install rresult 0.7.0 [required by bos]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install topkg 1.1.1 [required by astring, bos]
- install tsort 2.2.0 [required by dkml-install]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved bos.0.2.1 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved dkml-component-staging-ocamlrun.4.12.1~v1.0.2 (cached)
-> retrieved dkml-install.0.5.3 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.1.1 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved tsort.2.2.0 (cached)
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed tsort.2.2.0
-> installed cppo.1.8.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed bos.0.2.1
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed dkml-install.0.5.3
-> installed dkml-component-staging-ocamlrun.4.12.1~v1.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:10.20 ---> saved as "905092c29747156dd01007884e18bd552dde04adefb726d790af46f712054c9f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dkml-component-staging-ocamlrun.4.12.1~v1.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile dkml-component-staging-ocamlrun 4.12.1~v1.0.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dkml-component-staging-ocamlrun.4.12.1~v1.0.2 (https://opam.ocaml.org/cache)
-> removed dkml-component-staging-ocamlrun.4.12.1~v1.0.2
-> installed dkml-component-staging-ocamlrun.4.12.1~v1.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:16.12 ---> saved as "3aa60d74983896377d540ee72ee9945e0639bab9e3a2a3b5dc934af6b31c0e29"
/home/opam: (run (shell "opam reinstall --with-test --verbose dkml-component-staging-ocamlrun.4.12.1~v1.0.2;\
\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\" != 'dkml-component-staging-ocamlrun.4.12.1~v1.0.2' && 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 dkml-component-staging-ocamlrun 4.12.1~v1.0.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dkml-component-staging-ocamlrun.4.12.1~v1.0.2: extract]
-> retrieved dkml-component-staging-ocamlrun.4.12.1~v1.0.2 (cached)
Processing 2/4: [dkml-component-staging-ocamlrun: install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "-d" "dl/ocaml/flexdll" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
Processing 2/4: [dkml-component-staging-ocamlrun: tar xCfz]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xCfz" "dl/ocaml" "dl/ocaml.tar.gz" "--strip-components=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xCfz" "dl/ocaml/flexdll" "dl/flexdll.tar.gz" "--strip-components=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
Processing 2/4: [dkml-component-staging-ocamlrun: install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "-d" "dkmldir/vendor/drc" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
Processing 2/4: [dkml-component-staging-ocamlrun: tar xCfz]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xCfz" "dkmldir/vendor/drc" "dl/dkml-runtime-common.tar.gz" "--strip-components=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
Processing 2/4: [dkml-component-staging-ocamlrun: install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "dkmldir/vendor/drc/.template.dkmlroot" "dkmldir/.dkmlroot" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "install" "-d" "dkmldir/vendor/dkml-compiler/src" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
Processing 2/4: [dkml-component-staging-ocamlrun: tar xCfz]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "tar" "xCfz" "dkmldir/vendor/dkml-compiler" "dl/dkml-compiler.tar.gz" "--strip-components=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
Processing 2/4: [dkml-component-staging-ocamlrun: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dkml-component-staging-ocamlrun" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
Processing 2/4: [dkml-component-staging-ocamlrun: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "dkml-component-staging-ocamlrun" "--create-install-files" "dkml-component-staging-ocamlrun" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
-> compiled dkml-component-staging-ocamlrun.4.12.1~v1.0.2
-> removed dkml-component-staging-ocamlrun.4.12.1~v1.0.2
Processing 4/4: [dkml-component-staging-ocamlrun: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "sh" "-eufxc" "\n if [ -e '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files' ]; then\n chmod -R u+w '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files'\n rm -rf '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files'\n fi\n " (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
- + [ -e /home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files ]
Processing 4/4: [dkml-component-staging-ocamlrun: env dkmldir]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "env" "TOPDIR=dkmldir/vendor/drc/all/emptytop" "DKML_REPRODUCIBLE_SYSTEM_BREWFILE=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2/Brewfile" "dkmldir/vendor/dkml-compiler/src/r-c-ocaml-1-setup.sh" "-d" "dkmldir" "-f" "src/ocaml-1" "-k" "vendor/dkml-compiler/src/standard-compiler-env-to-ocaml-configure-env.sh" "-v" "dl/ocaml" "-t" "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files" "-plinux_x86_64" "-elinux_x86_64" "-g" "." "-r" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
- hint: Using 'master' as the name for the initial branch. This default branch name
- hint: is subject to change. To configure the initial branch name to use in all
- hint: of your new repositories, which will suppress this warning, call:
- hint:
- hint: git config --global init.defaultBranch <name>
- hint:
- hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
- hint: 'development'. The just-created branch can be renamed via this command:
- hint:
- hint: git branch -m <name>
- Initialized empty Git repository in /home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/.git/
- [master (root-commit) 0087667] Commit from source tree
- 3629 files changed, 572356 insertions(+)
- create mode 100644 .depend
- create mode 100644 .depend.menhir
- create mode 100644 .gitattributes
- create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md
- create mode 100644 .github/ISSUE_TEMPLATE/config.yml
- create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md
- create mode 100644 .github/workflows/main.yml
- create mode 100644 .github/workflows/stale.yml
- create mode 100644 .gitignore
- create mode 100644 .gitmodules
- create mode 100644 .mailmap
- create mode 100644 .ocp-indent
- create mode 100644 .travis.yml
- create mode 100644 BOOTSTRAP.adoc
- create mode 100644 CONTRIBUTING.md
- create mode 100644 Changes
- create mode 100644 HACKING.adoc
- create mode 100644 INSTALL.adoc
- create mode 100644 LICENSE
- create mode 100644 Makefile
- create mode 100644 Makefile.best_binaries
- create mode 100644 Makefile.build_config.in
- create mode 100644 Makefile.common
- create mode 100644 Makefile.config.in
- create mode 100644 Makefile.config_if_required
- create mode 100644 Makefile.dev
- create mode 100644 Makefile.menhir
- create mode 100644 Makefile.tools
- create mode 100644 README.adoc
- create mode 100644 README.win32.adoc
- create mode 100644 VERSION
- create mode 100644 aclocal.m4
- create mode 100644 appveyor.yml
- create mode 100644 asmcomp/CSEgen.ml
- create mode 100644 asmcomp/CSEgen.mli
- create mode 100644 asmcomp/afl_instrument.ml
- create mode 100644 asmcomp/afl_instrument.mli
- create mode 100644 asmcomp/amd64/CSE.ml
- create mode 100644 asmcomp/amd64/NOTES.md
- create mode 100644 asmcomp/amd64/arch.ml
- create mode 100644 asmcomp/amd64/emit.mlp
- create mode 100644 asmcomp/amd64/proc.ml
- create mode 100644 asmcomp/amd64/reload.ml
- create mode 100644 asmcomp/amd64/scheduling.ml
- create mode 100644 asmcomp/amd64/selection.ml
- create mode 100644 asmcomp/arm/CSE.ml
- create mode 100644 asmcomp/arm/NOTES.md
- create mode 100644 asmcomp/arm/arch.ml
- create mode 100644 asmcomp/arm/emit.mlp
- create mode 100644 asmcomp/arm/proc.ml
- create mode 100644 asmcomp/arm/reload.ml
- create mode 100644 asmcomp/arm/scheduling.ml
- create mode 100644 asmcomp/arm/selection.ml
- create mode 100644 asmcomp/arm64/CSE.ml
- create mode 100644 asmcomp/arm64/NOTES.md
- create mode 100644 asmcomp/arm64/arch.ml
- create mode 100644 asmcomp/arm64/emit.mlp
- create mode 100644 asmcomp/arm64/proc.ml
- create mode 100644 asmcomp/arm64/reload.ml
- create mode 100644 asmcomp/arm64/scheduling.ml
- create mode 100644 asmcomp/arm64/selection.ml
- create mode 100644 asmcomp/asmgen.ml
- create mode 100644 asmcomp/asmgen.mli
- create mode 100644 asmcomp/asmlibrarian.ml
- create mode 100644 asmcomp/asmlibrarian.mli
- create mode 100644 asmcomp/asmlink.ml
- create mode 100644 asmcomp/asmlink.mli
- create mode 100644 asmcomp/asmpackager.ml
- create mode 100644 asmcomp/asmpackager.mli
- create mode 100644 asmcomp/branch_relaxation.ml
- create mode 100644 asmcomp/branch_relaxation.mli
- create mode 100644 asmcomp/branch_relaxation_intf.ml
- create mode 100644 asmcomp/cmm.ml
- create mode 100644 asmcomp/cmm.mli
- create mode 100644 asmcomp/cmm_helpers.ml
- create mode 100644 asmcomp/cmm_helpers.mli
- create mode 100644 asmcomp/cmmgen.ml
- create mode 100644 asmcomp/cmmgen.mli
- create mode 100644 asmcomp/cmmgen_state.ml
- create mode 100644 asmcomp/cmmgen_state.mli
- create mode 100644 asmcomp/coloring.ml
- create mode 100644 asmcomp/coloring.mli
- create mode 100644 asmcomp/comballoc.ml
- create mode 100644 asmcomp/comballoc.mli
- create mode 100644 asmcomp/deadcode.ml
- create mode 100644 asmcomp/deadcode.mli
- create mode 100644 asmcomp/debug/available_regs.ml
- create mode 100644 asmcomp/debug/available_regs.mli
- create mode 100644 asmcomp/debug/compute_ranges.ml
- create mode 100644 asmcomp/debug/compute_ranges.mli
- create mode 100644 asmcomp/debug/compute_ranges_intf.ml
- create mode 100644 asmcomp/debug/reg_availability_set.ml
- create mode 100644 asmcomp/debug/reg_availability_set.mli
- create mode 100644 asmcomp/debug/reg_with_debug_info.ml
- create mode 100644 asmcomp/debug/reg_with_debug_info.mli
- create mode 100644 asmcomp/dune
- create mode 100644 asmcomp/emit.mli
- create mode 100644 asmcomp/emitaux.ml
- create mode 100644 asmcomp/emitaux.mli
- create mode 100644 asmcomp/i386/CSE.ml
- create mode 100644 asmcomp/i386/NOTES.md
- create mode 100644 asmcomp/i386/arch.ml
- create mode 100644 asmcomp/i386/emit.mlp
- create mode 100644 asmcomp/i386/proc.ml
- create mode 100644 asmcomp/i386/reload.ml
- create mode 100644 asmcomp/i386/scheduling.ml
- create mode 100644 asmcomp/i386/selection.ml
- create mode 100644 asmcomp/interf.ml
- create mode 100644 asmcomp/interf.mli
- create mode 100644 asmcomp/interval.ml
- create mode 100644 asmcomp/interval.mli
- create mode 100644 asmcomp/linear.ml
- create mode 100644 asmcomp/linear.mli
- create mode 100644 asmcomp/linearize.ml
- create mode 100644 asmcomp/linearize.mli
- create mode 100644 asmcomp/linscan.ml
- create mode 100644 asmcomp/linscan.mli
- create mode 100644 asmcomp/liveness.ml
- create mode 100644 asmcomp/liveness.mli
- create mode 100644 asmcomp/mach.ml
- create mode 100644 asmcomp/mach.mli
- create mode 100644 asmcomp/power/CSE.ml
- create mode 100644 asmcomp/power/NOTES.md
- create mode 100644 asmcomp/power/arch.ml
- create mode 100644 asmcomp/power/emit.mlp
- create mode 100644 asmcomp/power/proc.ml
- create mode 100644 asmcomp/power/reload.ml
- create mode 100644 asmcomp/power/scheduling.ml
- create mode 100644 asmcomp/power/selection.ml
- create mode 100644 asmcomp/printcmm.ml
- create mode 100644 asmcomp/printcmm.mli
- create mode 100644 asmcomp/printlinear.ml
- create mode 100644 asmcomp/printlinear.mli
- create mode 100644 asmcomp/printmach.ml
- create mode 100644 asmcomp/printmach.mli
- create mode 100644 asmcomp/proc.mli
- create mode 100644 asmcomp/reg.ml
- create mode 100644 asmcomp/reg.mli
- create mode 100644 asmcomp/reload.mli
- create mode 100644 asmcomp/reloadgen.ml
- create mode 100644 asmcomp/reloadgen.mli
- create mode 100644 asmcomp/riscv/CSE.ml
- create mode 100644 asmcomp/riscv/NOTES.md
- create mode 100644 asmcomp/riscv/arch.ml
- create mode 100644 asmcomp/riscv/emit.mlp
- create mode 100644 asmcomp/riscv/proc.ml
- create mode 100644 asmcomp/riscv/reload.ml
- create mode 100644 asmcomp/riscv/scheduling.ml
- create mode 100644 asmcomp/riscv/selection.ml
- create mode 100644 asmcomp/s390x/CSE.ml
- create mode 100644 asmcomp/s390x/NOTES.md
- create mode 100644 asmcomp/s390x/arch.ml
- create mode 100644 asmcomp/s390x/emit.mlp
- create mode 100644 asmcomp/s390x/proc.ml
- create mode 100644 asmcomp/s390x/reload.ml
- create mode 100644 asmcomp/s390x/scheduling.ml
- create mode 100644 asmcomp/s390x/selection.ml
- create mode 100644 asmcomp/schedgen.ml
- create mode 100644 asmcomp/schedgen.mli
- create mode 100644 asmcomp/scheduling.mli
- create mode 100644 asmcomp/selectgen.ml
- create mode 100644 asmcomp/selectgen.mli
- create mode 100644 asmcomp/selection.mli
- create mode 100644 asmcomp/spill.ml
- create mode 100644 asmcomp/spill.mli
- create mode 100644 asmcomp/split.ml
- create mode 100644 asmcomp/split.mli
- create mode 100644 asmcomp/strmatch.ml
- create mode 100644 asmcomp/strmatch.mli
- create mode 100644 asmcomp/x86_ast.mli
- create mode 100644 asmcomp/x86_dsl.ml
- create mode 100644 asmcomp/x86_dsl.mli
- create mode 100644 asmcomp/x86_gas.ml
- create mode 100644 asmcomp/x86_gas.mli
- create mode 100644 asmcomp/x86_masm.ml
- create mode 100644 asmcomp/x86_masm.mli
- create mode 100644 asmcomp/x86_proc.ml
- create mode 100644 asmcomp/x86_proc.mli
- create mode 100644 boot/menhir/menhirLib.ml
- create mode 100644 boot/menhir/menhirLib.mli
- create mode 100644 boot/menhir/parser.ml
- create mode 100644 boot/menhir/parser.mli
- create mode 100755 boot/ocamlc
- create mode 100755 boot/ocamllex
- create mode 100644 build-aux/ax_func_which_gethostbyname_r.m4
- create mode 100644 build-aux/ax_pthread.m4
- create mode 100755 build-aux/compile
- create mode 100755 build-aux/config.guess
- create mode 100755 build-aux/config.sub
- create mode 100755 build-aux/install-sh
- create mode 100644 build-aux/libtool.m4
- create mode 100644 build-aux/ltmain.sh
- create mode 100644 build-aux/ltoptions.m4
- create mode 100644 build-aux/ltsugar.m4
- create mode 100644 build-aux/ltversion.m4
- create mode 100644 build-aux/lt~obsolete.m4
- create mode 100755 build-aux/missing
- create mode 100644 bytecomp/bytegen.ml
- create mode 100644 bytecomp/bytegen.mli
- create mode 100644 bytecomp/bytelibrarian.ml
- create mode 100644 bytecomp/bytelibrarian.mli
- create mode 100644 bytecomp/bytelink.ml
- create mode 100644 bytecomp/bytelink.mli
- create mode 100644 bytecomp/bytepackager.ml
- create mode 100644 bytecomp/bytepackager.mli
- create mode 100644 bytecomp/bytesections.ml
- create mode 100644 bytecomp/bytesections.mli
- create mode 100644 bytecomp/dll.ml
- create mode 100644 bytecomp/dll.mli
- create mode 100644 bytecomp/dune
- create mode 100644 bytecomp/emitcode.ml
- create mode 100644 bytecomp/emitcode.mli
- create mode 100644 bytecomp/instruct.ml
- create mode 100644 bytecomp/instruct.mli
- create mode 100644 bytecomp/meta.ml
- create mode 100644 bytecomp/meta.mli
- create mode 100644 bytecomp/printinstr.ml
- create mode 100644 bytecomp/printinstr.mli
- create mode 100644 bytecomp/symtable.ml
- create mode 100644 bytecomp/symtable.mli
- create mode 100644 compilerlibs/Makefile.compilerlibs
- create mode 100755 configure
- create mode 100644 configure.ac
- create mode 100644 debugger/.depend
- create mode 100644 debugger/Makefile
- create mode 100644 debugger/breakpoints.ml
- create mode 100644 debugger/breakpoints.mli
- create mode 100644 debugger/checkpoints.ml
- create mode 100644 debugger/checkpoints.mli
- create mode 100644 debugger/command_line.ml
- create mode 100644 debugger/command_line.mli
- create mode 100644 debugger/debugcom.ml
- create mode 100644 debugger/debugcom.mli
- create mode 100644 debugger/debugger_config.ml
- create mode 100644 debugger/debugger_config.mli
- create mode 100644 debugger/debugger_lexer.mli
- create mode 100644 debugger/debugger_lexer.mll
- create mode 100644 debugger/debugger_parser.mly
- create mode 100644 debugger/dune
- create mode 100644 debugger/eval.ml
- create mode 100644 debugger/eval.mli
- create mode 100644 debugger/events.ml
- create mode 100644 debugger/events.mli
- create mode 100644 debugger/exec.ml
- create mode 100644 debugger/exec.mli
- create mode 100644 debugger/frames.ml
- create mode 100644 debugger/frames.mli
- create mode 100644 debugger/history.ml
- create mode 100644 debugger/history.mli
- create mode 100644 debugger/input_handling.ml
- create mode 100644 debugger/input_handling.mli
- create mode 100644 debugger/int64ops.ml
- create mode 100644 debugger/int64ops.mli
- create mode 100644 debugger/loadprinter.ml
- create mode 100644 debugger/loadprinter.mli
- create mode 100644 debugger/main.ml
- create mode 100644 debugger/parameters.ml
- create mode 100644 debugger/parameters.mli
- create mode 100644 debugger/parser_aux.mli
- create mode 100644 debugger/pattern_matching.ml
- create mode 100644 debugger/pattern_matching.mli
- create mode 100644 debugger/pos.ml
- create mode 100644 debugger/pos.mli
- create mode 100644 debugger/primitives.ml
- create mode 100644 debugger/primitives.mli
- create mode 100644 debugger/printval.ml
- create mode 100644 debugger/printval.mli
- create mode 100644 debugger/program_loading.ml
- create mode 100644 debugger/program_loading.mli
- create mode 100644 debugger/program_management.ml
- create mode 100644 debugger/program_management.mli
- create mode 100644 debugger/question.ml
- create mode 100644 debugger/question.mli
- create mode 100644 debugger/show_information.ml
- create mode 100644 debugger/show_information.mli
- create mode 100644 debugger/show_source.ml
- create mode 100644 debugger/show_source.mli
- create mode 100644 debugger/source.ml
- create mode 100644 debugger/source.mli
- create mode 100644 debugger/symbols.ml
- create mode 100644 debugger/symbols.mli
- create mode 100644 debugger/time_travel.ml
- create mode 100644 debugger/time_travel.mli
- create mode 100644 debugger/trap_barrier.ml
- create mode 100644 debugger/trap_barrier.mli
- create mode 100644 debugger/unix_tools.ml
- create mode 100644 debugger/unix_tools.mli
- create mode 100644 driver/compenv.ml
- create mode 100644 driver/compenv.mli
- create mode 100644 driver/compile.ml
- create mode 100644 driver/compile.mli
- create mode 100644 driver/compile_common.ml
- create mode 100644 driver/compile_common.mli
- create mode 100644 driver/compmisc.ml
- create mode 100644 driver/compmisc.mli
- create mode 100644 driver/errors.ml
- create mode 100644 driver/errors.mli
- create mode 100644 driver/main.ml
- create mode 100644 driver/main_args.ml
- create mode 100644 driver/main_args.mli
- create mode 100644 driver/maindriver.ml
- create mode 100644 driver/maindriver.mli
- create mode 100644 driver/makedepend.ml
- create mode 100644 driver/makedepend.mli
- create mode 100644 driver/optcompile.ml
- create mode 100644 driver/optcompile.mli
- create mode 100644 driver/opterrors.ml
- create mode 100644 driver/opterrors.mli
- create mode 100644 driver/optmain.ml
- create mode 100644 driver/optmaindriver.ml
- create mode 100644 driver/optmaindriver.mli
- create mode 100644 driver/pparse.ml
- create mode 100644 driver/pparse.mli
- create mode 100644 dune
- create mode 100644 dune-project
- create mode 100644 file_formats/cmi_format.ml
- create mode 100644 file_formats/cmi_format.mli
- create mode 100644 file_formats/cmo_format.mli
- create mode 100644 file_formats/cmt_format.ml
- create mode 100644 file_formats/cmt_format.mli
- create mode 100644 file_formats/cmx_format.mli
- create mode 100644 file_formats/cmxs_format.mli
- create mode 100644 file_formats/linear_format.ml
- create mode 100644 file_formats/linear_format.mli
- create mode 100644 flexdll/.gitattributes
- create mode 100644 flexdll/.gitignore
- create mode 100644 flexdll/.ocp-indent
- create mode 100644 flexdll/CHANGES
- create mode 100644 flexdll/Compat401.ml
- create mode 100644 flexdll/Compat402.ml
- create mode 100644 flexdll/Compat403.ml
- create mode 100644 flexdll/Compat405.ml
- create mode 100644 flexdll/Compat406.ml
- create mode 100644 flexdll/Compat407.ml
- create mode 100644 flexdll/LICENSE
- create mode 100644 flexdll/Makefile
- create mode 100644 flexdll/README.md
- create mode 100755 flexdll/appveyor.yml
- create mode 100755 flexdll/appveyor_build.sh
- create mode 100755 flexdll/checkenv
- create mode 100755 flexdll/clear_appveyor_cache.sh
- create mode 100644 flexdll/cmdline.ml
- create mode 100644 flexdll/coff.ml
- create mode 100644 flexdll/create_dll.ml
- create mode 100644 flexdll/default.manifest
- create mode 100755 flexdll/default_amd64.manifest
- create mode 100644 flexdll/flexdll.c
- create mode 100644 flexdll/flexdll.h
- create mode 100644 flexdll/flexdll_initer.c
- create mode 100644 flexdll/installer.nsi
- create mode 100644 flexdll/msvs-detect
- create mode 100644 flexdll/reloc.ml
- create mode 100644 flexdll/test/Makefile
- create mode 100644 flexdll/test/dump.c
- create mode 100644 flexdll/test/plug1.c
- create mode 100644 flexdll/test/plug2.c
- create mode 100644 flexdll/version.rc
- create mode 100644 lambda/.ocamlformat
- create mode 100644 lambda/.ocamlformat-enable
- create mode 100644 lambda/debuginfo.ml
- create mode 100644 lambda/debuginfo.mli
- create mode 100644 lambda/dune
- create mode 100755 lambda/generate_runtimedef.sh
- create mode 100644 lambda/lambda.ml
- create mode 100644 lambda/lambda.mli
- create mode 100644 lambda/matching.ml
- create mode 100644 lambda/matching.mli
- create mode 100644 lambda/printlambda.ml
- create mode 100644 lambda/printlambda.mli
- create mode 100644 lambda/runtimedef.mli
- create mode 100644 lambda/simplif.ml
- create mode 100644 lambda/simplif.mli
- create mode 100644 lambda/switch.ml
- create mode 100644 lambda/switch.mli
- create mode 100644 lambda/translattribute.ml
- create mode 100644 lambda/translattribute.mli
- create mode 100644 lambda/translclass.ml
- create mode 100644 lambda/translclass.mli
- create mode 100644 lambda/translcore.ml
- create mode 100644 lambda/translcore.mli
- create mode 100644 lambda/translmod.ml
- create mode 100644 lambda/translmod.mli
- create mode 100644 lambda/translobj.ml
- create mode 100644 lambda/translobj.mli
- create mode 100644 lambda/translprim.ml
- create mode 100644 lambda/translprim.mli
- create mode 100644 lex/.depend
- create mode 100644 lex/Makefile
- create mode 100644 lex/common.ml
- create mode 100644 lex/common.mli
- create mode 100644 lex/compact.ml
- create mode 100644 lex/compact.mli
- create mode 100644 lex/cset.ml
- create mode 100644 lex/cset.mli
- create mode 100644 lex/lexer.mli
- create mode 100644 lex/lexer.mll
- create mode 100644 lex/lexgen.ml
- create mode 100644 lex/lexgen.mli
- create mode 100644 lex/main.ml
- create mode 100644 lex/output.ml
- create mode 100644 lex/output.mli
- create mode 100644 lex/outputbis.ml
- create mode 100644 lex/outputbis.mli
- create mode 100644 lex/parser.mly
- create mode 100644 lex/syntax.ml
- create mode 100644 lex/syntax.mli
- create mode 100644 lex/table.ml
- create mode 100644 lex/table.mli
- create mode 100644 man/Makefile
- create mode 100644 man/ocaml.m
- create mode 100644 man/ocamlc.m
- create mode 100644 man/ocamlcp.m
- create mode 100644 man/ocamldebug.m
- create mode 100644 man/ocamldep.m
- create mode 100644 man/ocamldoc.m
- create mode 100644 man/ocamllex.m
- create mode 100644 man/ocamlmktop.m
- create mode 100644 man/ocamlopt.m
- create mode 100644 man/ocamlprof.m
- create mode 100644 man/ocamlrun.m
- create mode 100644 man/ocamlyacc.m
- create mode 100644 manual/LICENSE-for-the-manual
- create mode 100644 manual/Makefile
- create mode 100644 manual/README.md
- create mode 100644 manual/manual/.gitignore
- create mode 100644 manual/manual/Makefile
- create mode 100644 manual/manual/allfiles.etex
- create mode 100644 manual/manual/anchored_book.hva
- create mode 100644 manual/manual/biblio.etex
- create mode 100644 manual/manual/cmds/.gitignore
- create mode 100644 manual/manual/cmds/Makefile
- create mode 100644 manual/manual/cmds/afl-fuzz.etex
- create mode 100644 manual/manual/cmds/comp.etex
- create mode 100644 manual/manual/cmds/debugger.etex
- create mode 100644 manual/manual/cmds/flambda.etex
- create mode 100644 manual/manual/cmds/instrumented-runtime.etex
- create mode 100644 manual/manual/cmds/intf-c.etex
- create mode 100644 manual/manual/cmds/lexyacc.etex
- create mode 100644 manual/manual/cmds/native.etex
- create mode 100644 manual/manual/cmds/ocamldep.etex
- create mode 100644 manual/manual/cmds/ocamldoc.etex
- create mode 100644 manual/manual/cmds/profil.etex
- create mode 100644 manual/manual/cmds/runtime.etex
- create mode 100644 manual/manual/cmds/top.etex
- create mode 100644 manual/manual/cmds/unified-options.etex
- create mode 100644 manual/manual/foreword.etex
- create mode 100644 manual/manual/html_processing/.gitignore
- create mode 100644 manual/manual/html_processing/Makefile
- create mode 100644 manual/manual/html_processing/README.md
- create mode 100644 manual/manual/html_processing/dune-project
- create mode 100644 manual/manual/html_processing/js/navigation.js
- create mode 100644 manual/manual/html_processing/js/scroll.js
- create mode 100644 manual/manual/html_processing/js/search.js
- create mode 100644 manual/manual/html_processing/scss/_common.scss
- create mode 100644 manual/manual/html_processing/scss/manual.scss
- create mode 100644 manual/manual/html_processing/scss/style.scss
- create mode 100644 manual/manual/html_processing/src/common.ml
- create mode 100644 manual/manual/html_processing/src/process_api.ml
- create mode 100644 manual/manual/html_processing/src/process_manual.ml
- create mode 100644 manual/manual/htmlman/.gitignore
- create mode 100644 manual/manual/htmlman/contents_motif.gif
- create mode 100644 manual/manual/htmlman/fonts/fira-sans-v8-latin-regular.eot
- create mode 100644 manual/manual/htmlman/fonts/fira-sans-v8-latin-regular.ttf
- create mode 100644 manual/manual/htmlman/fonts/fira-sans-v8-latin-regular.woff
- create mode 100644 manual/manual/htmlman/fonts/fira-sans-v8-latin-regular.woff2
- create mode 100644 manual/manual/htmlman/libgraph.gif
- create mode 100644 manual/manual/htmlman/next_motif.gif
- create mode 100644 manual/manual/htmlman/previous_motif.gif
- create mode 100644 manual/manual/index.tex
- create mode 100644 manual/manual/infoman/.gitignore
- create mode 100644 manual/manual/library/.gitignore
- create mode 100644 manual/manual/library/Makefile
- create mode 100644 manual/manual/library/builtin.etex
- create mode 100644 manual/manual/library/compiler_libs.mld
- create mode 100644 manual/manual/library/compilerlibs.etex
- create mode 100644 manual/manual/library/core.etex
- create mode 100644 manual/manual/library/libdynlink.etex
- create mode 100644 manual/manual/library/libstr.etex
- create mode 100644 manual/manual/library/libthreads.etex
- create mode 100644 manual/manual/library/libunix.etex
- create mode 100644 manual/manual/library/old.etex
- create mode 100644 manual/manual/library/stdlib-blurb.etex
- create mode 100644 manual/manual/macros.hva
- create mode 100644 manual/manual/macros.tex
- create mode 100644 manual/manual/manual.hva
- create mode 100644 manual/manual/manual.inf
- create mode 100644 manual/manual/manual.info.header
- create mode 100644 manual/manual/manual.tex
- create mode 100644 manual/manual/refman/.gitignore
- create mode 100644 manual/manual/refman/Makefile
- create mode 100644 manual/manual/refman/classes.etex
- create mode 100644 manual/manual/refman/compunit.etex
- create mode 100644 manual/manual/refman/const.etex
- create mode 100644 manual/manual/refman/expr.etex
- create mode 100644 manual/manual/refman/exten.etex
- create mode 100644 manual/manual/refman/lex.etex
- create mode 100644 manual/manual/refman/modtypes.etex
- create mode 100644 manual/manual/refman/modules.etex
- create mode 100644 manual/manual/refman/names.etex
- create mode 100644 manual/manual/refman/patterns.etex
- create mode 100644 manual/manual/refman/refman.etex
- create mode 100644 manual/manual/refman/typedecl.etex
- create mode 100644 manual/manual/refman/types.etex
- create mode 100644 manual/manual/refman/values.etex
- create mode 100644 manual/manual/style.css
- create mode 100644 manual/manual/texstuff/.gitignore
- create mode 100644 manual/manual/textman/.gitignore
- create mode 100644 manual/manual/tutorials/.gitignore
- create mode 100644 manual/manual/tutorials/Makefile
- create mode 100644 manual/manual/tutorials/advexamples.etex
- create mode 100644 manual/manual/tutorials/coreexamples.etex
- create mode 100644 manual/manual/tutorials/lablexamples.etex
- create mode 100644 manual/manual/tutorials/moduleexamples.etex
- create mode 100644 manual/manual/tutorials/objectexamples.etex
- create mode 100644 manual/manual/tutorials/polymorphism.etex
- create mode 100644 manual/styles/altindex.sty
- create mode 100644 manual/styles/doc.tfm
- create mode 100644 manual/styles/docbf.tfm
- create mode 100644 manual/styles/docit.tfm
- create mode 100644 manual/styles/docmi.tfm
- create mode 100644 manual/styles/docrm.tfm
- create mode 100644 manual/styles/doctt.tfm
- create mode 100644 manual/styles/fullpage.sty
- create mode 100644 manual/styles/html.sty
- create mode 100644 manual/styles/isolatin.sty
- create mode 100644 manual/styles/multicols.sty
- create mode 100644 manual/styles/multind.sty
- create mode 100644 manual/styles/ocamldoc.hva
- create mode 100644 manual/styles/ocamldoc.sty
- create mode 100644 manual/styles/scroll.sty
- create mode 100644 manual/styles/syntaxdef.hva
- create mode 100644 manual/styles/syntaxdef.sty
- create mode 100644 manual/styles/syntaxdeftxt.sty
- create mode 100644 manual/tests/.gitignore
- create mode 100644 manual/tests/Makefile
- create mode 100644 manual/tests/README.md
- create mode 100755 manual/tests/check-stdlib-modules
- create mode 100644 manual/tests/cross_reference_checker.ml
- create mode 100644 manual/tools/.gitignore
- create mode 100644 manual/tools/Makefile
- create mode 100755 manual/tools/fix_index.sh
- create mode 100644 manual/tools/htmltransf.mll
- create mode 100644 manual/tools/texquote2.ml
- create mode 100644 manual/tools/transf.mll
- create mode 100644 manual/tools/transfmain.ml
- create mode 100644 middle_end/backend_intf.mli
- create mode 100644 middle_end/backend_var.ml
- create mode 100644 middle_end/backend_var.mli
- create mode 100644 middle_end/clambda.ml
- create mode 100644 middle_end/clambda.mli
- create mode 100644 middle_end/clambda_primitives.ml
- create mode 100644 middle_end/clambda_primitives.mli
- create mode 100644 middle_end/closure/closure.ml
- create mode 100644 middle_end/closure/closure.mli
- create mode 100644 middle_end/closure/closure_middle_end.ml
- create mode 100644 middle_end/closure/closure_middle_end.mli
- create mode 100644 middle_end/compilation_unit.ml
- create mode 100644 middle_end/compilation_unit.mli
- create mode 100644 middle_end/compilenv.ml
- create mode 100644 middle_end/compilenv.mli
- create mode 100644 middle_end/convert_primitives.ml
- create mode 100644 middle_end/convert_primitives.mli
- create mode 100644 middle_end/flambda/alias_analysis.ml
- create mode 100644 middle_end/flambda/alias_analysis.mli
- create mode 100644 middle_end/flambda/allocated_const.ml
- create mode 100644 middle_end/flambda/allocated_const.mli
- create mode 100644 middle_end/flambda/augment_specialised_args.ml
- create mode 100644 middle_end/flambda/augment_specialised_args.mli
- create mode 100644 middle_end/flambda/base_types/closure_element.ml
- create mode 100644 middle_end/flambda/base_types/closure_element.mli
- create mode 100644 middle_end/flambda/base_types/closure_id.ml
- create mode 100644 middle_end/flambda/base_types/closure_id.mli
- create mode 100644 middle_end/flambda/base_types/closure_origin.ml
- create mode 100644 middle_end/flambda/base_types/closure_origin.mli
- create mode 100644 middle_end/flambda/base_types/export_id.ml
- create mode 100644 middle_end/flambda/base_types/export_id.mli
- create mode 100644 middle_end/flambda/base_types/id_types.ml
- create mode 100644 middle_end/flambda/base_types/id_types.mli
- create mode 100644 middle_end/flambda/base_types/mutable_variable.ml
- create mode 100644 middle_end/flambda/base_types/mutable_variable.mli
- create mode 100644 middle_end/flambda/base_types/set_of_closures_id.ml
- create mode 100644 middle_end/flambda/base_types/set_of_closures_id.mli
- create mode 100644 middle_end/flambda/base_types/set_of_closures_origin.ml
- create mode 100644 middle_end/flambda/base_types/set_of_closures_origin.mli
- create mode 100644 middle_end/flambda/base_types/static_exception.ml
- create mode 100644 middle_end/flambda/base_types/static_exception.mli
- create mode 100644 middle_end/flambda/base_types/tag.ml
- create mode 100644 middle_end/flambda/base_types/tag.mli
- create mode 100644 middle_end/flambda/base_types/var_within_closure.ml
- create mode 100644 middle_end/flambda/base_types/var_within_closure.mli
- create mode 100644 middle_end/flambda/build_export_info.ml
- create mode 100644 middle_end/flambda/build_export_info.mli
- create mode 100644 middle_end/flambda/closure_conversion.ml
- create mode 100644 middle_end/flambda/closure_conversion.mli
- create mode 100644 middle_end/flambda/closure_conversion_aux.ml
- create mode 100644 middle_end/flambda/closure_conversion_aux.mli
- create mode 100644 middle_end/flambda/closure_offsets.ml
- create mode 100644 middle_end/flambda/closure_offsets.mli
- create mode 100644 middle_end/flambda/effect_analysis.ml
- create mode 100644 middle_end/flambda/effect_analysis.mli
- create mode 100644 middle_end/flambda/export_info.ml
- create mode 100644 middle_end/flambda/export_info.mli
- create mode 100644 middle_end/flambda/export_info_for_pack.ml
- create mode 100644 middle_end/flambda/export_info_for_pack.mli
- create mode 100644 middle_end/flambda/extract_projections.ml
- create mode 100644 middle_end/flambda/extract_projections.mli
- create mode 100644 middle_end/flambda/find_recursive_functions.ml
- create mode 100644 middle_end/flambda/find_recursive_functions.mli
- create mode 100644 middle_end/flambda/flambda.ml
- create mode 100644 middle_end/flambda/flambda.mli
- create mode 100644 middle_end/flambda/flambda_invariants.ml
- create mode 100644 middle_end/flambda/flambda_invariants.mli
- create mode 100644 middle_end/flambda/flambda_iterators.ml
- create mode 100644 middle_end/flambda/flambda_iterators.mli
- create mode 100644 middle_end/flambda/flambda_middle_end.ml
- create mode 100644 middle_end/flambda/flambda_middle_end.mli
- create mode 100644 middle_end/flambda/flambda_to_clambda.ml
- create mode 100644 middle_end/flambda/flambda_to_clambda.mli
- create mode 100644 middle_end/flambda/flambda_utils.ml
- create mode 100644 middle_end/flambda/flambda_utils.mli
- create mode 100644 middle_end/flambda/freshening.ml
- create mode 100644 middle_end/flambda/freshening.mli
- create mode 100644 middle_end/flambda/import_approx.ml
- create mode 100644 middle_end/flambda/import_approx.mli
- create mode 100644 middle_end/flambda/inconstant_idents.ml
- create mode 100644 middle_end/flambda/inconstant_idents.mli
- create mode 100644 middle_end/flambda/initialize_symbol_to_let_symbol.ml
- create mode 100644 middle_end/flambda/initialize_symbol_to_let_symbol.mli
- create mode 100644 middle_end/flambda/inline_and_simplify.ml
- create mode 100644 middle_end/flambda/inline_and_simplify.mli
- create mode 100644 middle_end/flambda/inline_and_simplify_aux.ml
- create mode 100644 middle_end/flambda/inline_and_simplify_aux.mli
- create mode 100644 middle_end/flambda/inlining_cost.ml
- create mode 100644 middle_end/flambda/inlining_cost.mli
- create mode 100644 middle_end/flambda/inlining_decision.ml
- create mode 100644 middle_end/flambda/inlining_decision.mli
- create mode 100644 middle_end/flambda/inlining_decision_intf.mli
- create mode 100644 middle_end/flambda/inlining_stats.ml
- create mode 100644 middle_end/flambda/inlining_stats.mli
- create mode 100644 middle_end/flambda/inlining_stats_types.ml
- create mode 100644 middle_end/flambda/inlining_stats_types.mli
- create mode 100644 middle_end/flambda/inlining_transforms.ml
- create mode 100644 middle_end/flambda/inlining_transforms.mli
- create mode 100644 middle_end/flambda/invariant_params.ml
- create mode 100644 middle_end/flambda/invariant_params.mli
- create mode 100644 middle_end/flambda/lift_code.ml
- create mode 100644 middle_end/flambda/lift_code.mli
- create mode 100644 middle_end/flambda/lift_constants.ml
- create mode 100644 middle_end/flambda/lift_constants.mli
- create mode 100644 middle_end/flambda/lift_let_to_initialize_symbol.ml
- create mode 100644 middle_end/flambda/lift_let_to_initialize_symbol.mli
- create mode 100644 middle_end/flambda/parameter.ml
- create mode 100644 middle_end/flambda/parameter.mli
- create mode 100644 middle_end/flambda/pass_wrapper.ml
- create mode 100644 middle_end/flambda/pass_wrapper.mli
- create mode 100644 middle_end/flambda/projection.ml
- create mode 100644 middle_end/flambda/projection.mli
- create mode 100644 middle_end/flambda/ref_to_variables.ml
- create mode 100644 middle_end/flambda/ref_to_variables.mli
- create mode 100644 middle_end/flambda/remove_free_vars_equal_to_args.ml
- create mode 100644 middle_end/flambda/remove_free_vars_equal_to_args.mli
- create mode 100644 middle_end/flambda/remove_unused_arguments.ml
- create mode 100644 middle_end/flambda/remove_unused_arguments.mli
- create mode 100644 middle_end/flambda/remove_unused_closure_vars.ml
- create mode 100644 middle_end/flambda/remove_unused_closure_vars.mli
- create mode 100644 middle_end/flambda/remove_unused_program_constructs.ml
- create mode 100644 middle_end/flambda/remove_unused_program_constructs.mli
- create mode 100644 middle_end/flambda/share_constants.ml
- create mode 100644 middle_end/flambda/share_constants.mli
- create mode 100644 middle_end/flambda/simple_value_approx.ml
- create mode 100644 middle_end/flambda/simple_value_approx.mli
- create mode 100644 middle_end/flambda/simplify_boxed_integer_ops.ml
- create mode 100644 middle_end/flambda/simplify_boxed_integer_ops.mli
- create mode 100644 middle_end/flambda/simplify_boxed_integer_ops_intf.mli
- create mode 100644 middle_end/flambda/simplify_common.ml
- create mode 100644 middle_end/flambda/simplify_common.mli
- create mode 100644 middle_end/flambda/simplify_primitives.ml
- create mode 100644 middle_end/flambda/simplify_primitives.mli
- create mode 100644 middle_end/flambda/traverse_for_exported_symbols.ml
- create mode 100644 middle_end/flambda/traverse_for_exported_symbols.mli
- create mode 100644 middle_end/flambda/un_anf.ml
- create mode 100644 middle_end/flambda/un_anf.mli
- create mode 100644 middle_end/flambda/unbox_closures.ml
- create mode 100644 middle_end/flambda/unbox_closures.mli
- create mode 100644 middle_end/flambda/unbox_free_vars_of_closures.ml
- create mode 100644 middle_end/flambda/unbox_free_vars_of_closures.mli
- create mode 100644 middle_end/flambda/unbox_specialised_args.ml
- create mode 100644 middle_end/flambda/unbox_specialised_args.mli
- create mode 100644 middle_end/internal_variable_names.ml
- create mode 100644 middle_end/internal_variable_names.mli
- create mode 100644 middle_end/linkage_name.ml
- create mode 100644 middle_end/linkage_name.mli
- create mode 100644 middle_end/printclambda.ml
- create mode 100644 middle_end/printclambda.mli
- create mode 100644 middle_end/printclambda_primitives.ml
- create mode 100644 middle_end/printclambda_primitives.mli
- create mode 100644 middle_end/semantics_of_primitives.ml
- create mode 100644 middle_end/semantics_of_primitives.mli
- create mode 100644 middle_end/symbol.ml
- create mode 100644 middle_end/symbol.mli
- create mode 100644 middle_end/variable.ml
- create mode 100644 middle_end/variable.mli
- create mode 100644 ocaml-variants.opam
- create mode 100644 ocamldoc/.depend
- create mode 100644 ocamldoc/Changes.txt
- create mode 100644 ocamldoc/Makefile
- create mode 100644 ocamldoc/Makefile.docfiles
- create mode 100644 ocamldoc/dune
- create mode 100644 ocamldoc/generators/odoc_literate.ml
- create mode 100644 ocamldoc/generators/odoc_todo.ml
- create mode 100644 ocamldoc/ocamldoc.hva
- create mode 100644 ocamldoc/ocamldoc.sty
- create mode 100644 ocamldoc/odoc.ml
- create mode 100644 ocamldoc/odoc_analyse.ml
- create mode 100644 ocamldoc/odoc_analyse.mli
- create mode 100644 ocamldoc/odoc_args.ml
- create mode 100644 ocamldoc/odoc_args.mli
- create mode 100644 ocamldoc/odoc_ast.ml
- create mode 100644 ocamldoc/odoc_ast.mli
- create mode 100644 ocamldoc/odoc_class.ml
- create mode 100644 ocamldoc/odoc_comments.ml
- create mode 100644 ocamldoc/odoc_comments.mli
- create mode 100644 ocamldoc/odoc_comments_global.ml
- create mode 100644 ocamldoc/odoc_comments_global.mli
- create mode 100644 ocamldoc/odoc_config.ml
- create mode 100644 ocamldoc/odoc_config.mli
- create mode 100644 ocamldoc/odoc_control.ml
- create mode 100644 ocamldoc/odoc_cross.ml
- create mode 100644 ocamldoc/odoc_cross.mli
- create mode 100644 ocamldoc/odoc_dag2html.ml
- create mode 100644 ocamldoc/odoc_dag2html.mli
- create mode 100644 ocamldoc/odoc_dep.ml
- create mode 100644 ocamldoc/odoc_dot.ml
- create mode 100644 ocamldoc/odoc_env.ml
- create mode 100644 ocamldoc/odoc_env.mli
- create mode 100644 ocamldoc/odoc_exception.ml
- create mode 100644 ocamldoc/odoc_extension.ml
- create mode 100644 ocamldoc/odoc_gen.ml
- create mode 100644 ocamldoc/odoc_gen.mli
- create mode 100644 ocamldoc/odoc_global.ml
- create mode 100644 ocamldoc/odoc_global.mli
- create mode 100644 ocamldoc/odoc_html.ml
- create mode 100644 ocamldoc/odoc_index.html
- create mode 100644 ocamldoc/odoc_info.ml
- create mode 100644 ocamldoc/odoc_info.mli
- create mode 100644 ocamldoc/odoc_inherit.ml
- create mode 100644 ocamldoc/odoc_latex.ml
- create mode 100644 ocamldoc/odoc_latex_style.ml
- create mode 100644 ocamldoc/odoc_lexer.mll
- create mode 100644 ocamldoc/odoc_man.ml
- create mode 100644 ocamldoc/odoc_merge.ml
- create mode 100644 ocamldoc/odoc_merge.mli
- create mode 100644 ocamldoc/odoc_messages.ml
- create mode 100644 ocamldoc/odoc_misc.ml
- create mode 100644 ocamldoc/odoc_misc.mli
- create mode 100644 ocamldoc/odoc_module.ml
- create mode 100644 ocamldoc/odoc_name.ml
- create mode 100644 ocamldoc/odoc_name.mli
- create mode 100644 ocamldoc/odoc_ocamlhtml.mll
- create mode 100644 ocamldoc/odoc_parameter.ml
- create mode 100644 ocamldoc/odoc_parser.mly
- create mode 100644 ocamldoc/odoc_print.ml
- create mode 100644 ocamldoc/odoc_print.mli
- create mode 100644 ocamldoc/odoc_scan.ml
- create mode 100644 ocamldoc/odoc_search.ml
- create mode 100644 ocamldoc/odoc_search.mli
- create mode 100644 ocamldoc/odoc_see_lexer.mll
- create mode 100644 ocamldoc/odoc_sig.ml
- create mode 100644 ocamldoc/odoc_sig.mli
- create mode 100644 ocamldoc/odoc_str.ml
- create mode 100644 ocamldoc/odoc_str.mli
- create mode 100644 ocamldoc/odoc_test.ml
- create mode 100644 ocamldoc/odoc_texi.ml
- create mode 100644 ocamldoc/odoc_text.ml
- create mode 100644 ocamldoc/odoc_text.mli
- create mode 100644 ocamldoc/odoc_text_lexer.mll
- create mode 100644 ocamldoc/odoc_text_parser.mly
- create mode 100644 ocamldoc/odoc_to_text.ml
- create mode 100644 ocamldoc/odoc_type.ml
- create mode 100644 ocamldoc/odoc_types.ml
- create mode 100644 ocamldoc/odoc_types.mli
- create mode 100644 ocamldoc/odoc_value.ml
- create mode 100644 ocamltest/.depend
- create mode 100644 ocamltest/Makefile
- create mode 100644 ocamltest/README
- create mode 100644 ocamltest/actions.ml
- create mode 100644 ocamltest/actions.mli
- create mode 100644 ocamltest/actions_helpers.ml
- create mode 100644 ocamltest/actions_helpers.mli
- create mode 100644 ocamltest/builtin_actions.ml
- create mode 100644 ocamltest/builtin_actions.mli
- create mode 100644 ocamltest/builtin_variables.ml
- create mode 100644 ocamltest/builtin_variables.mli
- create mode 100644 ocamltest/dune
- create mode 100644 ocamltest/environments.ml
- create mode 100644 ocamltest/environments.mli
- create mode 100644 ocamltest/filecompare.ml
- create mode 100644 ocamltest/filecompare.mli
- create mode 100755 ocamltest/getocamloptdefaultflags
- create mode 100644 ocamltest/main.ml
- create mode 100644 ocamltest/main.mli
- create mode 100644 ocamltest/modifier_parser.ml
- create mode 100644 ocamltest/modifier_parser.mli
- create mode 100644 ocamltest/ocaml_actions.ml
- create mode 100644 ocamltest/ocaml_actions.mli
- create mode 100644 ocamltest/ocaml_backends.ml
- create mode 100644 ocamltest/ocaml_backends.mli
- create mode 100644 ocamltest/ocaml_commands.ml
- create mode 100644 ocamltest/ocaml_commands.mli
- create mode 100644 ocamltest/ocaml_compilers.ml
- create mode 100644 ocamltest/ocaml_compilers.mli
- create mode 100644 ocamltest/ocaml_directories.ml
- create mode 100644 ocamltest/ocaml_directories.mli
- create mode 100644 ocamltest/ocaml_files.ml
- create mode 100644 ocamltest/ocaml_files.mli
- create mode 100644 ocamltest/ocaml_filetypes.ml
- create mode 100644 ocamltest/ocaml_filetypes.mli
- create mode 100644 ocamltest/ocaml_flags.ml
- create mode 100644 ocamltest/ocaml_flags.mli
- create mode 100644 ocamltest/ocaml_modifiers.ml
- create mode 100644 ocamltest/ocaml_modifiers.mli
- create mode 100644 ocamltest/ocaml_tests.ml
- create mode 100644 ocamltest/ocaml_tests.mli
- create mode 100644 ocamltest/ocaml_tools.ml
- create mode 100644 ocamltest/ocaml_tools.mli
- create mode 100644 ocamltest/ocaml_toplevels.ml
- create mode 100644 ocamltest/ocaml_toplevels.mli
- create mode 100644 ocamltest/ocaml_variables.ml
- create mode 100644 ocamltest/ocaml_variables.mli
- create mode 100644 ocamltest/ocamltest.org
- create mode 100644 ocamltest/ocamltest_config.ml.in
- create mode 100644 ocamltest/ocamltest_config.mli
- create mode 100644 ocamltest/ocamltest_stdlib.ml
- create mode 100644 ocamltest/ocamltest_stdlib.mli
- create mode 100644 ocamltest/ocamltest_unix.mli
- create mode 100644 ocamltest/ocamltest_unix_dummy.ml
- create mode 100644 ocamltest/ocamltest_unix_real.ml
- create mode 100644 ocamltest/options.ml
- create mode 100644 ocamltest/options.mli
- create mode 100644 ocamltest/result.ml
- create mode 100644 ocamltest/result.mli
- create mode 100644 ocamltest/run.h
- create mode 100644 ocamltest/run_command.ml
- create mode 100644 ocamltest/run_command.mli
- create mode 100644 ocamltest/run_common.h
- create mode 100644 ocamltest/run_stubs.c
- create mode 100644 ocamltest/run_unix.c
- create mode 100644 ocamltest/run_win32.c
- create mode 100644 ocamltest/strace.ml
- create mode 100644 ocamltest/strace.mli
- create mode 100644 ocamltest/tests.ml
- create mode 100644 ocamltest/tests.mli
- create mode 100644 ocamltest/tsl_ast.ml
- create mode 100644 ocamltest/tsl_ast.mli
- create mode 100644 ocamltest/tsl_lexer.mli
- create mode 100644 ocamltest/tsl_lexer.mll
- create mode 100644 ocamltest/tsl_parser.mly
- create mode 100644 ocamltest/tsl_semantics.ml
- create mode 100644 ocamltest/tsl_semantics.mli
- create mode 100644 ocamltest/variables.ml
- create mode 100644 ocamltest/variables.mli
- create mode 100644 otherlibs/Makefile
- create mode 100644 otherlibs/Makefile.otherlibs.common
- create mode 100644 otherlibs/bigarray/.depend
- create mode 100644 otherlibs/bigarray/Makefile
- create mode 100644 otherlibs/bigarray/bigarray.ml
- create mode 100644 otherlibs/bigarray/bigarray.mli
- create mode 100644 otherlibs/bigarray/empty.c
- create mode 100644 otherlibs/dynlink/.depend
- create mode 100644 otherlibs/dynlink/Makefile
- create mode 100644 otherlibs/dynlink/byte/dynlink.ml
- create mode 100644 otherlibs/dynlink/dune
- create mode 100644 otherlibs/dynlink/dynlink.mli
- create mode 100644 otherlibs/dynlink/dynlink_common.ml
- create mode 100644 otherlibs/dynlink/dynlink_common.mli
- create mode 100644 otherlibs/dynlink/dynlink_compilerlibs/Makefile.copy-sources
- create mode 100644 otherlibs/dynlink/dynlink_platform_intf.ml
- create mode 100644 otherlibs/dynlink/dynlink_types.ml
- create mode 100644 otherlibs/dynlink/dynlink_types.mli
- create mode 100644 otherlibs/dynlink/extract_crc.ml
- create mode 100644 otherlibs/dynlink/native/dynlink.ml
- create mode 100644 otherlibs/str/.depend
- create mode 100644 otherlibs/str/Makefile
- create mode 100644 otherlibs/str/dune
- create mode 100644 otherlibs/str/str.ml
- create mode 100644 otherlibs/str/str.mli
- create mode 100644 otherlibs/str/strstubs.c
- create mode 100644 otherlibs/systhreads/.depend
- create mode 100644 otherlibs/systhreads/Makefile
- create mode 100644 otherlibs/systhreads/condition.ml
- create mode 100644 otherlibs/systhreads/condition.mli
- create mode 100644 otherlibs/systhreads/event.ml
- create mode 100644 otherlibs/systhreads/event.mli
- create mode 100644 otherlibs/systhreads/mutex.ml
- create mode 100644 otherlibs/systhreads/mutex.mli
- create mode 100644 otherlibs/systhreads/semaphore.ml
- create mode 100644 otherlibs/systhreads/semaphore.mli
- create mode 100644 otherlibs/systhreads/st_posix.h
- create mode 100644 otherlibs/systhreads/st_stubs.c
- create mode 100644 otherlibs/systhreads/st_win32.h
- create mode 100644 otherlibs/systhreads/thread.ml
- create mode 100644 otherlibs/systhreads/thread.mli
- create mode 100644 otherlibs/systhreads/threadUnix.ml
- create mode 100644 otherlibs/systhreads/threadUnix.mli
- create mode 100644 otherlibs/systhreads/threads.h
- create mode 100644 otherlibs/unix/.depend
- create mode 100644 otherlibs/unix/Makefile
- create mode 100644 otherlibs/unix/accept.c
- create mode 100644 otherlibs/unix/access.c
- create mode 100644 otherlibs/unix/addrofstr.c
- create mode 100644 otherlibs/unix/alarm.c
- create mode 100644 otherlibs/unix/bind.c
- create mode 100644 otherlibs/unix/channels.c
- create mode 100644 otherlibs/unix/chdir.c
- create mode 100644 otherlibs/unix/chmod.c
- create mode 100644 otherlibs/unix/chown.c
- create mode 100644 otherlibs/unix/chroot.c
- create mode 100644 otherlibs/unix/close.c
- create mode 100644 otherlibs/unix/closedir.c
- create mode 100644 otherlibs/unix/connect.c
- create mode 100644 otherlibs/unix/cst2constr.c
- create mode 100644 otherlibs/unix/cst2constr.h
- create mode 100644 otherlibs/unix/cstringv.c
- create mode 100644 otherlibs/unix/dune
- create mode 100644 otherlibs/unix/dup.c
- create mode 100644 otherlibs/unix/dup2.c
- create mode 100644 otherlibs/unix/envir.c
- create mode 100644 otherlibs/unix/errmsg.c
- create mode 100644 otherlibs/unix/execv.c
- create mode 100644 otherlibs/unix/execve.c
- create mode 100644 otherlibs/unix/execvp.c
- create mode 100644 otherlibs/unix/exit.c
- create mode 100644 otherlibs/unix/fchmod.c
- create mode 100644 otherlibs/unix/fchown.c
- create mode 100644 otherlibs/unix/fcntl.c
- create mode 100644 otherlibs/unix/fork.c
- create mode 100644 otherlibs/unix/fsync.c
- create mode 100644 otherlibs/unix/ftruncate.c
- create mode 100644 otherlibs/unix/getaddrinfo.c
- create mode 100644 otherlibs/unix/getcwd.c
- create mode 100644 otherlibs/unix/getegid.c
- create mode 100644 otherlibs/unix/geteuid.c
- create mode 100644 otherlibs/unix/getgid.c
- create mode 100644 otherlibs/unix/getgr.c
- create mode 100644 otherlibs/unix/getgroups.c
- create mode 100644 otherlibs/unix/gethost.c
- create mode 100644 otherlibs/unix/gethostname.c
- create mode 100644 otherlibs/unix/getlogin.c
- create mode 100644 otherlibs/unix/getnameinfo.c
- create mode 100644 otherlibs/unix/getpeername.c
- create mode 100644 otherlibs/unix/getpid.c
- create mode 100644 otherlibs/unix/getppid.c
- create mode 100644 otherlibs/unix/getproto.c
- create mode 100644 otherlibs/unix/getpw.c
- create mode 100644 otherlibs/unix/getserv.c
- create mode 100644 otherlibs/unix/getsockname.c
- create mode 100644 otherlibs/unix/gettimeofday.c
- create mode 100644 otherlibs/unix/getuid.c
- create mode 100644 otherlibs/unix/gmtime.c
- create mode 100644 otherlibs/unix/initgroups.c
- create mode 100644 otherlibs/unix/isatty.c
- create mode 100644 otherlibs/unix/itimer.c
- create mode 100644 otherlibs/unix/kill.c
- create mode 100644 otherlibs/unix/link.c
- create mode 100644 otherlibs/unix/listen.c
- create mode 100644 otherlibs/unix/lockf.c
- create mode 100644 otherlibs/unix/lseek.c
- create mode 100644 otherlibs/unix/mkdir.c
- create mode 100644 otherlibs/unix/mkfifo.c
- create mode 100644 otherlibs/unix/mmap.c
- create mode 100644 otherlibs/unix/mmap_ba.c
- create mode 100644 otherlibs/unix/nanosecond_stat.h
- create mode 100644 otherlibs/unix/nice.c
- create mode 100644 otherlibs/unix/open.c
- create mode 100644 otherlibs/unix/opendir.c
- create mode 100644 otherlibs/unix/pipe.c
- create mode 100644 otherlibs/unix/putenv.c
- create mode 100644 otherlibs/unix/read.c
- create mode 100644 otherlibs/unix/readdir.c
- create mode 100644 otherlibs/unix/readlink.c
- create mode 100644 otherlibs/unix/rename.c
- create mode 100644 otherlibs/unix/rewinddir.c
- create mode 100644 otherlibs/unix/rmdir.c
- create mode 100644 otherlibs/unix/select.c
- create mode 100644 otherlibs/unix/sendrecv.c
- create mode 100644 otherlibs/unix/setgid.c
- create mode 100644 otherlibs/unix/setgroups.c
- create mode 100644 otherlibs/unix/setsid.c
- create mode 100644 otherlibs/unix/setuid.c
- create mode 100644 otherlibs/unix/shutdown.c
- create mode 100644 otherlibs/unix/signals.c
- create mode 100644 otherlibs/unix/sleep.c
- create mode 100644 otherlibs/unix/socket.c
- create mode 100644 otherlibs/unix/socketaddr.c
- create mode 100644 otherlibs/unix/socketaddr.h
- create mode 100644 otherlibs/unix/socketpair.c
- create mode 100644 otherlibs/unix/sockopt.c
- create mode 100644 otherlibs/unix/spawn.c
- create mode 100644 otherlibs/unix/stat.c
- create mode 100644 otherlibs/unix/strofaddr.c
- create mode 100644 otherlibs/unix/symlink.c
- create mode 100644 otherlibs/unix/termios.c
- create mode 100644 otherlibs/unix/time.c
- create mode 100644 otherlibs/unix/times.c
- create mode 100644 otherlibs/unix/truncate.c
- create mode 100644 otherlibs/unix/umask.c
- create mode 100644 otherlibs/unix/unix.ml
- create mode 100644 otherlibs/unix/unix.mli
- create mode 100644 otherlibs/unix/unixLabels.ml
- create mode 100644 otherlibs/unix/unixLabels.mli
- create mode 100644 otherlibs/unix/unixsupport.c
- create mode 100644 otherlibs/unix/unixsupport.h
- create mode 100644 otherlibs/unix/unlink.c
- create mode 100644 otherlibs/unix/utimes.c
- create mode 100644 otherlibs/unix/wait.c
- create mode 100644 otherlibs/unix/write.c
- create mode 100644 otherlibs/win32unix/.depend
- create mode 100644 otherlibs/win32unix/Makefile
- create mode 100644 otherlibs/win32unix/accept.c
- create mode 100644 otherlibs/win32unix/bind.c
- create mode 100644 otherlibs/win32unix/channels.c
- create mode 100644 otherlibs/win32unix/close.c
- create mode 100644 otherlibs/win32unix/close_on.c
- create mode 100644 otherlibs/win32unix/connect.c
- create mode 100644 otherlibs/win32unix/createprocess.c
- create mode 100644 otherlibs/win32unix/dup.c
- create mode 100644 otherlibs/win32unix/dup2.c
- create mode 100644 otherlibs/win32unix/envir.c
- create mode 100644 otherlibs/win32unix/errmsg.c
- create mode 100644 otherlibs/win32unix/getpeername.c
- create mode 100644 otherlibs/win32unix/getpid.c
- create mode 100644 otherlibs/win32unix/getsockname.c
- create mode 100644 otherlibs/win32unix/gettimeofday.c
- create mode 100644 otherlibs/win32unix/isatty.c
- create mode 100644 otherlibs/win32unix/link.c
- create mode 100644 otherlibs/win32unix/listen.c
- create mode 100644 otherlibs/win32unix/lockf.c
- create mode 100644 otherlibs/win32unix/lseek.c
- create mode 100644 otherlibs/win32unix/mmap.c
- create mode 100644 otherlibs/win32unix/nonblock.c
- create mode 100644 otherlibs/win32unix/open.c
- create mode 100644 otherlibs/win32unix/pipe.c
- create mode 100644 otherlibs/win32unix/read.c
- create mode 100644 otherlibs/win32unix/readlink.c
- create mode 100644 otherlibs/win32unix/rename.c
- create mode 100644 otherlibs/win32unix/select.c
- create mode 100644 otherlibs/win32unix/sendrecv.c
- create mode 100644 otherlibs/win32unix/shutdown.c
- create mode 100644 otherlibs/win32unix/sleep.c
- create mode 100644 otherlibs/win32unix/socket.c
- create mode 100644 otherlibs/win32unix/sockopt.c
- create mode 100644 otherlibs/win32unix/startup.c
- create mode 100644 otherlibs/win32unix/stat.c
- create mode 100644 otherlibs/win32unix/symlink.c
- create mode 100644 otherlibs/win32unix/system.c
- create mode 100644 otherlibs/win32unix/times.c
- create mode 100644 otherlibs/win32unix/truncate.c
- create mode 100644 otherlibs/win32unix/unix.ml
- create mode 100644 otherlibs/win32unix/unixsupport.c
- create mode 100644 otherlibs/win32unix/unixsupport.h
- create mode 100644 otherlibs/win32unix/utimes.c
- create mode 100644 otherlibs/win32unix/windbug.c
- create mode 100644 otherlibs/win32unix/windbug.h
- create mode 100644 otherlibs/win32unix/windir.c
- create mode 100644 otherlibs/win32unix/winlist.c
- create mode 100644 otherlibs/win32unix/winlist.h
- create mode 100644 otherlibs/win32unix/winwait.c
- create mode 100644 otherlibs/win32unix/winworker.c
- create mode 100644 otherlibs/win32unix/winworker.h
- create mode 100644 otherlibs/win32unix/write.c
- create mode 100644 parsing/CONFLICTS.md
- create mode 100644 parsing/HACKING.adoc
- create mode 100644 parsing/VIPs.md
- create mode 100644 parsing/ast_helper.ml
- create mode 100644 parsing/ast_helper.mli
- create mode 100644 parsing/ast_invariants.ml
- create mode 100644 parsing/ast_invariants.mli
- create mode 100644 parsing/ast_iterator.ml
- create mode 100644 parsing/ast_iterator.mli
- create mode 100644 parsing/ast_mapper.ml
- create mode 100644 parsing/ast_mapper.mli
- create mode 100644 parsing/asttypes.mli
- create mode 100644 parsing/attr_helper.ml
- create mode 100644 parsing/attr_helper.mli
- create mode 100644 parsing/builtin_attributes.ml
- create mode 100644 parsing/builtin_attributes.mli
- create mode 100644 parsing/depend.ml
- create mode 100644 parsing/depend.mli
- create mode 100644 parsing/docstrings.ml
- create mode 100644 parsing/docstrings.mli
- create mode 100644 parsing/dune
- create mode 100644 parsing/lexer.mli
- create mode 100644 parsing/lexer.mll
- create mode 100644 parsing/location.ml
- create mode 100644 parsing/location.mli
- create mode 100644 parsing/longident.ml
- create mode 100644 parsing/longident.mli
- create mode 100644 parsing/parse.ml
- create mode 100644 parsing/parse.mli
- create mode 100644 parsing/parser.mly
- create mode 100644 parsing/parsetree.mli
- create mode 100644 parsing/pprintast.ml
- create mode 100644 parsing/pprintast.mli
- create mode 100644 parsing/printast.ml
- create mode 100644 parsing/printast.mli
- create mode 100644 parsing/syntaxerr.ml
- create mode 100644 parsing/syntaxerr.mli
- create mode 100644 release-info/News
- create mode 100644 release-info/howto.md
- create mode 100644 release-info/markdown-add-pr-links.sh
- create mode 100644 release-info/templates/beta.md
- create mode 100644 release-info/templates/production.md
- create mode 100644 release-info/templates/rc.md
- create mode 100644 runtime/Makefile
- create mode 100644 runtime/afl.c
- create mode 100644 runtime/alloc.c
- create mode 100644 runtime/amd64.S
- create mode 100644 runtime/amd64nt.asm
- create mode 100644 runtime/arm.S
- create mode 100644 runtime/arm64.S
- create mode 100644 runtime/array.c
- create mode 100644 runtime/backtrace.c
- create mode 100644 runtime/backtrace_byt.c
- create mode 100644 runtime/backtrace_nat.c
- create mode 100644 runtime/bigarray.c
- create mode 100644 runtime/callback.c
- create mode 100644 runtime/caml/address_class.h
- create mode 100644 runtime/caml/alloc.h
- create mode 100644 runtime/caml/backtrace.h
- create mode 100644 runtime/caml/backtrace_prim.h
- create mode 100644 runtime/caml/bigarray.h
- create mode 100644 runtime/caml/callback.h
- create mode 100644 runtime/caml/codefrag.h
- create mode 100644 runtime/caml/compact.h
- create mode 100644 runtime/caml/compare.h
- create mode 100644 runtime/caml/compatibility.h
- create mode 100644 runtime/caml/config.h
- create mode 100644 runtime/caml/custom.h
- create mode 100644 runtime/caml/debugger.h
- create mode 100644 runtime/caml/domain.h
- create mode 100644 runtime/caml/domain_state.h
- create mode 100644 runtime/caml/domain_state.tbl
- create mode 100644 runtime/caml/dune
- create mode 100644 runtime/caml/dynlink.h
- create mode 100644 runtime/caml/eventlog.h
- create mode 100644 runtime/caml/exec.h
- create mode 100644 runtime/caml/fail.h
- create mode 100644 runtime/caml/finalise.h
- create mode 100644 runtime/caml/fix_code.h
- create mode 100644 runtime/caml/freelist.h
- create mode 100644 runtime/caml/gc.h
- create mode 100644 runtime/caml/gc_ctrl.h
- create mode 100644 runtime/caml/globroots.h
- create mode 100644 runtime/caml/hash.h
- create mode 100644 runtime/caml/hooks.h
- create mode 100644 runtime/caml/instrtrace.h
- create mode 100644 runtime/caml/instruct.h
- create mode 100644 runtime/caml/interp.h
- create mode 100644 runtime/caml/intext.h
- create mode 100644 runtime/caml/io.h
- create mode 100644 runtime/caml/m.h.in
- create mode 100644 runtime/caml/major_gc.h
- create mode 100644 runtime/caml/md5.h
- create mode 100644 runtime/caml/memory.h
- create mode 100644 runtime/caml/memprof.h
- create mode 100644 runtime/caml/minor_gc.h
- create mode 100644 runtime/caml/misc.h
- create mode 100644 runtime/caml/mlvalues.h
- create mode 100644 runtime/caml/osdeps.h
- create mode 100644 runtime/caml/prims.h
- create mode 100644 runtime/caml/printexc.h
- create mode 100644 runtime/caml/reverse.h
- create mode 100644 runtime/caml/roots.h
- create mode 100644 runtime/caml/s.h.in
- create mode 100644 runtime/caml/signals.h
- create mode 100644 runtime/caml/signals_machdep.h
- create mode 100644 runtime/caml/skiplist.h
- create mode 100644 runtime/caml/stack.h
- create mode 100644 runtime/caml/stacks.h
- create mode 100644 runtime/caml/startup.h
- create mode 100644 runtime/caml/startup_aux.h
- create mode 100644 runtime/caml/sys.h
- create mode 100644 runtime/caml/ui.h
- create mode 100644 runtime/caml/weak.h
- create mode 100644 runtime/clambda_checks.c
- create mode 100644 runtime/codefrag.c
- create mode 100644 runtime/compact.c
- create mode 100644 runtime/compare.c
- create mode 100644 runtime/custom.c
- create mode 100644 runtime/debugger.c
- create mode 100644 runtime/domain.c
- create mode 100644 runtime/dune
- create mode 100644 runtime/dynlink.c
- create mode 100644 runtime/dynlink_nat.c
- create mode 100644 runtime/eventlog.c
- create mode 100644 runtime/extern.c
- create mode 100644 runtime/fail_byt.c
- create mode 100644 runtime/fail_nat.c
- create mode 100644 runtime/finalise.c
- create mode 100644 runtime/fix_code.c
- create mode 100644 runtime/floats.c
- create mode 100644 runtime/freelist.c
- create mode 100644 runtime/gc_ctrl.c
- create mode 100644 runtime/gen_domain_state32_inc.awk
- create mode 100644 runtime/gen_domain_state64_inc.awk
- create mode 100755 runtime/gen_primitives.sh
- create mode 100644 runtime/globroots.c
- create mode 100644 runtime/hash.c
- create mode 100644 runtime/i386.S
- create mode 100644 runtime/i386nt.asm
- create mode 100644 runtime/instrtrace.c
- create mode 100644 runtime/intern.c
- create mode 100644 runtime/interp.c
- create mode 100644 runtime/ints.c
- create mode 100644 runtime/io.c
- create mode 100644 runtime/lexing.c
- create mode 100644 runtime/main.c
- create mode 100644 runtime/major_gc.c
- create mode 100644 runtime/md5.c
- create mode 100644 runtime/memory.c
- create mode 100644 runtime/memprof.c
- create mode 100644 runtime/meta.c
- create mode 100644 runtime/minor_gc.c
- create mode 100644 runtime/misc.c
- create mode 100644 runtime/obj.c
- create mode 100644 runtime/parsing.c
- create mode 100644 runtime/power.S
- create mode 100644 runtime/printexc.c
- create mode 100644 runtime/riscv.S
- create mode 100644 runtime/roots_byt.c
- create mode 100644 runtime/roots_nat.c
- create mode 100644 runtime/s390x.S
- create mode 100644 runtime/signals.c
- create mode 100644 runtime/signals_byt.c
- create mode 100644 runtime/signals_nat.c
- create mode 100644 runtime/signals_osdep.h
- create mode 100644 runtime/skiplist.c
- create mode 100644 runtime/stacks.c
- create mode 100644 runtime/startup_aux.c
- create mode 100644 runtime/startup_byt.c
- create mode 100644 runtime/startup_nat.c
- create mode 100644 runtime/str.c
- create mode 100644 runtime/sys.c
- create mode 100644 runtime/unix.c
- create mode 100644 runtime/weak.c
- create mode 100644 runtime/win32.c
- create mode 100644 stdlib/.depend
- create mode 100755 stdlib/Compflags
- create mode 100644 stdlib/HACKING.adoc
- create mode 100644 stdlib/Makefile
- create mode 100644 stdlib/StdlibModules
- create mode 100644 stdlib/arg.ml
- create mode 100644 stdlib/arg.mli
- create mode 100644 stdlib/array.ml
- create mode 100644 stdlib/array.mli
- create mode 100644 stdlib/arrayLabels.ml
- create mode 100644 stdlib/arrayLabels.mli
- create mode 100644 stdlib/atomic.ml
- create mode 100644 stdlib/atomic.mli
- create mode 100644 stdlib/bigarray.ml
- create mode 100644 stdlib/bigarray.mli
- create mode 100644 stdlib/bool.ml
- create mode 100644 stdlib/bool.mli
- create mode 100644 stdlib/buffer.ml
- create mode 100644 stdlib/buffer.mli
- create mode 100644 stdlib/bytes.ml
- create mode 100644 stdlib/bytes.mli
- create mode 100644 stdlib/bytesLabels.ml
- create mode 100644 stdlib/bytesLabels.mli
- create mode 100644 stdlib/callback.ml
- create mode 100644 stdlib/callback.mli
- create mode 100644 stdlib/camlinternalAtomic.ml
- create mode 100644 stdlib/camlinternalAtomic.mli
- create mode 100644 stdlib/camlinternalFormat.ml
- create mode 100644 stdlib/camlinternalFormat.mli
- create mode 100644 stdlib/camlinternalFormatBasics.ml
- create mode 100644 stdlib/camlinternalFormatBasics.mli
- create mode 100644 stdlib/camlinternalLazy.ml
- create mode 100644 stdlib/camlinternalLazy.mli
- create mode 100644 stdlib/camlinternalMod.ml
- create mode 100644 stdlib/camlinternalMod.mli
- create mode 100644 stdlib/camlinternalOO.ml
- create mode 100644 stdlib/camlinternalOO.mli
- create mode 100644 stdlib/char.ml
- create mode 100644 stdlib/char.mli
- create mode 100644 stdlib/complex.ml
- create mode 100644 stdlib/complex.mli
- create mode 100644 stdlib/digest.ml
- create mode 100644 stdlib/digest.mli
- create mode 100644 stdlib/dune
- create mode 100644 stdlib/either.ml
- create mode 100644 stdlib/either.mli
- create mode 100644 stdlib/ephemeron.ml
- create mode 100644 stdlib/ephemeron.mli
- create mode 100644 stdlib/expand_module_aliases.awk
- create mode 100644 stdlib/filename.ml
- create mode 100644 stdlib/filename.mli
- create mode 100644 stdlib/float.ml
- create mode 100644 stdlib/float.mli
- create mode 100644 stdlib/format.ml
- create mode 100644 stdlib/format.mli
- create mode 100644 stdlib/fun.ml
- create mode 100644 stdlib/fun.mli
- create mode 100644 stdlib/gc.ml
- create mode 100644 stdlib/gc.mli
- create mode 100644 stdlib/genlex.ml
- create mode 100644 stdlib/genlex.mli
- create mode 100644 stdlib/hashbang
- create mode 100644 stdlib/hashtbl.ml
- create mode 100644 stdlib/hashtbl.mli
- create mode 100644 stdlib/header.c
- create mode 100644 stdlib/headernt.c
- create mode 100644 stdlib/int.ml
- create mode 100644 stdlib/int.mli
- create mode 100644 stdlib/int32.ml
- create mode 100644 stdlib/int32.mli
- create mode 100644 stdlib/int64.ml
- create mode 100644 stdlib/int64.mli
- create mode 100644 stdlib/lazy.ml
- create mode 100644 stdlib/lazy.mli
- create mode 100644 stdlib/lexing.ml
- create mode 100644 stdlib/lexing.mli
- create mode 100644 stdlib/list.ml
- create mode 100644 stdlib/list.mli
- create mode 100644 stdlib/listLabels.ml
- create mode 100644 stdlib/listLabels.mli
- create mode 100644 stdlib/map.ml
- create mode 100644 stdlib/map.mli
- create mode 100644 stdlib/marshal.ml
- create mode 100644 stdlib/marshal.mli
- create mode 100644 stdlib/moreLabels.ml
- create mode 100644 stdlib/moreLabels.mli
- create mode 100644 stdlib/nativeint.ml
- create mode 100644 stdlib/nativeint.mli
- create mode 100644 stdlib/obj.ml
- create mode 100644 stdlib/obj.mli
- create mode 100644 stdlib/ocaml_operators.mld
- create mode 100644 stdlib/oo.ml
- create mode 100644 stdlib/oo.mli
- create mode 100644 stdlib/option.ml
- create mode 100644 stdlib/option.mli
- create mode 100644 stdlib/parsing.ml
- create mode 100644 stdlib/parsing.mli
- create mode 100644 stdlib/pervasives.ml
- create mode 100644 stdlib/printexc.ml
- create mode 100644 stdlib/printexc.mli
- create mode 100644 stdlib/printf.ml
- create mode 100644 stdlib/printf.mli
- create mode 100644 stdlib/queue.ml
- create mode 100644 stdlib/queue.mli
- create mode 100644 stdlib/random.ml
- create mode 100644 stdlib/random.mli
- create mode 100644 stdlib/remove_module_aliases.awk
- create mode 100644 stdlib/result.ml
- create mode 100644 stdlib/result.mli
- create mode 100644 stdlib/scanf.ml
- create mode 100644 stdlib/scanf.mli
- create mode 100644 stdlib/seq.ml
- create mode 100644 stdlib/seq.mli
- create mode 100644 stdlib/set.ml
- create mode 100644 stdlib/set.mli
- create mode 100644 stdlib/stack.ml
- create mode 100644 stdlib/stack.mli
- create mode 100644 stdlib/stdLabels.ml
- create mode 100644 stdlib/stdLabels.mli
- create mode 100644 stdlib/std_exit.ml
- create mode 100644 stdlib/stdlib.ml
- create mode 100644 stdlib/stdlib.mli
- create mode 100644 stdlib/stream.ml
- create mode 100644 stdlib/stream.mli
- create mode 100644 stdlib/string.ml
- create mode 100644 stdlib/string.mli
- create mode 100644 stdlib/stringLabels.ml
- create mode 100644 stdlib/stringLabels.mli
- create mode 100644 stdlib/sys.mli
- create mode 100644 stdlib/sys.mlp
- create mode 100644 stdlib/templates/README.adoc
- create mode 100644 stdlib/templates/float.template.mli
- create mode 100644 stdlib/templates/floatarraylabeled.template.mli
- create mode 100644 stdlib/templates/hashtbl.template.mli
- create mode 100644 stdlib/templates/map.template.mli
- create mode 100644 stdlib/templates/moreLabels.template.mli
- create mode 100644 stdlib/templates/set.template.mli
- create mode 100644 stdlib/uchar.ml
- create mode 100644 stdlib/uchar.mli
- create mode 100644 stdlib/unit.ml
- create mode 100644 stdlib/unit.mli
- create mode 100644 stdlib/weak.ml
- create mode 100644 stdlib/weak.mli
- create mode 100644 testsuite/HACKING.adoc
- create mode 100644 testsuite/Makefile
- create mode 100644 testsuite/lib/Makefile
- create mode 100644 testsuite/lib/lib.ml
- create mode 100644 testsuite/lib/testing.ml
- create mode 100644 testsuite/lib/testing.mli
- create mode 100644 testsuite/summarize.awk
- create mode 100644 testsuite/tests/afl-instrumentation/afltest.ml
- create mode 100755 testsuite/tests/afl-instrumentation/afltest.run
- create mode 100644 testsuite/tests/afl-instrumentation/harness.ml
- create mode 100644 testsuite/tests/afl-instrumentation/has-afl-showmap.sh
- create mode 100644 testsuite/tests/afl-instrumentation/test.ml
- create mode 100644 testsuite/tests/arch-power/exn_raise.ml
- create mode 100644 testsuite/tests/arch-power/exn_raise.reference
- create mode 100644 testsuite/tests/array-functions/test.ml
- create mode 100644 testsuite/tests/array-functions/test.reference
- create mode 100644 testsuite/tests/asmcomp/0001-test.compilers.reference
- create mode 100644 testsuite/tests/asmcomp/0001-test.ml
- create mode 100644 testsuite/tests/asmcomp/bind_tuples.ml
- create mode 100644 testsuite/tests/asmcomp/compare.ml
- create mode 100644 testsuite/tests/asmcomp/compare.reference
- create mode 100644 testsuite/tests/asmcomp/func_sections.arm.reference
- create mode 100644 testsuite/tests/asmcomp/func_sections.ml
- create mode 100644 testsuite/tests/asmcomp/func_sections.reference
- create mode 100755 testsuite/tests/asmcomp/func_sections.run
- create mode 100644 testsuite/tests/asmcomp/is_in_static_data.c
- create mode 100644 testsuite/tests/asmcomp/is_static.ml
- create mode 100644 testsuite/tests/asmcomp/is_static_flambda.ml
- create mode 100644 testsuite/tests/asmcomp/is_static_flambda_dep.ml
- create mode 100644 testsuite/tests/asmcomp/lift_mutable_let_flambda.ml
- create mode 100644 testsuite/tests/asmcomp/optargs.ml
- create mode 100644 testsuite/tests/asmcomp/register_typing.ml
- create mode 100644 testsuite/tests/asmcomp/register_typing_switch.ml
- create mode 100644 testsuite/tests/asmcomp/simple_float_const.ml
- create mode 100644 testsuite/tests/asmcomp/simple_float_const_opaque.ml
- create mode 100644 testsuite/tests/asmcomp/static_float_array_flambda.ml
- create mode 100644 testsuite/tests/asmcomp/static_float_array_flambda_opaque.ml
- create mode 100644 testsuite/tests/asmcomp/staticalloc.ml
- create mode 100644 testsuite/tests/asmcomp/unrolling_flambda.ml
- create mode 100644 testsuite/tests/asmcomp/unrolling_flambda2.ml
- create mode 100644 testsuite/tests/asmgen/arith.cmm
- create mode 100644 testsuite/tests/asmgen/catch-float.cmm
- create mode 100644 testsuite/tests/asmgen/catch-multiple.cmm
- create mode 100644 testsuite/tests/asmgen/catch-rec-deadhandler.cmm
- create mode 100644 testsuite/tests/asmgen/catch-rec-deadhandler.reference
- create mode 100755 testsuite/tests/asmgen/catch-rec-deadhandler.run
- create mode 100644 testsuite/tests/asmgen/catch-rec.cmm
- create mode 100644 testsuite/tests/asmgen/catch-try-float.cmm
- create mode 100644 testsuite/tests/asmgen/catch-try.cmm
- create mode 100644 testsuite/tests/asmgen/checkbound.cmm
- create mode 100644 testsuite/tests/asmgen/even-odd-spill-float.cmm
- create mode 100644 testsuite/tests/asmgen/even-odd-spill.cmm
- create mode 100644 testsuite/tests/asmgen/even-odd.cmm
- create mode 100644 testsuite/tests/asmgen/fib.cmm
- create mode 100644 testsuite/tests/asmgen/immediates.cmm
- create mode 100644 testsuite/tests/asmgen/immediates.cmmpp
- create mode 100644 testsuite/tests/asmgen/immediates.tbl
- create mode 100644 testsuite/tests/asmgen/integr.cmm
- create mode 100644 testsuite/tests/asmgen/main.c
- create mode 100644 testsuite/tests/asmgen/mainarith.c
- create mode 100644 testsuite/tests/asmgen/mainimmed.c
- create mode 100644 testsuite/tests/asmgen/pgcd.cmm
- create mode 100644 testsuite/tests/asmgen/quicksort.cmm
- create mode 100644 testsuite/tests/asmgen/quicksort2.cmm
- create mode 100644 testsuite/tests/asmgen/soli.cmm
- create mode 100644 testsuite/tests/asmgen/tagged-fib.cmm
- create mode 100644 testsuite/tests/asmgen/tagged-integr.cmm
- create mode 100644 testsuite/tests/asmgen/tagged-quicksort.cmm
- create mode 100644 testsuite/tests/asmgen/tagged-tak.cmm
- create mode 100644 testsuite/tests/asmgen/tak.cmm
- create mode 100644 testsuite/tests/ast-invariants/test.ml
- create mode 100644 testsuite/tests/ast-invariants/test.reference
- create mode 100644 testsuite/tests/backtrace/backtrace.ml
- create mode 100644 testsuite/tests/backtrace/backtrace.reference
- create mode 100644 testsuite/tests/backtrace/backtrace.run
- create mode 100644 testsuite/tests/backtrace/backtrace2.ml
- create mode 100644 testsuite/tests/backtrace/backtrace2.reference
- create mode 100644 testsuite/tests/backtrace/backtrace3.ml
- create mode 100644 testsuite/tests/backtrace/backtrace3.reference
- create mode 100644 testsuite/tests/backtrace/backtrace_deprecated.ml
- create mode 100644 testsuite/tests/backtrace/backtrace_deprecated.reference
- create mode 100644 testsuite/tests/backtrace/backtrace_or_exception.ml
- create mode 100644 testsuite/tests/backtrace/backtrace_or_exception.reference
- create mode 100644 testsuite/tests/backtrace/backtrace_slots.ml
- create mode 100644 testsuite/tests/backtrace/backtrace_slots.reference
- create mode 100644 testsuite/tests/backtrace/backtraces_and_finalizers.ml
- create mode 100644 testsuite/tests/backtrace/backtraces_and_finalizers.reference
- create mode 100644 testsuite/tests/backtrace/callstack.ml
- create mode 100644 testsuite/tests/backtrace/callstack.reference
- create mode 100644 testsuite/tests/backtrace/event_after_prim.ml
- create mode 100644 testsuite/tests/backtrace/event_after_prim.reference
- create mode 100755 testsuite/tests/backtrace/filter-locations.sh
- create mode 100644 testsuite/tests/backtrace/inline_test.ml
- create mode 100644 testsuite/tests/backtrace/inline_test.reference
- create mode 100755 testsuite/tests/backtrace/inline_test.run
- create mode 100644 testsuite/tests/backtrace/inline_traversal_test.ml
- create mode 100644 testsuite/tests/backtrace/inline_traversal_test.reference
- create mode 100755 testsuite/tests/backtrace/inline_traversal_test.run
- create mode 100644 testsuite/tests/backtrace/lazy.ml
- create mode 100644 testsuite/tests/backtrace/lazy.reference
- create mode 100644 testsuite/tests/backtrace/methods.ml
- create mode 100644 testsuite/tests/backtrace/methods.reference
- create mode 100644 testsuite/tests/backtrace/names.ml
- create mode 100644 testsuite/tests/backtrace/names.reference
- create mode 100644 testsuite/tests/backtrace/pr2195-locs.byte.reference
- create mode 100644 testsuite/tests/backtrace/pr2195-nolocs.byte.reference
- create mode 100644 testsuite/tests/backtrace/pr2195.ml
- create mode 100644 testsuite/tests/backtrace/pr2195.opt.reference
- create mode 100755 testsuite/tests/backtrace/pr2195.run
- create mode 100644 testsuite/tests/backtrace/pr6920_why_at.ml
- create mode 100644 testsuite/tests/backtrace/pr6920_why_at.native.reference
- create mode 100644 testsuite/tests/backtrace/pr6920_why_at.reference
- create mode 100644 testsuite/tests/backtrace/pr6920_why_swallow.ml
- create mode 100644 testsuite/tests/backtrace/pr6920_why_swallow.native.reference
- create mode 100644 testsuite/tests/backtrace/pr6920_why_swallow.reference
- create mode 100644 testsuite/tests/backtrace/raw_backtrace.ml
- create mode 100644 testsuite/tests/backtrace/raw_backtrace.reference
- create mode 100644 testsuite/tests/basic-float/float_compare.ml
- create mode 100644 testsuite/tests/basic-float/float_compare.reference
- create mode 100644 testsuite/tests/basic-float/float_literals.ml
- create mode 100644 testsuite/tests/basic-float/tfloat_hex.ml
- create mode 100644 testsuite/tests/basic-float/tfloat_hex.reference
- create mode 100644 testsuite/tests/basic-float/tfloat_record.ml
- create mode 100644 testsuite/tests/basic-float/tfloat_record.reference
- create mode 100644 testsuite/tests/basic-float/zero_sized_float_arrays.ml
- create mode 100644 testsuite/tests/basic-float/zero_sized_float_arrays.reference
- create mode 100644 testsuite/tests/basic-io-2/io.ml
- create mode 100644 testsuite/tests/basic-io-2/io.reference
- create mode 100644 testsuite/tests/basic-io-2/test-file-short-lines
- create mode 100644 testsuite/tests/basic-io/wc.ml
- create mode 100644 testsuite/tests/basic-io/wc.reference
- create mode 100644 testsuite/tests/basic-manyargs/manyargs.ml
- create mode 100644 testsuite/tests/basic-manyargs/manyargs.reference
- create mode 100644 testsuite/tests/basic-manyargs/manyargsprim.c
- create mode 100644 testsuite/tests/basic-modules/anonymous.ml
- create mode 100644 testsuite/tests/basic-modules/anonymous.ocamlc.reference
- create mode 100644 testsuite/tests/basic-modules/anonymous.ocamlopt.flambda.reference
- create mode 100644 testsuite/tests/basic-modules/anonymous.ocamlopt.reference
- create mode 100644 testsuite/tests/basic-modules/main.ml
- create mode 100644 testsuite/tests/basic-modules/main.mli
- create mode 100644 testsuite/tests/basic-modules/main.reference
- create mode 100644 testsuite/tests/basic-modules/offset.ml
- create mode 100644 testsuite/tests/basic-modules/pr4008.ml
- create mode 100644 testsuite/tests/basic-modules/pr6726.ml
- create mode 100644 testsuite/tests/basic-modules/pr7427.ml
- create mode 100644 testsuite/tests/basic-modules/recursive_module_evaluation_errors.ml
- create mode 100644 testsuite/tests/basic-more/bounds.ml
- create mode 100644 testsuite/tests/basic-more/bounds.reference
- create mode 100644 testsuite/tests/basic-more/div_by_zero.ml
- create mode 100644 testsuite/tests/basic-more/div_by_zero.reference
- create mode 100644 testsuite/tests/basic-more/function_in_ref.ml
- create mode 100644 testsuite/tests/basic-more/function_in_ref.reference
- create mode 100644 testsuite/tests/basic-more/if_in_if.ml
- create mode 100644 testsuite/tests/basic-more/if_in_if.reference
- create mode 100644 testsuite/tests/basic-more/morematch.compilers.reference
- create mode 100644 testsuite/tests/basic-more/morematch.ml
- create mode 100644 testsuite/tests/basic-more/morematch.reference
- create mode 100644 testsuite/tests/basic-more/opaque_prim.ml
- create mode 100644 testsuite/tests/basic-more/opaque_prim.reference
- create mode 100644 testsuite/tests/basic-more/pr10294.ml
- create mode 100644 testsuite/tests/basic-more/pr10294.reference
- create mode 100644 testsuite/tests/basic-more/pr1271.ml
- create mode 100644 testsuite/tests/basic-more/pr1271.reference
- create mode 100644 testsuite/tests/basic-more/pr2719.ml
- create mode 100644 testsuite/tests/basic-more/pr2719.reference
- create mode 100644 testsuite/tests/basic-more/pr6216.ml
- create mode 100644 testsuite/tests/basic-more/pr6216.reference
- create mode 100644 testsuite/tests/basic-more/pr7683.ml
- create mode 100644 testsuite/tests/basic-more/pr7683.reference
- create mode 100644 testsuite/tests/basic-more/record_evaluation_order.ml
- create mode 100644 testsuite/tests/basic-more/record_evaluation_order.reference
- create mode 100644 testsuite/tests/basic-more/robustmatch.compilers.reference
- create mode 100644 testsuite/tests/basic-more/robustmatch.ml
- create mode 100644 testsuite/tests/basic-more/robustmatch.reference
- create mode 100644 testsuite/tests/basic-more/sequential_and_or.ml
- create mode 100644 testsuite/tests/basic-more/sequential_and_or.reference
- create mode 100644 testsuite/tests/basic-more/structural_constants.ml
- create mode 100644 testsuite/tests/basic-more/structural_constants.reference
- create mode 100644 testsuite/tests/basic-more/tbuffer.ml
- create mode 100644 testsuite/tests/basic-more/tbuffer.reference
- create mode 100644 testsuite/tests/basic-more/testrandom.ml
- create mode 100644 testsuite/tests/basic-more/testrandom.reference
- create mode 100644 testsuite/tests/basic-more/top_level_patterns.ml
- create mode 100644 testsuite/tests/basic-more/top_level_patterns.reference
- create mode 100644 testsuite/tests/basic-more/tprintf.ml
- create mode 100644 testsuite/tests/basic-more/tprintf.reference
- create mode 100644 testsuite/tests/basic-multdef/multdef.ml
- create mode 100644 testsuite/tests/basic-multdef/multdef.mli
- create mode 100644 testsuite/tests/basic-multdef/usemultdef.ml
- create mode 100644 testsuite/tests/basic-multdef/usemultdef.reference
- create mode 100644 testsuite/tests/basic-private/length.ml
- create mode 100644 testsuite/tests/basic-private/length.mli
- create mode 100644 testsuite/tests/basic-private/tlength.ml
- create mode 100644 testsuite/tests/basic-private/tlength.reference
- create mode 100644 testsuite/tests/basic/arrays.ml
- create mode 100644 testsuite/tests/basic/arrays.reference
- create mode 100644 testsuite/tests/basic/bigints.ml
- create mode 100644 testsuite/tests/basic/bigints.reference
- create mode 100644 testsuite/tests/basic/boxedints.ml
- create mode 100644 testsuite/tests/basic/boxedints.reference
- create mode 100644 testsuite/tests/basic/camlCase.ml
- create mode 100644 testsuite/tests/basic/constprop.ml.c
- create mode 100644 testsuite/tests/basic/constprop.ml.reference
- create mode 100644 testsuite/tests/basic/divint.ml
- create mode 100644 testsuite/tests/basic/divint.reference
- create mode 100644 testsuite/tests/basic/equality.ml
- create mode 100644 testsuite/tests/basic/equality.reference
- create mode 100644 testsuite/tests/basic/eval_order_1.ml
- create mode 100644 testsuite/tests/basic/eval_order_1.reference
- create mode 100644 testsuite/tests/basic/eval_order_2.ml
- create mode 100644 testsuite/tests/basic/eval_order_2.reference
- create mode 100644 testsuite/tests/basic/eval_order_3.ml
- create mode 100644 testsuite/tests/basic/eval_order_3.reference
- create mode 100644 testsuite/tests/basic/eval_order_4.ml
- create mode 100644 testsuite/tests/basic/eval_order_4.reference
- create mode 100644 testsuite/tests/basic/eval_order_6.ml
- create mode 100644 testsuite/tests/basic/eval_order_6.reference
- create mode 100644 testsuite/tests/basic/float.ml
- create mode 100644 testsuite/tests/basic/float.reference
- create mode 100644 testsuite/tests/basic/float_physical_equality.ml
- create mode 100644 testsuite/tests/basic/float_physical_equality.reference
- create mode 100644 testsuite/tests/basic/includestruct.ml
- create mode 100644 testsuite/tests/basic/includestruct.reference
- create mode 100644 testsuite/tests/basic/localexn.ml
- create mode 100644 testsuite/tests/basic/localexn.reference
- create mode 100644 testsuite/tests/basic/localfunction.ml
- create mode 100644 testsuite/tests/basic/localfunction.reference
- create mode 100644 testsuite/tests/basic/maps.ml
- create mode 100644 testsuite/tests/basic/maps.reference
- create mode 100644 testsuite/tests/basic/min_int.ml
- create mode 100644 testsuite/tests/basic/min_int.reference
- create mode 100644 testsuite/tests/basic/opt_variants.ml
- create mode 100644 testsuite/tests/basic/opt_variants.reference
- create mode 100644 testsuite/tests/basic/patmatch.ml
- create mode 100644 testsuite/tests/basic/patmatch.reference
- create mode 100644 testsuite/tests/basic/patmatch_for_multiple.ml
- create mode 100644 testsuite/tests/basic/patmatch_incoherence.ml
- create mode 100644 testsuite/tests/basic/patmatch_split_no_or.ml
- create mode 100644 testsuite/tests/basic/pr7253.ml
- create mode 100644 testsuite/tests/basic/pr7253.reference
- create mode 100644 testsuite/tests/basic/pr7533.ml
- create mode 100644 testsuite/tests/basic/pr7533.reference
- create mode 100644 testsuite/tests/basic/pr7657.ml
- create mode 100644 testsuite/tests/basic/pr7657.reference
- create mode 100644 testsuite/tests/basic/recvalues.ml
- create mode 100644 testsuite/tests/basic/recvalues.reference
- create mode 100644 testsuite/tests/basic/sets.ml
- create mode 100644 testsuite/tests/basic/sets.reference
- create mode 100644 testsuite/tests/basic/stringmatch.ml
- create mode 100644 testsuite/tests/basic/stringmatch.reference
- create mode 100644 testsuite/tests/basic/switch_opts.ml
- create mode 100644 testsuite/tests/basic/switch_opts.reference
- create mode 100644 testsuite/tests/basic/tailcalls.ml
- create mode 100644 testsuite/tests/basic/tailcalls.reference
- create mode 100644 testsuite/tests/basic/trigraph.ml
- create mode 100644 testsuite/tests/basic/trigraph.reference
- create mode 100644 testsuite/tests/basic/tuple_match.ml
- create mode 100644 testsuite/tests/basic/tuple_match.reference
- create mode 100644 testsuite/tests/basic/unit_naming.compilers.reference
- create mode 100644 testsuite/tests/basic/unit_naming.ml
- create mode 100644 testsuite/tests/basic/zero_divided_by_n.ml
- create mode 100644 testsuite/tests/basic/zero_divided_by_n.reference
- create mode 100644 testsuite/tests/c-api/alloc_async.ml
- create mode 100644 testsuite/tests/c-api/alloc_async.reference
- create mode 100644 testsuite/tests/c-api/alloc_async_stubs.c
- create mode 100644 testsuite/tests/callback/callbackprim.c
- create mode 100644 testsuite/tests/callback/signals_alloc.ml
- create mode 100644 testsuite/tests/callback/signals_alloc.reference
- create mode 100644 testsuite/tests/callback/tcallback.ml
- create mode 100644 testsuite/tests/callback/tcallback.reference
- create mode 100644 testsuite/tests/compatibility/main.ml
- create mode 100644 testsuite/tests/compatibility/main.reference
- create mode 100644 testsuite/tests/compatibility/stub.c
- create mode 100644 testsuite/tests/compiler-libs/test_longident.ml
- create mode 100644 testsuite/tests/embedded/cmcaml.ml
- create mode 100644 testsuite/tests/embedded/cmcaml.reference
- create mode 100644 testsuite/tests/embedded/cmmain.c
- create mode 100644 testsuite/tests/embedded/cmstub.c
- create mode 100644 testsuite/tests/ephe-c-api/stubs.c
- create mode 100644 testsuite/tests/ephe-c-api/test.ml
- create mode 100644 testsuite/tests/ephe-c-api/test.reference
- create mode 100644 testsuite/tests/exotic-syntax/exotic.ml
- create mode 100644 testsuite/tests/exotic-syntax/exotic.reference
- create mode 100644 testsuite/tests/extension-constructor/test.ml
- create mode 100644 testsuite/tests/extension-constructor/test.reference
- create mode 100644 testsuite/tests/flambda/afl_lazy.ml
- create mode 100644 testsuite/tests/flambda/approx_meet.ml
- create mode 100644 testsuite/tests/flambda/approx_meet.reference
- create mode 100644 testsuite/tests/flambda/gpr2239.ml
- create mode 100644 testsuite/tests/flambda/gpr2239.reference
- create mode 100644 testsuite/tests/flambda/gpr998.ml
- create mode 100644 testsuite/tests/flambda/gpr998.reference
- create mode 100644 testsuite/tests/flambda/specialise.ml
- create mode 100644 testsuite/tests/flambda/specialise.reference
- create mode 100644 testsuite/tests/float-unboxing/float_subst_boxed_number.ml
- create mode 100644 testsuite/tests/float-unboxing/unbox_under_assign.ml
- create mode 100644 testsuite/tests/fma/fma.ml
- create mode 100644 testsuite/tests/fma/fma.reference
- create mode 100644 testsuite/tests/formats-transition/deprecated_unsigned_printers.ml
- create mode 100644 testsuite/tests/formats-transition/deprecated_unsigned_printers.ocaml.reference
- create mode 100644 testsuite/tests/formats-transition/ignored_scan_counters.ml
- create mode 100644 testsuite/tests/formats-transition/ignored_scan_counters.ocaml.reference
- create mode 100644 testsuite/tests/formats-transition/legacy_incompatible_flags.ml
- create mode 100644 testsuite/tests/formats-transition/legacy_incompatible_flags.ocaml.reference
- create mode 100644 testsuite/tests/formats-transition/legacy_unfinished_modifiers.ml
- create mode 100644 testsuite/tests/formats-transition/legacy_unfinished_modifiers.ocaml.reference
- create mode 100644 testsuite/tests/formatting/errors_batch.ml
- create mode 100644 testsuite/tests/formatting/errors_batch.reference
- create mode 100644 testsuite/tests/formatting/margins.ml
- create mode 100644 testsuite/tests/formatting/margins.ocaml.reference
- create mode 100644 testsuite/tests/formatting/test_locations.dlocations.ocamlc.reference
- create mode 100644 testsuite/tests/formatting/test_locations.dno-locations.ocamlc.reference
- create mode 100644 testsuite/tests/formatting/test_locations.ml
- create mode 100644 testsuite/tests/functors/functors.compilers.reference
- create mode 100644 testsuite/tests/functors/functors.ml
- create mode 100644 testsuite/tests/gc-roots/globroots.ml
- create mode 100644 testsuite/tests/gc-roots/globroots.reference
- create mode 100644 testsuite/tests/gc-roots/globrootsprim.c
- create mode 100644 testsuite/tests/generalized-open/accepted_batch.ml
- create mode 100644 testsuite/tests/generalized-open/accepted_batch.reference
- create mode 100644 testsuite/tests/generalized-open/accepted_expect.ml
- create mode 100644 testsuite/tests/generalized-open/clambda_optim.ml
- create mode 100644 testsuite/tests/generalized-open/expansiveness.ml
- create mode 100644 testsuite/tests/generalized-open/funct_body.compilers.reference
- create mode 100644 testsuite/tests/generalized-open/funct_body.ml
- create mode 100644 testsuite/tests/generalized-open/gpr1506.ml
- create mode 100644 testsuite/tests/generalized-open/pr10048.ml
- create mode 100644 testsuite/tests/generalized-open/shadowing.ml
- create mode 100644 testsuite/tests/instrumented-runtime/main.ml
- create mode 100644 testsuite/tests/instrumented-runtime/main.run
- create mode 100644 testsuite/tests/int64-unboxing/stubs.c
- create mode 100644 testsuite/tests/int64-unboxing/test.ml
- create mode 100644 testsuite/tests/int64-unboxing/test.reference
- create mode 100644 testsuite/tests/lazy/lazy1.ml
- create mode 100644 testsuite/tests/lazy/lazy1.reference
- create mode 100644 testsuite/tests/let-syntax/let_syntax.ml
- create mode 100644 testsuite/tests/letrec-check/basic.ml
- create mode 100644 testsuite/tests/letrec-check/extension_constructor.ml
- create mode 100644 testsuite/tests/letrec-check/flat_float_array.ml
- create mode 100644 testsuite/tests/letrec-check/float_unboxing.ml
- create mode 100644 testsuite/tests/letrec-check/labels.ml
- create mode 100644 testsuite/tests/letrec-check/lazy_.ml
- create mode 100644 testsuite/tests/letrec-check/modules.ml
- create mode 100644 testsuite/tests/letrec-check/no_flat_float_array.ml
- create mode 100644 testsuite/tests/letrec-check/objects.ml
- create mode 100644 testsuite/tests/letrec-check/pr7215.ml
- create mode 100644 testsuite/tests/letrec-check/pr7215.ocaml.reference
- create mode 100644 testsuite/tests/letrec-check/pr7231.ml
- create mode 100644 testsuite/tests/letrec-check/pr7231.ocaml.reference
- create mode 100644 testsuite/tests/letrec-check/pr7706.ml
- create mode 100644 testsuite/tests/letrec-check/pr7706.ocaml.reference
- create mode 100644 testsuite/tests/letrec-check/records.ml
- create mode 100644 testsuite/tests/letrec-check/unboxed.ml
- create mode 100644 testsuite/tests/letrec-compilation/backreferences.ml
- create mode 100644 testsuite/tests/letrec-compilation/backreferences.reference
- create mode 100644 testsuite/tests/letrec-compilation/class_1.ml
- create mode 100644 testsuite/tests/letrec-compilation/class_1.reference
- create mode 100644 testsuite/tests/letrec-compilation/class_2.ml
- create mode 100644 testsuite/tests/letrec-compilation/class_2.reference
- create mode 100644 testsuite/tests/letrec-compilation/evaluation_order_1.ml
- create mode 100644 testsuite/tests/letrec-compilation/evaluation_order_1.reference
- create mode 100644 testsuite/tests/letrec-compilation/evaluation_order_2.ml
- create mode 100644 testsuite/tests/letrec-compilation/evaluation_order_2.reference
- create mode 100644 testsuite/tests/letrec-compilation/evaluation_order_3.ml
- create mode 100644 testsuite/tests/letrec-compilation/evaluation_order_3.reference
- create mode 100644 testsuite/tests/letrec-compilation/float_block_1.ml
- create mode 100644 testsuite/tests/letrec-compilation/float_block_1.reference
- create mode 100644 testsuite/tests/letrec-compilation/generic_array.ml
- create mode 100644 testsuite/tests/letrec-compilation/generic_array.reference
- create mode 100644 testsuite/tests/letrec-compilation/labels.ml
- create mode 100644 testsuite/tests/letrec-compilation/labels.reference
- create mode 100644 testsuite/tests/letrec-compilation/lazy_.ml
- create mode 100644 testsuite/tests/letrec-compilation/lazy_.reference
- create mode 100644 testsuite/tests/letrec-compilation/lists.ml
- create mode 100644 testsuite/tests/letrec-compilation/lists.reference
- create mode 100644 testsuite/tests/letrec-compilation/mixing_value_closures_1.ml
- create mode 100644 testsuite/tests/letrec-compilation/mixing_value_closures_1.reference
- create mode 100644 testsuite/tests/letrec-compilation/mixing_value_closures_2.ml
- create mode 100644 testsuite/tests/letrec-compilation/mixing_value_closures_2.reference
- create mode 100644 testsuite/tests/letrec-compilation/mutual_functions.ml
- create mode 100644 testsuite/tests/letrec-compilation/mutual_functions.reference
- create mode 100644 testsuite/tests/letrec-compilation/nested.ml
- create mode 100644 testsuite/tests/letrec-compilation/nested.reference
- create mode 100644 testsuite/tests/letrec-compilation/pr4989.ml
- create mode 100644 testsuite/tests/letrec-compilation/pr4989.reference
- create mode 100644 testsuite/tests/letrec-compilation/pr8681.ml
- create mode 100644 testsuite/tests/letrec-compilation/pr8681.reference
- create mode 100644 testsuite/tests/letrec-compilation/record_with.ml
- create mode 100644 testsuite/tests/letrec-compilation/record_with.reference
- create mode 100644 testsuite/tests/letrec-compilation/ref.ml
- create mode 100644 testsuite/tests/letrec-compilation/ref.reference
- create mode 100644 testsuite/tests/lexing/comments.ml
- create mode 100644 testsuite/tests/lexing/comments.ocaml.reference
- create mode 100644 testsuite/tests/lexing/escape.ml
- create mode 100644 testsuite/tests/lexing/escape.ocaml.reference
- create mode 100644 testsuite/tests/lexing/uchar_esc.ml
- create mode 100644 testsuite/tests/lexing/uchar_esc.ocaml.reference
- create mode 100644 testsuite/tests/lib-arg/test_rest_all.ml
- create mode 100644 testsuite/tests/lib-arg/testarg.ml
- create mode 100644 testsuite/tests/lib-arg/testarg.reference
- create mode 100644 testsuite/tests/lib-arg/testerror.ml
- create mode 100644 testsuite/tests/lib-arg/testerror.reference
- create mode 100644 testsuite/tests/lib-array/test_array.ml
- create mode 100644 testsuite/tests/lib-atomic/test_atomic.ml
- create mode 100644 testsuite/tests/lib-bigarray-2/bigarrf.f
- create mode 100644 testsuite/tests/lib-bigarray-2/bigarrfml.ml
- create mode 100644 testsuite/tests/lib-bigarray-2/bigarrfml.reference
- create mode 100644 testsuite/tests/lib-bigarray-2/bigarrfstub.c
- create mode 100644 testsuite/tests/lib-bigarray-2/call-gfortran.sh
- create mode 100644 testsuite/tests/lib-bigarray-2/has-gfortran.sh
- create mode 100644 testsuite/tests/lib-bigarray-file/mapfile.ml
- create mode 100644 testsuite/tests/lib-bigarray-file/mapfile.reference
- create mode 100644 testsuite/tests/lib-bigarray/bigarrays.ml
- create mode 100644 testsuite/tests/lib-bigarray/bigarrays.reference
- create mode 100644 testsuite/tests/lib-bigarray/change_layout.ml
- create mode 100644 testsuite/tests/lib-bigarray/change_layout.reference
- create mode 100644 testsuite/tests/lib-bigarray/fftba.ml
- create mode 100644 testsuite/tests/lib-bigarray/fftba.reference
- create mode 100644 testsuite/tests/lib-bigarray/pr5115.ml
- create mode 100644 testsuite/tests/lib-bigarray/pr5115.reference
- create mode 100644 testsuite/tests/lib-bigarray/weak_bigarray.ml
- create mode 100644 testsuite/tests/lib-bigarray/weak_bigarray.reference
- create mode 100644 testsuite/tests/lib-bool/test.ml
- create mode 100644 testsuite/tests/lib-bool/test.reference
- create mode 100644 testsuite/tests/lib-buffer/test.ml
- create mode 100644 testsuite/tests/lib-buffer/test.reference
- create mode 100644 testsuite/tests/lib-bytes/binary.ml
- create mode 100644 testsuite/tests/lib-bytes/test_bytes.ml
- create mode 100644 testsuite/tests/lib-bytes/test_bytes.reference
- create mode 100644 testsuite/tests/lib-channels/in_channel_length.ml
- create mode 100644 testsuite/tests/lib-channels/seek_in.ml
- create mode 100644 testsuite/tests/lib-digest/md5.ml
- create mode 100644 testsuite/tests/lib-digest/md5.reference
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/custom.reference
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/main.ml
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/main.reference
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/plug1.ml
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/plug2.ml
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/registry.ml
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/static.reference
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/stub1.c
- create mode 100644 testsuite/tests/lib-dynlink-bytecode/stub2.c
- create mode 100644 testsuite/tests/lib-dynlink-csharp/entry.c
- create mode 100644 testsuite/tests/lib-dynlink-csharp/main.bytecode.reference
- create mode 100644 testsuite/tests/lib-dynlink-csharp/main.cs
- create mode 100644 testsuite/tests/lib-dynlink-csharp/main.ml
- create mode 100644 testsuite/tests/lib-dynlink-csharp/main.native.reference
- create mode 100644 testsuite/tests/lib-dynlink-csharp/plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-init-info/test.ml
- create mode 100644 testsuite/tests/lib-dynlink-init-info/test.reference
- create mode 100755 testsuite/tests/lib-dynlink-initializers/test10_main.byte.reference
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test10_main.ml
- create mode 100755 testsuite/tests/lib-dynlink-initializers/test10_main.native.reference
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test10_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test1_inited_second.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test1_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test1_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test2_inited_first.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test2_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test2_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test3_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test3_plugin_a.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test3_plugin_b.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test4_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test4_plugin_a.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test4_plugin_b.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test5_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test5_plugin_a.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test5_plugin_b.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test5_second_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test6_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test6_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test6_second_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test7_interface_only.mli
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test7_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test7_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test8_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test8_plugin_a.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test8_plugin_b.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test8_plugin_b.mli
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test9_main.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test9_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test9_second_plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-initializers/test9_second_plugin.mli
- create mode 100644 testsuite/tests/lib-dynlink-native/a.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/api.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/b.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/bug.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/c.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/factorial.c
- create mode 100644 testsuite/tests/lib-dynlink-native/main.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/main.reference
- create mode 100644 testsuite/tests/lib-dynlink-native/pack_client.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/packed1.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/packed1_client.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin.mli
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin2.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin4.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin_ext.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin_high_arity.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin_ref.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin_simple.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/plugin_thread.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/sub/api.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/sub/api.mli
- create mode 100644 testsuite/tests/lib-dynlink-native/sub/plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-native/sub/plugin3.ml
- create mode 100644 testsuite/tests/lib-dynlink-packed/a.ml
- create mode 100644 testsuite/tests/lib-dynlink-packed/b.ml
- create mode 100644 testsuite/tests/lib-dynlink-packed/byte.reference
- create mode 100644 testsuite/tests/lib-dynlink-packed/loader.ml
- create mode 100644 testsuite/tests/lib-dynlink-packed/native.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/abstract.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/abstract.mli
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/client.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/main.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/main.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/static.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/sub/abstract.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4229/sub/abstract.mli
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/byte.plugin1.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/byte.plugin2.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/byte.plugin3.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/byte.plugin4.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/host/api.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/host/api.mli
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/host/host.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/native.plugin1.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/native.plugin2.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/native.plugin3.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/native.plugin4.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin1/api.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin1/api.mli
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin1/plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin2/api.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin2/api.mli
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin2/plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin3/api.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin3/api.mli
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin3/plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin4/api.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin4/api.mli
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/plugin4/plugin.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr4839/test.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr6950/b.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr6950/byte.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr6950/config.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr6950/loader.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr6950/native.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr9209/dyn.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr9209/lib.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr9209/lib2.ml
- create mode 100644 testsuite/tests/lib-dynlink-pr9209/main.reference
- create mode 100644 testsuite/tests/lib-dynlink-pr9209/ocamltests
- create mode 100644 testsuite/tests/lib-dynlink-pr9209/test.c
- create mode 100644 testsuite/tests/lib-dynlink-private/pig.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin1/sheep.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin1/sheep.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin2/cow.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin2/cow.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin2b/cow.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin2b/cow.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin2c/cow.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin2c/cow.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin3/pig.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin3/pig.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin4/chicken.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin4/chicken.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin5/chicken.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin5/chicken.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin6/partridge.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin6/partridge.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin6/pheasant.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/plugin6/pheasant.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/sheep.ml
- create mode 100644 testsuite/tests/lib-dynlink-private/sheep.mli
- create mode 100644 testsuite/tests/lib-dynlink-private/test.ml
- create mode 100644 testsuite/tests/lib-either/test.ml
- create mode 100644 testsuite/tests/lib-filename/extension.ml
- create mode 100644 testsuite/tests/lib-filename/extension.reference
- create mode 100644 testsuite/tests/lib-filename/myecho.ml
- create mode 100644 testsuite/tests/lib-filename/null.ml
- create mode 100644 testsuite/tests/lib-filename/quotecommand.ml
- create mode 100644 testsuite/tests/lib-filename/quotecommand.reference
- create mode 100644 testsuite/tests/lib-filename/suffix.ml
- create mode 100644 testsuite/tests/lib-filename/suffix.reference
- create mode 100644 testsuite/tests/lib-float/test.ml
- create mode 100644 testsuite/tests/lib-float/test.reference
- create mode 100644 testsuite/tests/lib-floatarray/floatarray.ml
- create mode 100644 testsuite/tests/lib-format/pp_print_custom_break.ml
- create mode 100644 testsuite/tests/lib-format/pp_print_custom_break.reference
- create mode 100644 testsuite/tests/lib-format/pr6824.ml
- create mode 100644 testsuite/tests/lib-format/pr6824.reference
- create mode 100644 testsuite/tests/lib-format/print_if_newline.ml
- create mode 100644 testsuite/tests/lib-format/print_if_newline.reference
- create mode 100644 testsuite/tests/lib-format/print_seq.ml
- create mode 100644 testsuite/tests/lib-format/print_seq.reference
- create mode 100644 testsuite/tests/lib-format/tformat.ml
- create mode 100644 testsuite/tests/lib-format/tformat.reference
- create mode 100644 testsuite/tests/lib-fun/test.ml
- create mode 100644 testsuite/tests/lib-fun/test.reference
- create mode 100644 testsuite/tests/lib-hashtbl/compatibility.ml
- create mode 100644 testsuite/tests/lib-hashtbl/hfun.ml
- create mode 100644 testsuite/tests/lib-hashtbl/hfun.reference
- create mode 100644 testsuite/tests/lib-hashtbl/htbl.ml
- create mode 100644 testsuite/tests/lib-hashtbl/htbl.reference
- create mode 100644 testsuite/tests/lib-int/test.ml
- create mode 100644 testsuite/tests/lib-int/test.reference
- create mode 100644 testsuite/tests/lib-int64/issue9460.ml
- create mode 100644 testsuite/tests/lib-int64/issue9460.reference
- create mode 100644 testsuite/tests/lib-int64/test.ml
- create mode 100644 testsuite/tests/lib-int64/test.reference
- create mode 100644 testsuite/tests/lib-internalformat/test.ml
- create mode 100644 testsuite/tests/lib-list/test.ml
- create mode 100644 testsuite/tests/lib-list/test.reference
- create mode 100644 testsuite/tests/lib-marshal/intern_final.ml
- create mode 100644 testsuite/tests/lib-marshal/intern_final.reference
- create mode 100644 testsuite/tests/lib-marshal/intext.ml
- create mode 100644 testsuite/tests/lib-marshal/intext.reference
- create mode 100644 testsuite/tests/lib-marshal/intextaux.c
- create mode 100644 testsuite/tests/lib-marshal/marshal_bigarray.ml
- create mode 100644 testsuite/tests/lib-marshal/marshal_bigarray.reference
- create mode 100644 testsuite/tests/lib-obj/new_obj.ml
- create mode 100644 testsuite/tests/lib-obj/new_obj.reference
- create mode 100644 testsuite/tests/lib-obj/reachable_words.ml
- create mode 100644 testsuite/tests/lib-obj/reachable_words.reference
- create mode 100644 testsuite/tests/lib-obj/reachable_words_np.ml
- create mode 100644 testsuite/tests/lib-obj/with_tag.ml
- create mode 100644 testsuite/tests/lib-obj/with_tag.reference
- create mode 100644 testsuite/tests/lib-option/test.ml
- create mode 100644 testsuite/tests/lib-option/test.reference
- create mode 100644 testsuite/tests/lib-printf/pr6534.ml
- create mode 100644 testsuite/tests/lib-printf/pr6534.reference
- create mode 100644 testsuite/tests/lib-printf/pr6938.ml
- create mode 100644 testsuite/tests/lib-printf/pr6938.reference
- create mode 100644 testsuite/tests/lib-printf/tprintf.ml
- create mode 100644 testsuite/tests/lib-printf/tprintf.reference
- create mode 100644 testsuite/tests/lib-queue/test.ml
- create mode 100644 testsuite/tests/lib-queue/test.reference
- create mode 100644 testsuite/tests/lib-random/rand.ml
- create mode 100644 testsuite/tests/lib-random/rand.reference
- create mode 100644 testsuite/tests/lib-result/test.ml
- create mode 100644 testsuite/tests/lib-result/test.reference
- create mode 100644 testsuite/tests/lib-scanf-2/tscanf2.reference
- create mode 100644 testsuite/tests/lib-scanf-2/tscanf2_io.ml
- create mode 100644 testsuite/tests/lib-scanf-2/tscanf2_master.ml
- create mode 100644 testsuite/tests/lib-scanf-2/tscanf2_worker.ml
- create mode 100644 testsuite/tests/lib-scanf/tscanf.ml
- create mode 100644 testsuite/tests/lib-scanf/tscanf.reference
- create mode 100644 testsuite/tests/lib-seq/test.ml
- create mode 100644 testsuite/tests/lib-seq/test.reference
- create mode 100644 testsuite/tests/lib-set/testmap.ml
- create mode 100644 testsuite/tests/lib-set/testmap.reference
- create mode 100644 testsuite/tests/lib-set/testset.ml
- create mode 100644 testsuite/tests/lib-set/testset.reference
- create mode 100644 testsuite/tests/lib-stack/test.ml
- create mode 100644 testsuite/tests/lib-stack/test.reference
- create mode 100644 testsuite/tests/lib-stdlabels/test_stdlabels.ml
- create mode 100644 testsuite/tests/lib-stdlabels/test_stdlabels.reference
- create mode 100644 testsuite/tests/lib-stdlib/pervasives_deprecated.ml
- create mode 100644 testsuite/tests/lib-str/t01.ml
- create mode 100644 testsuite/tests/lib-str/t01.reference
- create mode 100644 testsuite/tests/lib-stream/count_concat_bug.ml
- create mode 100644 testsuite/tests/lib-stream/count_concat_bug.reference
- create mode 100644 testsuite/tests/lib-stream/mpr7769.ml
- create mode 100644 testsuite/tests/lib-stream/mpr7769.reference
- create mode 100644 testsuite/tests/lib-stream/mpr7769.txt
- create mode 100644 testsuite/tests/lib-string/test_string.ml
- create mode 100644 testsuite/tests/lib-string/test_string.reference
- create mode 100644 testsuite/tests/lib-sys/immediate64.ml
- create mode 100644 testsuite/tests/lib-sys/rename.ml
- create mode 100644 testsuite/tests/lib-sys/rename.reference
- create mode 100644 testsuite/tests/lib-systhreads/eintr.ml
- create mode 100644 testsuite/tests/lib-systhreads/eintr.reference
- create mode 100644 testsuite/tests/lib-systhreads/testfork.ml
- create mode 100644 testsuite/tests/lib-systhreads/testfork.reference
- create mode 100644 testsuite/tests/lib-systhreads/testpreempt.ml
- create mode 100644 testsuite/tests/lib-systhreads/testpreempt.reference
- create mode 100644 testsuite/tests/lib-systhreads/testyield.ml
- create mode 100644 testsuite/tests/lib-systhreads/threadsigmask.ml
- create mode 100644 testsuite/tests/lib-systhreads/threadsigmask.reference
- create mode 100644 testsuite/tests/lib-threads/backtrace_threads.ml
- create mode 100644 testsuite/tests/lib-threads/bank.ml
- create mode 100644 testsuite/tests/lib-threads/bank.reference
- create mode 100644 testsuite/tests/lib-threads/beat.ml
- create mode 100644 testsuite/tests/lib-threads/beat.reference
- create mode 100644 testsuite/tests/lib-threads/bufchan.ml
- create mode 100644 testsuite/tests/lib-threads/bufchan.reference
- create mode 100644 testsuite/tests/lib-threads/close.ml
- create mode 100644 testsuite/tests/lib-threads/close.reference
- create mode 100644 testsuite/tests/lib-threads/delayintr.ml
- create mode 100644 testsuite/tests/lib-threads/delayintr.reference
- create mode 100644 testsuite/tests/lib-threads/delayintr.run
- create mode 100644 testsuite/tests/lib-threads/fileio.ml
- create mode 100644 testsuite/tests/lib-threads/fileio.reference
- create mode 100644 testsuite/tests/lib-threads/mutex_errors.ml
- create mode 100644 testsuite/tests/lib-threads/mutex_errors.reference
- create mode 100644 testsuite/tests/lib-threads/pr4466.ml
- create mode 100644 testsuite/tests/lib-threads/pr4466.reference
- create mode 100644 testsuite/tests/lib-threads/pr5325.ml
- create mode 100644 testsuite/tests/lib-threads/pr5325.reference
- create mode 100644 testsuite/tests/lib-threads/pr7638.ml
- create mode 100644 testsuite/tests/lib-threads/pr7638.reference
- create mode 100644 testsuite/tests/lib-threads/pr9971.ml
- create mode 100644 testsuite/tests/lib-threads/prodcons.ml
- create mode 100644 testsuite/tests/lib-threads/prodcons.reference
- create mode 100644 testsuite/tests/lib-threads/prodcons2.ml
- create mode 100644 testsuite/tests/lib-threads/prodcons2.reference
- create mode 100644 testsuite/tests/lib-threads/sieve.ml
- create mode 100644 testsuite/tests/lib-threads/sieve.reference
- create mode 100644 testsuite/tests/lib-threads/sigint.c
- create mode 100644 testsuite/tests/lib-threads/signal.check-program-output
- create mode 100644 testsuite/tests/lib-threads/signal.ml
- create mode 100644 testsuite/tests/lib-threads/signal.run
- create mode 100644 testsuite/tests/lib-threads/sockets.ml
- create mode 100644 testsuite/tests/lib-threads/sockets.reference
- create mode 100644 testsuite/tests/lib-threads/swapchan.ml
- create mode 100644 testsuite/tests/lib-threads/swapchan.reference
- create mode 100644 testsuite/tests/lib-threads/swapchan.run
- create mode 100755 testsuite/tests/lib-threads/test-runtime-cleanup.sh
- create mode 100644 testsuite/tests/lib-threads/tls.ml
- create mode 100644 testsuite/tests/lib-threads/tls.reference
- create mode 100644 testsuite/tests/lib-threads/tls.run
- create mode 100644 testsuite/tests/lib-threads/torture.ml
- create mode 100644 testsuite/tests/lib-threads/torture.reference
- create mode 100644 testsuite/tests/lib-uchar/test.ml
- create mode 100644 testsuite/tests/lib-uchar/test.reference
- create mode 100644 testsuite/tests/lib-unix/common/channel_of.ml
- create mode 100644 testsuite/tests/lib-unix/common/channel_of.reference
- create mode 100644 testsuite/tests/lib-unix/common/cloexec.ml
- create mode 100644 testsuite/tests/lib-unix/common/cloexec.reference
- create mode 100644 testsuite/tests/lib-unix/common/cmdline_prog.ml
- create mode 100644 testsuite/tests/lib-unix/common/dup.ml
- create mode 100644 testsuite/tests/lib-unix/common/dup.reference
- create mode 100644 testsuite/tests/lib-unix/common/dup2.ml
- create mode 100644 testsuite/tests/lib-unix/common/dup2.reference
- create mode 100644 testsuite/tests/lib-unix/common/fdstatus_aux.c
- create mode 100644 testsuite/tests/lib-unix/common/fdstatus_main.ml
- create mode 100644 testsuite/tests/lib-unix/common/getaddrinfo.ml
- create mode 100644 testsuite/tests/lib-unix/common/pipe_eof.ml
- create mode 100644 testsuite/tests/lib-unix/common/pipe_eof.reference
- create mode 100644 testsuite/tests/lib-unix/common/process_pid.ml
- create mode 100644 testsuite/tests/lib-unix/common/process_pid.reference
- create mode 100644 testsuite/tests/lib-unix/common/redirections.ml
- create mode 100644 testsuite/tests/lib-unix/common/redirections.reference
- create mode 100644 testsuite/tests/lib-unix/common/reflector.ml
- create mode 100644 testsuite/tests/lib-unix/common/rename.ml
- create mode 100644 testsuite/tests/lib-unix/common/rename.reference
- create mode 100644 testsuite/tests/lib-unix/common/test_unix_cmdline.ml
- create mode 100644 testsuite/tests/lib-unix/common/test_unix_cmdline.reference
- create mode 100644 testsuite/tests/lib-unix/common/test_unixlabels.ml
- create mode 100644 testsuite/tests/lib-unix/common/test_unixlabels.reference
- create mode 100644 testsuite/tests/lib-unix/common/truncate.ml
- create mode 100644 testsuite/tests/lib-unix/common/truncate.reference
- create mode 100644 testsuite/tests/lib-unix/common/uexit.ml
- create mode 100644 testsuite/tests/lib-unix/common/utimes.ml
- create mode 100644 testsuite/tests/lib-unix/common/utimes.reference
- create mode 100644 testsuite/tests/lib-unix/common/utimes.txt
- create mode 100644 testsuite/tests/lib-unix/common/wait_nohang.ml
- create mode 100644 testsuite/tests/lib-unix/common/wait_nohang.reference
- create mode 100644 testsuite/tests/lib-unix/isatty/isatty_std.ml
- create mode 100644 testsuite/tests/lib-unix/isatty/isatty_std.reference
- create mode 100644 testsuite/tests/lib-unix/isatty/isatty_tty.ml
- create mode 100644 testsuite/tests/lib-unix/isatty/isatty_tty.reference
- create mode 100644 testsuite/tests/lib-unix/kill/unix_kill.ml
- create mode 100644 testsuite/tests/lib-unix/kill/unix_kill.reference
- create mode 100644 testsuite/tests/lib-unix/unix-execvpe/exec.ml
- create mode 100644 testsuite/tests/lib-unix/unix-execvpe/exec.reference
- create mode 100755 testsuite/tests/lib-unix/unix-execvpe/exec.run
- create mode 100755 testsuite/tests/lib-unix/unix-execvpe/has-execvpe.sh
- create mode 100755 testsuite/tests/lib-unix/unix-execvpe/script3
- create mode 100644 testsuite/tests/lib-unix/unix-execvpe/subdir/nonexec
- create mode 100755 testsuite/tests/lib-unix/unix-execvpe/subdir/script1
- create mode 100755 testsuite/tests/lib-unix/unix-execvpe/subdir/script2
- create mode 100755 testsuite/tests/lib-unix/unix-socket/is-linux.sh
- create mode 100644 testsuite/tests/lib-unix/unix-socket/recvfrom.ml
- create mode 100644 testsuite/tests/lib-unix/unix-socket/recvfrom_linux.ml
- create mode 100644 testsuite/tests/lib-unix/unix-socket/recvfrom_linux.reference
- create mode 100644 testsuite/tests/lib-unix/unix-socket/recvfrom_unix.ml
- create mode 100644 testsuite/tests/lib-unix/unix-socket/recvfrom_unix.reference
- create mode 100644 testsuite/tests/lib-unix/win-env/stubs.c
- create mode 100644 testsuite/tests/lib-unix/win-env/test_env.ml
- create mode 100644 testsuite/tests/lib-unix/win-env/test_env.reference
- create mode 100644 testsuite/tests/lib-unix/win-stat/fakeclock.c
- create mode 100644 testsuite/tests/lib-unix/win-stat/test.ml
- create mode 100644 testsuite/tests/lib-unix/win-stat/test.reference
- create mode 100644 testsuite/tests/lib-unix/win-stat/test.run
- create mode 100644 testsuite/tests/lib-unix/win-symlink/test.ml
- create mode 100644 testsuite/tests/lib-unix/win-symlink/test.reference
- create mode 100644 testsuite/tests/link-test/aliases.ml
- create mode 100644 testsuite/tests/link-test/empty.ml
- create mode 100644 testsuite/tests/link-test/external.ml
- create mode 100644 testsuite/tests/link-test/external.mli
- create mode 100644 testsuite/tests/link-test/external_for_pack.ml
- create mode 100644 testsuite/tests/link-test/external_for_pack.mli
- create mode 100644 testsuite/tests/link-test/submodule.ml
- create mode 100644 testsuite/tests/link-test/test.ml
- create mode 100644 testsuite/tests/link-test/test.reference
- create mode 100644 testsuite/tests/link-test/use_in_pack.ml
- create mode 100644 testsuite/tests/load_path/driver.ml
- create mode 100644 testsuite/tests/load_path/payload.ml
- create mode 100644 testsuite/tests/load_path/test.ml
- create mode 100644 testsuite/tests/local-functions/tupled.ml
- create mode 100644 testsuite/tests/local-functions/tupled2.ml
- create mode 100644 testsuite/tests/locale/stubs.c
- create mode 100644 testsuite/tests/locale/test.ml
- create mode 100644 testsuite/tests/locale/test.reference
- create mode 100644 testsuite/tests/manual-intf-c/curses.ml
- create mode 100644 testsuite/tests/manual-intf-c/curses_stubs.c
- create mode 100644 testsuite/tests/manual-intf-c/prog.ml
- create mode 100644 testsuite/tests/manual-intf-c/prog2.reference
- create mode 100644 testsuite/tests/match-exception-warnings/exhaustiveness_warnings.ml
- create mode 100644 testsuite/tests/match-exception-warnings/no_mixing_under_guard.ml
- create mode 100644 testsuite/tests/match-exception-warnings/no_value_clauses.ml
- create mode 100644 testsuite/tests/match-exception-warnings/placement.ml
- create mode 100644 testsuite/tests/match-exception-warnings/pr7083.ml
- create mode 100644 testsuite/tests/match-exception-warnings/reachability.ml
- create mode 100644 testsuite/tests/match-exception/allocation.ml
- create mode 100644 testsuite/tests/match-exception/allocation.reference
- create mode 100644 testsuite/tests/match-exception/exception_propagation.ml
- create mode 100644 testsuite/tests/match-exception/exception_propagation.reference
- create mode 100644 testsuite/tests/match-exception/identifier_sharing.ml
- create mode 100644 testsuite/tests/match-exception/identifier_sharing.reference
- create mode 100644 testsuite/tests/match-exception/match_failure.ml
- create mode 100644 testsuite/tests/match-exception/match_failure.reference
- create mode 100644 testsuite/tests/match-exception/nested_handlers.ml
- create mode 100644 testsuite/tests/match-exception/nested_handlers.reference
- create mode 100644 testsuite/tests/match-exception/raise_from_success_continuation.ml
- create mode 100644 testsuite/tests/match-exception/raise_from_success_continuation.reference
- create mode 100644 testsuite/tests/match-exception/streams.ml
- create mode 100644 testsuite/tests/match-exception/streams.reference
- create mode 100644 testsuite/tests/match-exception/tail_calls.ml
- create mode 100644 testsuite/tests/match-exception/tail_calls.reference
- create mode 100644 testsuite/tests/messages/precise_locations.ml
- create mode 100644 testsuite/tests/misc-kb/equations.ml
- create mode 100644 testsuite/tests/misc-kb/equations.mli
- create mode 100644 testsuite/tests/misc-kb/kb.ml
- create mode 100644 testsuite/tests/misc-kb/kb.mli
- create mode 100644 testsuite/tests/misc-kb/kbmain.ml
- create mode 100644 testsuite/tests/misc-kb/kbmain.reference
- create mode 100644 testsuite/tests/misc-kb/orderings.ml
- create mode 100644 testsuite/tests/misc-kb/orderings.mli
- create mode 100644 testsuite/tests/misc-kb/terms.ml
- create mode 100644 testsuite/tests/misc-kb/terms.mli
- create mode 100644 testsuite/tests/misc-unsafe/almabench.ml
- create mode 100644 testsuite/tests/misc-unsafe/almabench.reference
- create mode 100644 testsuite/tests/misc-unsafe/fft.ml
- create mode 100644 testsuite/tests/misc-unsafe/fft.reference
- create mode 100644 testsuite/tests/misc-unsafe/quicksort.ml
- create mode 100644 testsuite/tests/misc-unsafe/quicksort.reference
- create mode 100644 testsuite/tests/misc-unsafe/soli.ml
- create mode 100644 testsuite/tests/misc-unsafe/soli.reference
- create mode 100644 testsuite/tests/misc/bdd.ml
- create mode 100644 testsuite/tests/misc/bdd.reference
- create mode 100644 testsuite/tests/misc/boyer.ml
- create mode 100644 testsuite/tests/misc/boyer.reference
- create mode 100644 testsuite/tests/misc/ephe_infix.ml
- create mode 100644 testsuite/tests/misc/ephetest.ml
- create mode 100644 testsuite/tests/misc/ephetest.reference
- create mode 100644 testsuite/tests/misc/ephetest2.ml
- create mode 100644 testsuite/tests/misc/ephetest2.reference
- create mode 100644 testsuite/tests/misc/ephetest3.ml
- create mode 100644 testsuite/tests/misc/ephetest3.reference
- create mode 100644 testsuite/tests/misc/exotic.ml
- create mode 100644 testsuite/tests/misc/fib.ml
- create mode 100644 testsuite/tests/misc/fib.reference
- create mode 100644 testsuite/tests/misc/finaliser.ml
- create mode 100644 testsuite/tests/misc/finaliser.reference
- create mode 100644 testsuite/tests/misc/gcwords.ml
- create mode 100644 testsuite/tests/misc/gcwords.reference
- create mode 100644 testsuite/tests/misc/gpr1370.ml
- create mode 100644 testsuite/tests/misc/gpr1370.reference
- create mode 100644 testsuite/tests/misc/hamming.ml
- create mode 100644 testsuite/tests/misc/hamming.reference
- create mode 100644 testsuite/tests/misc/nucleic.ml
- create mode 100644 testsuite/tests/misc/nucleic.reference
- create mode 100644 testsuite/tests/misc/pr7168.ml
- create mode 100644 testsuite/tests/misc/pr7168.reference
- create mode 100644 testsuite/tests/misc/sieve.ml
- create mode 100644 testsuite/tests/misc/sieve.reference
- create mode 100644 testsuite/tests/misc/sorts.ml
- create mode 100644 testsuite/tests/misc/sorts.reference
- create mode 100644 testsuite/tests/misc/takc.ml
- create mode 100644 testsuite/tests/misc/takc.reference
- create mode 100644 testsuite/tests/misc/taku.ml
- create mode 100644 testsuite/tests/misc/taku.reference
- create mode 100644 testsuite/tests/misc/weaklifetime.ml
- create mode 100644 testsuite/tests/misc/weaklifetime.reference
- create mode 100644 testsuite/tests/misc/weaklifetime2.ml
- create mode 100644 testsuite/tests/misc/weaklifetime2.reference
- create mode 100644 testsuite/tests/misc/weaktest.ml
- create mode 100644 testsuite/tests/misc/weaktest.reference
- create mode 100644 testsuite/tests/no-alias-deps/a2235.ml
- create mode 100644 testsuite/tests/no-alias-deps/aliases.compilers.reference
- create mode 100644 testsuite/tests/no-alias-deps/aliases.ml
- create mode 100644 testsuite/tests/no-alias-deps/aliases.reference
- create mode 100644 testsuite/tests/no-alias-deps/b.cmi.invalid
- create mode 100644 testsuite/tests/no-alias-deps/c.mli
- create mode 100644 testsuite/tests/no-alias-deps/d.mli
- create mode 100644 testsuite/tests/no-alias-deps/gpr2235.ml
- create mode 100644 testsuite/tests/no-alias-deps/lib2235.ml
- create mode 100644 testsuite/tests/no-alias-deps/lib__2235.ml
- create mode 100644 testsuite/tests/no-alias-deps/user_of_lib2235.ml
- create mode 100644 testsuite/tests/opaque/fst/opaque_impl.ml
- create mode 100644 testsuite/tests/opaque/fst/opaque_intf.ml
- create mode 100644 testsuite/tests/opaque/fst/regular.ml
- create mode 100644 testsuite/tests/opaque/intf/opaque_impl.mli
- create mode 100644 testsuite/tests/opaque/intf/opaque_intf.mli
- create mode 100644 testsuite/tests/opaque/intf/regular.mli
- create mode 100644 testsuite/tests/opaque/snd/opaque_impl.ml
- create mode 100644 testsuite/tests/opaque/snd/opaque_intf.ml
- create mode 100644 testsuite/tests/opaque/snd/regular.ml
- create mode 100644 testsuite/tests/opaque/test.ml
- create mode 100644 testsuite/tests/output-complete-obj/github9344.ml
- create mode 100644 testsuite/tests/output-complete-obj/github9344.reference
- create mode 100644 testsuite/tests/output-complete-obj/github9344.sh
- create mode 100644 testsuite/tests/output-complete-obj/puts.c
- create mode 100644 testsuite/tests/output-complete-obj/test.ml
- create mode 100644 testsuite/tests/output-complete-obj/test.ml_stub.c
- create mode 100644 testsuite/tests/output-complete-obj/test2.ml
- create mode 100644 testsuite/tests/output-complete-obj/test2.reference
- create mode 100644 testsuite/tests/parse-errors/escape_error.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/escape_error.ml
- create mode 100644 testsuite/tests/parse-errors/expecting.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/expecting.ml
- create mode 100644 testsuite/tests/parse-errors/pr7847.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/pr7847.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_signature.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_signature.mli
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_simpl_expr1.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_simpl_expr1.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_simpl_expr2.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_simpl_expr2.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_simpl_expr3.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_class_simpl_expr3.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_object.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_object.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr1.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr1.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr2.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr2.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr3.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr3.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr4.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr4.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr5.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_expr5.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_type.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_paren_module_type.mli
- create mode 100644 testsuite/tests/parse-errors/unclosed_sig.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_sig.mli
- create mode 100644 testsuite/tests/parse-errors/unclosed_simple_expr.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_simple_expr.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_simple_pattern.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_simple_pattern.ml
- create mode 100644 testsuite/tests/parse-errors/unclosed_struct.compilers.reference
- create mode 100644 testsuite/tests/parse-errors/unclosed_struct.ml
- create mode 100644 testsuite/tests/parsetree/locations_test.compilers.reference
- create mode 100644 testsuite/tests/parsetree/locations_test.ml
- create mode 100644 testsuite/tests/parsetree/source.ml
- create mode 100644 testsuite/tests/parsetree/test.ml
- create mode 100644 testsuite/tests/parsetree/test.reference
- create mode 100644 testsuite/tests/parsing/anonymous_class_parameter.compilers.reference
- create mode 100644 testsuite/tests/parsing/anonymous_class_parameter.ml
- create mode 100644 testsuite/tests/parsing/arrow_ambiguity.compilers.reference
- create mode 100644 testsuite/tests/parsing/arrow_ambiguity.ml
- create mode 100644 testsuite/tests/parsing/attributes.compilers.reference
- create mode 100644 testsuite/tests/parsing/attributes.ml
- create mode 100644 testsuite/tests/parsing/broken_invariants.compilers.reference
- create mode 100644 testsuite/tests/parsing/broken_invariants.ml
- create mode 100644 testsuite/tests/parsing/change_start_loc.ml
- create mode 100644 testsuite/tests/parsing/change_start_loc.reference
- create mode 100644 testsuite/tests/parsing/constructor_declarations.compilers.reference
- create mode 100644 testsuite/tests/parsing/constructor_declarations.ml
- create mode 100644 testsuite/tests/parsing/docstrings.ml
- create mode 100644 testsuite/tests/parsing/extended_indexoperators.ml
- create mode 100644 testsuite/tests/parsing/extension_operators.ml
- create mode 100644 testsuite/tests/parsing/extensions.compilers.reference
- create mode 100644 testsuite/tests/parsing/extensions.ml
- create mode 100644 testsuite/tests/parsing/hash_ambiguity.compilers.reference
- create mode 100644 testsuite/tests/parsing/hash_ambiguity.ml
- create mode 100644 testsuite/tests/parsing/illegal_ppx.ml
- create mode 100644 testsuite/tests/parsing/int_and_float_with_modifier.compilers.reference
- create mode 100644 testsuite/tests/parsing/int_and_float_with_modifier.ml
- create mode 100644 testsuite/tests/parsing/multi_indices.ml
- create mode 100644 testsuite/tests/parsing/pr6604.compilers.reference
- create mode 100644 testsuite/tests/parsing/pr6604.ml
- create mode 100644 testsuite/tests/parsing/pr6604_2.compilers.reference
- create mode 100644 testsuite/tests/parsing/pr6604_2.ml
- create mode 100644 testsuite/tests/parsing/pr6604_3.compilers.reference
- create mode 100644 testsuite/tests/parsing/pr6604_3.ml
- create mode 100644 testsuite/tests/parsing/pr6865.compilers.reference
- create mode 100644 testsuite/tests/parsing/pr6865.ml
- create mode 100644 testsuite/tests/parsing/pr7165.compilers.reference
- create mode 100644 testsuite/tests/parsing/pr7165.ml
- create mode 100644 testsuite/tests/parsing/quotedextensions.compilers.reference
- create mode 100644 testsuite/tests/parsing/quotedextensions.ml
- create mode 100644 testsuite/tests/parsing/reloc.ml
- create mode 100644 testsuite/tests/parsing/shortcut_ext_attr.compilers.reference
- create mode 100644 testsuite/tests/parsing/shortcut_ext_attr.ml
- create mode 100644 testsuite/tests/ppx-attributes/warning.ml
- create mode 100644 testsuite/tests/ppx-attributes/warning.reference
- create mode 100644 testsuite/tests/ppx-contexts/myppx.ml
- create mode 100644 testsuite/tests/ppx-contexts/test.compilers.reference
- create mode 100644 testsuite/tests/ppx-contexts/test.ml
- create mode 100644 testsuite/tests/prim-bigstring/bigstring_access.ml
- create mode 100644 testsuite/tests/prim-bigstring/bigstring_access.reference
- create mode 100644 testsuite/tests/prim-bigstring/string_access.ml
- create mode 100644 testsuite/tests/prim-bigstring/string_access.reference
- create mode 100644 testsuite/tests/prim-bswap/bswap.ml
- create mode 100644 testsuite/tests/prim-bswap/bswap.reference
- create mode 100644 testsuite/tests/prim-revapply/apply.ml
- create mode 100644 testsuite/tests/prim-revapply/apply.reference
- create mode 100644 testsuite/tests/prim-revapply/revapply.ml
- create mode 100644 testsuite/tests/prim-revapply/revapply.reference
- create mode 100644 testsuite/tests/printing-types/disambiguation.ml
- create mode 100644 testsuite/tests/printing-types/pr248.ml
- create mode 100644 testsuite/tests/printing-types/pr248.ocaml.reference
- create mode 100644 testsuite/tests/raise-counts/a.ml
- create mode 100644 testsuite/tests/raise-counts/b.ml
- create mode 100644 testsuite/tests/raise-counts/main.ml
- create mode 100644 testsuite/tests/raise-counts/main.reference
- create mode 100644 testsuite/tests/regression/gpr1623/gpr1623.ml
- create mode 100644 testsuite/tests/regression/gpr1623/gpr1623.reference
- create mode 100644 testsuite/tests/regression/missing_set_of_closures/a.ml
- create mode 100644 testsuite/tests/regression/missing_set_of_closures/b.ml
- create mode 100644 testsuite/tests/regression/missing_set_of_closures/b2.ml
- create mode 100644 testsuite/tests/regression/missing_set_of_closures/dir/c.ml
- create mode 100644 testsuite/tests/regression/missing_set_of_closures/missing_set_of_closures.ml
- create mode 100644 testsuite/tests/regression/pr1580/pr1580.ml
- create mode 100644 testsuite/tests/regression/pr1580/pr1580.reference
- create mode 100644 testsuite/tests/regression/pr3612/custom_finalize.c
- create mode 100644 testsuite/tests/regression/pr3612/pr3612.ml
- create mode 100644 testsuite/tests/regression/pr3612/pr3612.reference
- create mode 100644 testsuite/tests/regression/pr5233/pr5233.ml
- create mode 100644 testsuite/tests/regression/pr5233/pr5233.reference
- create mode 100644 testsuite/tests/regression/pr5757/pr5757.ml
- create mode 100644 testsuite/tests/regression/pr5757/pr5757.reference
- create mode 100644 testsuite/tests/regression/pr6024/pr6024.ml
- create mode 100644 testsuite/tests/regression/pr6024/pr6024.reference
- create mode 100644 testsuite/tests/regression/pr7042/pr7042.ml
- create mode 100644 testsuite/tests/regression/pr7042/pr7042.reference
- create mode 100644 testsuite/tests/regression/pr7426/pr7426.ml
- create mode 100644 testsuite/tests/regression/pr7426/pr7426.reference
- create mode 100644 testsuite/tests/regression/pr7718/pr7718.ml
- create mode 100644 testsuite/tests/regression/pr7718/pr7718.reference
- create mode 100644 testsuite/tests/regression/pr7798/pr7798.ml
- create mode 100644 testsuite/tests/regression/pr7798/pr7798.reference
- create mode 100644 testsuite/tests/regression/pr7920/pr7920.ml
- create mode 100644 testsuite/tests/regression/pr7920/pr7920.reference
- create mode 100644 testsuite/tests/regression/pr8769/fortuna.ml
- create mode 100644 testsuite/tests/regression/pr8769/nocrypto.mli
- create mode 100644 testsuite/tests/regression/pr8769/pr8769.ml
- create mode 100644 testsuite/tests/regression/pr8769/rng.ml
- create mode 100644 testsuite/tests/regression/pr9028/pr9028.ml
- create mode 100644 testsuite/tests/regression/pr9028/pr9028.reference
- create mode 100644 testsuite/tests/regression/pr9292/pr9292.ml
- create mode 100644 testsuite/tests/regression/pr9326/gc_set.ml
- create mode 100644 testsuite/tests/regression/pr9443/pr9443.ml
- create mode 100644 testsuite/tests/reproducibility/cmis_on_file_system.ml
- create mode 100644 testsuite/tests/reproducibility/cmis_on_file_system_companion.mli
- create mode 100644 testsuite/tests/required-external/file.ml
- create mode 100644 testsuite/tests/required-external/main.ml
- create mode 100644 testsuite/tests/required-external/main.reference
- create mode 100644 testsuite/tests/runtime-C-exceptions/stub_test.c
- create mode 100644 testsuite/tests/runtime-C-exceptions/test.ml
- create mode 100644 testsuite/tests/runtime-C-exceptions/test.reference
- create mode 100644 testsuite/tests/runtime-errors/has-stackoverflow-detection.sh
- create mode 100644 testsuite/tests/runtime-errors/stackoverflow.ml
- create mode 100644 testsuite/tests/runtime-errors/stackoverflow.native.reference
- create mode 100644 testsuite/tests/runtime-errors/stackoverflow.reference
- create mode 100644 testsuite/tests/runtime-errors/stackoverflow.run
- create mode 100644 testsuite/tests/runtime-errors/syserror.ml
- create mode 100644 testsuite/tests/runtime-errors/syserror.unix.reference
- create mode 100644 testsuite/tests/runtime-errors/syserror.win32.reference
- create mode 100644 testsuite/tests/runtime-naked-pointers/cstubs.c
- create mode 100644 testsuite/tests/runtime-naked-pointers/np.ml
- create mode 100644 testsuite/tests/runtime-naked-pointers/np1.ml
- create mode 100644 testsuite/tests/runtime-naked-pointers/np2.ml
- create mode 100755 testsuite/tests/runtime-naked-pointers/np2.run
- create mode 100644 testsuite/tests/runtime-naked-pointers/np3.ml
- create mode 100755 testsuite/tests/runtime-naked-pointers/np3.run
- create mode 100644 testsuite/tests/runtime-naked-pointers/np4.ml
- create mode 100755 testsuite/tests/runtime-naked-pointers/np4.run
- create mode 100755 testsuite/tests/runtime-naked-pointers/runtest.sh
- create mode 100644 testsuite/tests/runtime-objects/Tests.ml
- create mode 100644 testsuite/tests/self-contained-toplevel/foo.ml
- create mode 100644 testsuite/tests/self-contained-toplevel/gen_cached_cmi.ml
- create mode 100644 testsuite/tests/self-contained-toplevel/input.ml
- create mode 100644 testsuite/tests/self-contained-toplevel/main.ml
- create mode 100644 testsuite/tests/self-contained-toplevel/main.reference
- create mode 100644 testsuite/tests/shadow_include/artificial.ml
- create mode 100644 testsuite/tests/shadow_include/cannot_shadow_error.compilers.reference
- create mode 100644 testsuite/tests/shadow_include/cannot_shadow_error.ml
- create mode 100644 testsuite/tests/shadow_include/shadow_all.ml
- create mode 100644 testsuite/tests/statmemprof/alloc_counts.ml
- create mode 100644 testsuite/tests/statmemprof/alloc_counts.reference
- create mode 100644 testsuite/tests/statmemprof/arrays_in_major.ml
- create mode 100644 testsuite/tests/statmemprof/arrays_in_major.reference
- create mode 100644 testsuite/tests/statmemprof/arrays_in_minor.ml
- create mode 100644 testsuite/tests/statmemprof/arrays_in_minor.reference
- create mode 100644 testsuite/tests/statmemprof/blocking_in_callback.ml
- create mode 100644 testsuite/tests/statmemprof/callstacks.flat-float-array.reference
- create mode 100644 testsuite/tests/statmemprof/callstacks.ml
- create mode 100644 testsuite/tests/statmemprof/callstacks.no-flat-float-array.reference
- create mode 100644 testsuite/tests/statmemprof/comballoc.byte.reference
- create mode 100644 testsuite/tests/statmemprof/comballoc.ml
- create mode 100644 testsuite/tests/statmemprof/comballoc.opt.reference
- create mode 100644 testsuite/tests/statmemprof/custom.ml
- create mode 100644 testsuite/tests/statmemprof/custom.reference
- create mode 100644 testsuite/tests/statmemprof/exception_callback.ml
- create mode 100644 testsuite/tests/statmemprof/exception_callback.reference
- create mode 100644 testsuite/tests/statmemprof/exception_callback_minor.ml
- create mode 100644 testsuite/tests/statmemprof/exception_callback_minor.reference
- create mode 100644 testsuite/tests/statmemprof/intern.ml
- create mode 100644 testsuite/tests/statmemprof/intern.reference
- create mode 100644 testsuite/tests/statmemprof/lists_in_minor.ml
- create mode 100644 testsuite/tests/statmemprof/lists_in_minor.reference
- create mode 100644 testsuite/tests/statmemprof/minor_no_postpone.ml
- create mode 100644 testsuite/tests/statmemprof/minor_no_postpone_stub.c
- create mode 100644 testsuite/tests/statmemprof/moved_while_blocking.ml
- create mode 100644 testsuite/tests/statmemprof/moved_while_blocking.reference
- create mode 100644 testsuite/tests/statmemprof/thread_exit_in_callback.ml
- create mode 100644 testsuite/tests/tool-caml-tex/ellipses.input
- create mode 100644 testsuite/tests/tool-caml-tex/ellipses.ml
- create mode 100644 testsuite/tests/tool-caml-tex/ellipses.reference
- create mode 100644 testsuite/tests/tool-caml-tex/redirections.input
- create mode 100644 testsuite/tests/tool-caml-tex/redirections.ml
- create mode 100644 testsuite/tests/tool-caml-tex/redirections.reference
- create mode 100644 testsuite/tests/tool-command-line/test.compilers.reference
- create mode 100644 testsuite/tests/tool-command-line/test.ml
- create mode 100644 testsuite/tests/tool-command-line/unknown-file
- create mode 100644 testsuite/tests/tool-debugger/basic/debuggee.ml
- create mode 100644 testsuite/tests/tool-debugger/basic/debuggee.reference
- create mode 100644 testsuite/tests/tool-debugger/basic/input_script
- create mode 100644 testsuite/tests/tool-debugger/dynlink/host.debug.reference
- create mode 100644 testsuite/tests/tool-debugger/dynlink/host.ml
- create mode 100644 testsuite/tests/tool-debugger/dynlink/host.reference
- create mode 100644 testsuite/tests/tool-debugger/dynlink/input_script
- create mode 100644 testsuite/tests/tool-debugger/dynlink/plugin.ml
- create mode 100644 testsuite/tests/tool-debugger/find-artifacts/debuggee.ml
- create mode 100644 testsuite/tests/tool-debugger/find-artifacts/debuggee.reference
- create mode 100644 testsuite/tests/tool-debugger/find-artifacts/in/blah.ml
- create mode 100644 testsuite/tests/tool-debugger/find-artifacts/in/foo.ml
- create mode 100644 testsuite/tests/tool-debugger/find-artifacts/input_script
- create mode 100644 testsuite/tests/tool-debugger/no_debug_event/a.ml
- create mode 100644 testsuite/tests/tool-debugger/no_debug_event/b.ml
- create mode 100644 testsuite/tests/tool-debugger/no_debug_event/input_script
- create mode 100644 testsuite/tests/tool-debugger/no_debug_event/noev.ml
- create mode 100644 testsuite/tests/tool-debugger/no_debug_event/noev.reference
- create mode 100644 testsuite/tests/tool-debugger/printer/debuggee.ml
- create mode 100644 testsuite/tests/tool-debugger/printer/debuggee.reference
- create mode 100644 testsuite/tests/tool-debugger/printer/input_script
- create mode 100644 testsuite/tests/tool-debugger/printer/printer.ml
- create mode 100644 testsuite/tests/tool-expect-test/clean_typer.ml
- create mode 100644 testsuite/tests/tool-lexyacc/chars.mll
- create mode 100644 testsuite/tests/tool-lexyacc/gram_aux.ml
- create mode 100644 testsuite/tests/tool-lexyacc/grammar.mly
- create mode 100644 testsuite/tests/tool-lexyacc/input
- create mode 100644 testsuite/tests/tool-lexyacc/lexgen.ml
- create mode 100644 testsuite/tests/tool-lexyacc/main.compilers.reference
- create mode 100644 testsuite/tests/tool-lexyacc/main.ml
- create mode 100644 testsuite/tests/tool-lexyacc/main.reference
- create mode 100644 testsuite/tests/tool-lexyacc/mpr7760.mll
- create mode 100644 testsuite/tests/tool-lexyacc/mpr7760.reference
- create mode 100644 testsuite/tests/tool-lexyacc/output.ml
- create mode 100644 testsuite/tests/tool-lexyacc/scan_aux.ml
- create mode 100644 testsuite/tests/tool-lexyacc/scanner.mll
- create mode 100644 testsuite/tests/tool-lexyacc/syntax.ml
- create mode 100755 testsuite/tests/tool-ocaml-annot/check-annot.sh
- create mode 100644 testsuite/tests/tool-ocaml-annot/failure.ml
- create mode 100644 testsuite/tests/tool-ocaml-annot/success.ml
- create mode 100644 testsuite/tests/tool-ocaml-annot/typeonly.ml
- create mode 100644 testsuite/tests/tool-ocaml/t000.ml
- create mode 100644 testsuite/tests/tool-ocaml/t010-const0.ml
- create mode 100644 testsuite/tests/tool-ocaml/t010-const1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t010-const2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t010-const3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t011-constint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t020.ml
- create mode 100644 testsuite/tests/tool-ocaml/t021-pushconst1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t021-pushconst2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t021-pushconst3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t022-pushconstint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t040-makeblock1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t040-makeblock2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t040-makeblock3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t041-makeblock.ml
- create mode 100644 testsuite/tests/tool-ocaml/t050-getglobal.ml
- create mode 100644 testsuite/tests/tool-ocaml/t050-pushgetglobal.ml
- create mode 100644 testsuite/tests/tool-ocaml/t051-getglobalfield.ml
- create mode 100644 testsuite/tests/tool-ocaml/t051-pushgetglobalfield.ml
- create mode 100644 testsuite/tests/tool-ocaml/t060-raise.ml
- create mode 100644 testsuite/tests/tool-ocaml/t070-branch.ml
- create mode 100644 testsuite/tests/tool-ocaml/t070-branchif.ml
- create mode 100644 testsuite/tests/tool-ocaml/t070-branchifnot.ml
- create mode 100644 testsuite/tests/tool-ocaml/t071-boolnot.ml
- create mode 100644 testsuite/tests/tool-ocaml/t080-eq.ml
- create mode 100644 testsuite/tests/tool-ocaml/t080-geint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t080-gtint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t080-leint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t080-ltint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t080-neq.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc0.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc4.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc5.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc6.ml
- create mode 100644 testsuite/tests/tool-ocaml/t090-acc7.ml
- create mode 100644 testsuite/tests/tool-ocaml/t091-acc.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc0.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc4.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc5.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc6.ml
- create mode 100644 testsuite/tests/tool-ocaml/t092-pushacc7.ml
- create mode 100644 testsuite/tests/tool-ocaml/t093-pushacc.ml
- create mode 100644 testsuite/tests/tool-ocaml/t100-pushtrap.ml
- create mode 100644 testsuite/tests/tool-ocaml/t101-poptrap.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-addint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-andint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-asrint-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-asrint-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-divint-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-divint-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-divint-3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-lslint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-lsrint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-modint-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-modint-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-mulint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-negint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-offsetint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-orint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-subint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t110-xorint.ml
- create mode 100644 testsuite/tests/tool-ocaml/t120-getstringchar.ml
- create mode 100644 testsuite/tests/tool-ocaml/t121-setstringchar.ml
- create mode 100644 testsuite/tests/tool-ocaml/t130-getvectitem.ml
- create mode 100644 testsuite/tests/tool-ocaml/t130-vectlength.ml
- create mode 100644 testsuite/tests/tool-ocaml/t131-setvectitem.ml
- create mode 100644 testsuite/tests/tool-ocaml/t140-switch-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t140-switch-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t140-switch-3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t140-switch-4.ml
- create mode 100644 testsuite/tests/tool-ocaml/t141-switch-5.ml
- create mode 100644 testsuite/tests/tool-ocaml/t141-switch-6.ml
- create mode 100644 testsuite/tests/tool-ocaml/t141-switch-7.ml
- create mode 100644 testsuite/tests/tool-ocaml/t142-switch-8.ml
- create mode 100644 testsuite/tests/tool-ocaml/t142-switch-9.ml
- create mode 100644 testsuite/tests/tool-ocaml/t142-switch-A.ml
- create mode 100644 testsuite/tests/tool-ocaml/t150-push-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t150-push-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t160-closure.ml
- create mode 100644 testsuite/tests/tool-ocaml/t161-apply1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t162-return.ml
- create mode 100644 testsuite/tests/tool-ocaml/t163.ml
- create mode 100644 testsuite/tests/tool-ocaml/t164-apply2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t164-apply3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t165-apply.ml
- create mode 100644 testsuite/tests/tool-ocaml/t170-envacc2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t170-envacc3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t170-envacc4.ml
- create mode 100644 testsuite/tests/tool-ocaml/t171-envacc.ml
- create mode 100644 testsuite/tests/tool-ocaml/t172-pushenvacc1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t172-pushenvacc2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t172-pushenvacc3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t172-pushenvacc4.ml
- create mode 100644 testsuite/tests/tool-ocaml/t173-pushenvacc.ml
- create mode 100644 testsuite/tests/tool-ocaml/t180-appterm1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t180-appterm2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t180-appterm3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t181-appterm.ml
- create mode 100644 testsuite/tests/tool-ocaml/t190-makefloatblock-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t190-makefloatblock-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t190-makefloatblock-3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t191-vectlength.ml
- create mode 100644 testsuite/tests/tool-ocaml/t192-getfloatfield-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t192-getfloatfield-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t193-setfloatfield-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t193-setfloatfield-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t200-getfield0.ml
- create mode 100644 testsuite/tests/tool-ocaml/t200-getfield1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t200-getfield2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t200-getfield3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t201-getfield.ml
- create mode 100644 testsuite/tests/tool-ocaml/t210-setfield0.ml
- create mode 100644 testsuite/tests/tool-ocaml/t210-setfield1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t210-setfield2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t210-setfield3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t211-setfield.ml
- create mode 100644 testsuite/tests/tool-ocaml/t220-assign.ml
- create mode 100644 testsuite/tests/tool-ocaml/t230-check_signals.ml
- create mode 100644 testsuite/tests/tool-ocaml/t240-c_call1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t240-c_call2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t240-c_call3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t240-c_call4.ml
- create mode 100644 testsuite/tests/tool-ocaml/t240-c_call5.ml
- create mode 100644 testsuite/tests/tool-ocaml/t250-closurerec-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t250-closurerec-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t251-pushoffsetclosure0.ml
- create mode 100644 testsuite/tests/tool-ocaml/t251-pushoffsetclosure2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t251-pushoffsetclosurem2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t252-pushoffsetclosure.ml
- create mode 100644 testsuite/tests/tool-ocaml/t253-offsetclosure0.ml
- create mode 100644 testsuite/tests/tool-ocaml/t253-offsetclosure2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t253-offsetclosurem2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t254-offsetclosure.ml
- create mode 100644 testsuite/tests/tool-ocaml/t260-offsetref.ml
- create mode 100644 testsuite/tests/tool-ocaml/t270-push_retaddr.ml
- create mode 100644 testsuite/tests/tool-ocaml/t300-getmethod.ml
- create mode 100644 testsuite/tests/tool-ocaml/t301-object.ml
- create mode 100644 testsuite/tests/tool-ocaml/t310-alloc-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t310-alloc-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t320-gc-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t320-gc-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t320-gc-3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t330-compact-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t330-compact-2.ml
- create mode 100644 testsuite/tests/tool-ocaml/t330-compact-3.ml
- create mode 100644 testsuite/tests/tool-ocaml/t330-compact-4.ml
- create mode 100644 testsuite/tests/tool-ocaml/t340-weak.ml
- create mode 100644 testsuite/tests/tool-ocaml/t350-heapcheck.ml
- create mode 100644 testsuite/tests/tool-ocaml/t360-stacks-1.ml
- create mode 100644 testsuite/tests/tool-ocaml/t360-stacks-2.ml
- create mode 100644 testsuite/tests/tool-ocamlc-compat32/compat32.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlc-compat32/compat32.ml
- create mode 100644 testsuite/tests/tool-ocamlc-error-cleanup/check-error-cleanup.sh
- create mode 100644 testsuite/tests/tool-ocamlc-error-cleanup/test.ml
- create mode 100644 testsuite/tests/tool-ocamlc-open/a.ml
- create mode 100644 testsuite/tests/tool-ocamlc-open/b.ml
- create mode 100644 testsuite/tests/tool-ocamlc-open/tool-ocamlc-open-error.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlc-open/tool-ocamlc-open-error.ml
- create mode 100644 testsuite/tests/tool-ocamlc-open/tool-ocamlc-open.ml
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_parsing_impl.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_parsing_impl.ml
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_parsing_intf.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_parsing_intf.mli
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_scheduling.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_scheduling.ml
- create mode 100755 testsuite/tests/tool-ocamlc-stop-after/stop_after_scheduling.sh
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_typing_impl.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlc-stop-after/stop_after_typing_impl.ml
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/A.ml
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/B.ml
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/C.ml
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/D.ml
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/Makefile.build
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/Makefile.build2
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/depend.mk.reference
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/depend.mk2.reference
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/depend.mod.reference
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/depend.mod2.reference
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/depend.mod3.reference
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/lib.mli
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/lib_impl.ml
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/main.ml
- create mode 100644 testsuite/tests/tool-ocamldep-modalias/setup-links.sh
- create mode 100644 testsuite/tests/tool-ocamldep-shadowing/a.ml
- create mode 100644 testsuite/tests/tool-ocamldep-shadowing/a.reference
- create mode 100644 testsuite/tests/tool-ocamldep-shadowing/dir1/b.ml
- create mode 100644 testsuite/tests/tool-ocamldep-shadowing/dir2/b.mli
- create mode 100644 testsuite/tests/tool-ocamldep-shadowing/dir2/c.mli
- create mode 100644 testsuite/tests/tool-ocamldoc-open/Readme
- create mode 100644 testsuite/tests/tool-ocamldoc-open/alias.ml
- create mode 100644 testsuite/tests/tool-ocamldoc-open/inner.ml
- create mode 100644 testsuite/tests/tool-ocamldoc-open/main.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc-open/main.ml
- create mode 100644 testsuite/tests/tool-ocamldoc-open/main.ocamldoc.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Documentation_tags.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Documentation_tags.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Extensible_variant.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Extensible_variant.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/Extensible_variant.ocamldoc.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Include_module_type_of.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Include_module_type_of.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Include_module_type_of.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Inline_records.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Inline_records.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Inline_records.man.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Inline_records.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Inline_records_bis.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Inline_records_bis.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/Item_ids.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Item_ids.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Level_0.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Level_0.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Linebreaks.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Linebreaks.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Loop.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Loop.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Loop.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/Module_whitespace.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Module_whitespace.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/Module_whitespace.ocamldoc.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/No_preamble.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/No_preamble.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Paragraph.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Paragraph.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Short_description.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Short_description.txt
- create mode 100644 testsuite/tests/tool-ocamldoc/Test.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Test.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/Variants.html.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Variants.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/Variants.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/latex_ref.latex.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/latex_ref.mli
- create mode 100644 testsuite/tests/tool-ocamldoc/odoc_test.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/t01.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/t01.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/t02.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/t02.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/t03.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/t03.ocamldoc.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/t03.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/t04.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/t04.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/t05.ml
- create mode 100644 testsuite/tests/tool-ocamldoc/t05.reference
- create mode 100644 testsuite/tests/tool-ocamldoc/type_Linebreaks.reference
- create mode 100644 testsuite/tests/tool-ocamlobjinfo/question.ml
- create mode 100644 testsuite/tests/tool-ocamlobjinfo/question.reference
- create mode 100644 testsuite/tests/tool-ocamlopt-save-ir/check_for_pack.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlopt-save-ir/check_for_pack.ml
- create mode 100644 testsuite/tests/tool-ocamlopt-save-ir/save_ir_after_scheduling.ml
- create mode 100755 testsuite/tests/tool-ocamlopt-save-ir/save_ir_after_scheduling.sh
- create mode 100644 testsuite/tests/tool-ocamlopt-save-ir/save_ir_after_typing.compilers.reference
- create mode 100644 testsuite/tests/tool-ocamlopt-save-ir/save_ir_after_typing.ml
- create mode 100755 testsuite/tests/tool-ocamlopt-save-ir/save_ir_after_typing.sh
- create mode 100644 testsuite/tests/tool-ocamlopt-save-ir/start_from_emit.ml
- create mode 100755 testsuite/tests/tool-ocamlopt-save-ir/start_from_emit.sh
- create mode 100644 testsuite/tests/tool-ocamlopt-stop-after/stop_after_scheduling.ml
- create mode 100755 testsuite/tests/tool-ocamlopt-stop-after/stop_after_scheduling.sh
- create mode 100644 testsuite/tests/tool-ocamltest/norm1.ml
- create mode 100644 testsuite/tests/tool-ocamltest/norm1.reference
- create mode 100644 testsuite/tests/tool-ocamltest/norm2.ml
- create mode 100644 testsuite/tests/tool-ocamltest/norm2.reference
- create mode 100644 testsuite/tests/tool-ocamltest/norm3.ml
- create mode 100644 testsuite/tests/tool-ocamltest/norm3.reference
- create mode 100644 testsuite/tests/tool-ocamltest/norm4.ml
- create mode 100644 testsuite/tests/tool-ocamltest/norm4.reference
- create mode 100644 testsuite/tests/tool-toplevel-invocation/first_arg_fail.txt
- create mode 100644 testsuite/tests/tool-toplevel-invocation/first_arg_fail.txt.reference
- create mode 100644 testsuite/tests/tool-toplevel-invocation/indirect_first_arg_fail.txt
- create mode 100644 testsuite/tests/tool-toplevel-invocation/indirect_first_arg_fail.txt.reference
- create mode 100644 testsuite/tests/tool-toplevel-invocation/indirect_last_arg_fail.txt
- create mode 100644 testsuite/tests/tool-toplevel-invocation/indirect_last_arg_fail.txt.reference
- create mode 100644 testsuite/tests/tool-toplevel-invocation/last_arg_fail.txt
- create mode 100644 testsuite/tests/tool-toplevel-invocation/last_arg_fail.txt.reference
- create mode 100644 testsuite/tests/tool-toplevel-invocation/print_args.ml
- create mode 100644 testsuite/tests/tool-toplevel-invocation/print_args.reference
- create mode 100644 testsuite/tests/tool-toplevel-invocation/test.ml
- create mode 100644 testsuite/tests/tool-toplevel-invocation/working_arg.txt
- create mode 100644 testsuite/tests/tool-toplevel-invocation/working_arg.txt.reference
- create mode 100644 testsuite/tests/tool-toplevel/error_highlighting.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/error_highlighting.ml
- create mode 100644 testsuite/tests/tool-toplevel/error_highlighting_use1.ml
- create mode 100644 testsuite/tests/tool-toplevel/error_highlighting_use2.ml
- create mode 100644 testsuite/tests/tool-toplevel/error_highlighting_use3.ml
- create mode 100644 testsuite/tests/tool-toplevel/error_highlighting_use4.ml
- create mode 100644 testsuite/tests/tool-toplevel/exotic_lists.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/exotic_lists.ml
- create mode 100644 testsuite/tests/tool-toplevel/known-bugs/broken_rec_in_show.ml
- create mode 100644 testsuite/tests/tool-toplevel/mod.ml
- create mode 100644 testsuite/tests/tool-toplevel/mod_use.ml
- create mode 100644 testsuite/tests/tool-toplevel/pr6468.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/pr6468.ml
- create mode 100644 testsuite/tests/tool-toplevel/pr7060.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/pr7060.ml
- create mode 100644 testsuite/tests/tool-toplevel/pr7751.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/pr7751.ml
- create mode 100644 testsuite/tests/tool-toplevel/printval.ml
- create mode 100644 testsuite/tests/tool-toplevel/redefinition_hints.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/redefinition_hints.ml
- create mode 100644 testsuite/tests/tool-toplevel/show.ml
- create mode 100644 testsuite/tests/tool-toplevel/show_short_paths.ml
- create mode 100644 testsuite/tests/tool-toplevel/strings.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/strings.ml
- create mode 100644 testsuite/tests/tool-toplevel/tracing.compilers.reference
- create mode 100644 testsuite/tests/tool-toplevel/tracing.ml
- create mode 100644 testsuite/tests/tool-toplevel/uncaught_exceptions.ml
- create mode 100644 testsuite/tests/tool-toplevel/use_command.ml
- create mode 100644 testsuite/tests/translprim/array_spec.compilers.flat.reference
- create mode 100644 testsuite/tests/translprim/array_spec.compilers.no-flat.reference
- create mode 100644 testsuite/tests/translprim/array_spec.ml
- create mode 100644 testsuite/tests/translprim/comparison_table.compilers.reference
- create mode 100644 testsuite/tests/translprim/comparison_table.ml
- create mode 100644 testsuite/tests/translprim/locs.ml
- create mode 100644 testsuite/tests/translprim/locs.reference
- create mode 100644 testsuite/tests/translprim/module_coercion.compilers.flat.reference
- create mode 100644 testsuite/tests/translprim/module_coercion.compilers.no-flat.reference
- create mode 100644 testsuite/tests/translprim/module_coercion.ml
- create mode 100644 testsuite/tests/translprim/ref_spec.compilers.reference
- create mode 100644 testsuite/tests/translprim/ref_spec.ml
- create mode 100644 testsuite/tests/typing-core-bugs/const_int_hint.ml
- create mode 100644 testsuite/tests/typing-core-bugs/missing_rec_hint.ml
- create mode 100644 testsuite/tests/typing-core-bugs/repeated_did_you_mean.ml
- create mode 100644 testsuite/tests/typing-core-bugs/type_expected_explanation.ml
- create mode 100644 testsuite/tests/typing-core-bugs/unit_fun_hints.ml
- create mode 100644 testsuite/tests/typing-deprecated/alerts.ml
- create mode 100644 testsuite/tests/typing-deprecated/deprecated.ml
- create mode 100644 testsuite/tests/typing-extension-constructor/test.ml
- create mode 100644 testsuite/tests/typing-extension-constructor/test.ocaml.reference
- create mode 100644 testsuite/tests/typing-extensions/cast.ml
- create mode 100644 testsuite/tests/typing-extensions/cast.ocaml.reference
- create mode 100644 testsuite/tests/typing-extensions/disambiguation.ml
- create mode 100644 testsuite/tests/typing-extensions/extensions.ml
- create mode 100644 testsuite/tests/typing-extensions/msg.ml
- create mode 100644 testsuite/tests/typing-extensions/msg.ocaml.reference
- create mode 100644 testsuite/tests/typing-extensions/open_types.ml
- create mode 100644 testsuite/tests/typing-fstclassmod/aliases.ml
- create mode 100644 testsuite/tests/typing-fstclassmod/fstclassmod.ml
- create mode 100644 testsuite/tests/typing-fstclassmod/fstclassmod.reference
- create mode 100644 testsuite/tests/typing-fstclassmod/nondep_instance.ml
- create mode 100644 testsuite/tests/typing-gadts/ambiguity.ml
- create mode 100644 testsuite/tests/typing-gadts/didier.ml
- create mode 100644 testsuite/tests/typing-gadts/dynamic_frisch.ml
- create mode 100644 testsuite/tests/typing-gadts/nested_equations.ml
- create mode 100644 testsuite/tests/typing-gadts/omega07.ml
- create mode 100644 testsuite/tests/typing-gadts/or_patterns.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5332.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5689.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5785.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5848.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5906.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5948.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5981.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5985.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5989.ml
- create mode 100644 testsuite/tests/typing-gadts/pr5997.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6158.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6163.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6174.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6241.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6690.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6817.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6934.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6980.ml
- create mode 100644 testsuite/tests/typing-gadts/pr6993_bad.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7016.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7160.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7214.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7222.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7230.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7234.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7260.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7269.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7298.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7374.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7378.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7381.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7390.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7391.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7397.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7421.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7432.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7520.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7618.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7747.ml
- create mode 100644 testsuite/tests/typing-gadts/pr7902.ml
- create mode 100644 testsuite/tests/typing-gadts/pr9019.ml
- create mode 100644 testsuite/tests/typing-gadts/pr9759.ml
- create mode 100644 testsuite/tests/typing-gadts/pr9799.ml
- create mode 100644 testsuite/tests/typing-gadts/principality-and-gadts.ml
- create mode 100644 testsuite/tests/typing-gadts/term-conv.ml
- create mode 100644 testsuite/tests/typing-gadts/test.ml
- create mode 100644 testsuite/tests/typing-gadts/unexpected_existentials.ml
- create mode 100644 testsuite/tests/typing-gadts/unify_mb.ml
- create mode 100644 testsuite/tests/typing-gadts/variables_in_mcomp.ml
- create mode 100644 testsuite/tests/typing-gadts/yallop_bugs.ml
- create mode 100644 testsuite/tests/typing-immediate/immediate.ml
- create mode 100644 testsuite/tests/typing-implicit_unpack/implicit_unpack.ml
- create mode 100644 testsuite/tests/typing-labels/mixin.ml
- create mode 100644 testsuite/tests/typing-labels/mixin.reference
- create mode 100644 testsuite/tests/typing-labels/mixin2.ml
- create mode 100644 testsuite/tests/typing-labels/mixin2.reference
- create mode 100644 testsuite/tests/typing-labels/mixin3.ml
- create mode 100644 testsuite/tests/typing-labels/mixin3.reference
- create mode 100644 testsuite/tests/typing-misc-bugs/core_array_reduced_ok.ml
- create mode 100644 testsuite/tests/typing-misc-bugs/gadt_declaration_check.ml
- create mode 100644 testsuite/tests/typing-misc-bugs/pr6303_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-misc-bugs/pr6303_bad.ml
- create mode 100644 testsuite/tests/typing-misc-bugs/pr6946_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-misc-bugs/pr6946_bad.ml
- create mode 100644 testsuite/tests/typing-misc/build_as_type.ml
- create mode 100644 testsuite/tests/typing-misc/constraints.ml
- create mode 100644 testsuite/tests/typing-misc/disambiguate_principality.ml
- create mode 100644 testsuite/tests/typing-misc/empty_ppx.ml
- create mode 100644 testsuite/tests/typing-misc/empty_variant.ml
- create mode 100644 testsuite/tests/typing-misc/enrich_typedecl.ml
- create mode 100644 testsuite/tests/typing-misc/exotic_unifications.ml
- create mode 100644 testsuite/tests/typing-misc/external_arity.ml
- create mode 100644 testsuite/tests/typing-misc/gpr2277.ml
- create mode 100644 testsuite/tests/typing-misc/includeclass_errors.ml
- create mode 100644 testsuite/tests/typing-misc/injectivity.ml
- create mode 100644 testsuite/tests/typing-misc/inside_out.ml
- create mode 100644 testsuite/tests/typing-misc/is_expansive.ml
- create mode 100644 testsuite/tests/typing-misc/labels.ml
- create mode 100644 testsuite/tests/typing-misc/mapping.ml
- create mode 100644 testsuite/tests/typing-misc/normalize_type.ml
- create mode 100644 testsuite/tests/typing-misc/occur_check.ml
- create mode 100644 testsuite/tests/typing-misc/pat_type_sharing.ml
- create mode 100644 testsuite/tests/typing-misc/pattern_open.ml
- create mode 100644 testsuite/tests/typing-misc/polyvars.ml
- create mode 100644 testsuite/tests/typing-misc/pr6416.ml
- create mode 100644 testsuite/tests/typing-misc/pr6634.ml
- create mode 100644 testsuite/tests/typing-misc/pr6939-flat-float-array.ml
- create mode 100644 testsuite/tests/typing-misc/pr6939-no-flat-float-array.ml
- create mode 100644 testsuite/tests/typing-misc/pr7103.ml
- create mode 100644 testsuite/tests/typing-misc/pr7228.ml
- create mode 100644 testsuite/tests/typing-misc/pr7668_bad.ml
- create mode 100644 testsuite/tests/typing-misc/pr7712.ml
- create mode 100644 testsuite/tests/typing-misc/pr7937.ml
- create mode 100644 testsuite/tests/typing-misc/pr8548.ml
- create mode 100644 testsuite/tests/typing-misc/pr8548_split.ml
- create mode 100644 testsuite/tests/typing-misc/printing.ml
- create mode 100644 testsuite/tests/typing-misc/range.ml
- create mode 100644 testsuite/tests/typing-misc/range_intf.ml
- create mode 100644 testsuite/tests/typing-misc/ranged.ml
- create mode 100644 testsuite/tests/typing-misc/ranged_intf.ml
- create mode 100644 testsuite/tests/typing-misc/records.ml
- create mode 100644 testsuite/tests/typing-misc/scope_escape.ml
- create mode 100644 testsuite/tests/typing-misc/typecore_empty_polyvariant_error.compilers.reference
- create mode 100644 testsuite/tests/typing-misc/typecore_empty_polyvariant_error.ml
- create mode 100644 testsuite/tests/typing-misc/typecore_errors.ml
- create mode 100644 testsuite/tests/typing-misc/typecore_nolabel_errors.ml
- create mode 100644 testsuite/tests/typing-misc/typetexp_errors.ml
- create mode 100644 testsuite/tests/typing-misc/unique_names_in_unification.ml
- create mode 100644 testsuite/tests/typing-misc/variance.ml
- create mode 100644 testsuite/tests/typing-misc/variant.ml
- create mode 100644 testsuite/tests/typing-misc/wellfounded.ml
- create mode 100644 testsuite/tests/typing-missing-cmi-2/bar.mli
- create mode 100644 testsuite/tests/typing-missing-cmi-2/baz.ml
- create mode 100644 testsuite/tests/typing-missing-cmi-2/foo.mli
- create mode 100644 testsuite/tests/typing-missing-cmi-2/test.compilers.reference
- create mode 100644 testsuite/tests/typing-missing-cmi-2/test.ml
- create mode 100644 testsuite/tests/typing-missing-cmi-3/middle.ml
- create mode 100644 testsuite/tests/typing-missing-cmi-3/original.ml
- create mode 100644 testsuite/tests/typing-missing-cmi-3/user.ml
- create mode 100644 testsuite/tests/typing-missing-cmi/a.ml
- create mode 100644 testsuite/tests/typing-missing-cmi/b.ml
- create mode 100644 testsuite/tests/typing-missing-cmi/c.ml
- create mode 100644 testsuite/tests/typing-missing-cmi/main.ml
- create mode 100644 testsuite/tests/typing-missing-cmi/main.ml.reference
- create mode 100644 testsuite/tests/typing-missing-cmi/main_ok.ml
- create mode 100644 testsuite/tests/typing-missing-cmi/subdir/m.ml
- create mode 100644 testsuite/tests/typing-missing-cmi/test.compilers.reference
- create mode 100644 testsuite/tests/typing-missing-cmi/test.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/gatien_baron_20131019_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr5164_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr51_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr5663_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr5914_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6240_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6293_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6293_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6427_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6427_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6485_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6513_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6572_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6651_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6752_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6752_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6752_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6899_first_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6899_first_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6899_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6899_second_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6899_second_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6944_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6954_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6981_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6982_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6985_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6992_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr6992_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7036_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7082_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7112_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7112_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7112_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7152_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7182_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7305_principal.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7321_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7414_2_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7414_2_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7414_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7414_bad.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7519_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7601_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr7601a_ok.ml
- create mode 100644 testsuite/tests/typing-modules-bugs/pr9695_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-modules-bugs/pr9695_bad.ml
- create mode 100644 testsuite/tests/typing-modules/.gitattributes
- create mode 100644 testsuite/tests/typing-modules/Test.ml
- create mode 100644 testsuite/tests/typing-modules/aliases.ml
- create mode 100644 testsuite/tests/typing-modules/anonymous.ml
- create mode 100644 testsuite/tests/typing-modules/applicative_functor_type.ml
- create mode 100644 testsuite/tests/typing-modules/extension_constructors_errors_test.ml
- create mode 100644 testsuite/tests/typing-modules/firstclass.ml
- create mode 100644 testsuite/tests/typing-modules/generative.ml
- create mode 100644 testsuite/tests/typing-modules/illegal_permutation.ml
- create mode 100644 testsuite/tests/typing-modules/merge_constraint.ml
- create mode 100644 testsuite/tests/typing-modules/nondep.ml
- create mode 100644 testsuite/tests/typing-modules/nondep_private_abbrev.ml
- create mode 100644 testsuite/tests/typing-modules/normalize_path.ml
- create mode 100644 testsuite/tests/typing-modules/pr5911.ml
- create mode 100644 testsuite/tests/typing-modules/pr6394.ml
- create mode 100644 testsuite/tests/typing-modules/pr6633.ml
- create mode 100644 testsuite/tests/typing-modules/pr7207.ml
- create mode 100644 testsuite/tests/typing-modules/pr7348.ml
- create mode 100644 testsuite/tests/typing-modules/pr7726.ml
- create mode 100644 testsuite/tests/typing-modules/pr7787.ml
- create mode 100644 testsuite/tests/typing-modules/pr7818.ml
- create mode 100644 testsuite/tests/typing-modules/pr7851.ml
- create mode 100644 testsuite/tests/typing-modules/pr8810.ml
- create mode 100644 testsuite/tests/typing-modules/pr9384.ml
- create mode 100644 testsuite/tests/typing-modules/pr9695.ml
- create mode 100644 testsuite/tests/typing-modules/printing.ml
- create mode 100644 testsuite/tests/typing-modules/records_errors_test.ml
- create mode 100644 testsuite/tests/typing-modules/recursive.ml
- create mode 100644 testsuite/tests/typing-modules/unroll_private_abbrev.ml
- create mode 100644 testsuite/tests/typing-modules/variants_errors_test.ml
- create mode 100644 testsuite/tests/typing-multifile/a.ml
- create mode 100644 testsuite/tests/typing-multifile/b.ml
- create mode 100644 testsuite/tests/typing-multifile/c.ml
- create mode 100644 testsuite/tests/typing-multifile/d.mli
- create mode 100644 testsuite/tests/typing-multifile/e.ml
- create mode 100644 testsuite/tests/typing-multifile/f.ml
- create mode 100644 testsuite/tests/typing-multifile/pr6372.ml
- create mode 100644 testsuite/tests/typing-multifile/pr7325.ml
- create mode 100644 testsuite/tests/typing-multifile/pr7563.ml
- create mode 100644 testsuite/tests/typing-multifile/pr9218.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr3968_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-objects-bugs/pr3968_bad.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4018_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4018_bad.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4435_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4435_bad.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4766_ok.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4824_ok.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4824a_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-objects-bugs/pr4824a_bad.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr5156_ok.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr7284_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-objects-bugs/pr7284_bad.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/pr7293_ok.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/woodyatt_ok.ml
- create mode 100644 testsuite/tests/typing-objects-bugs/yamagata021012_ok.ml
- create mode 100644 testsuite/tests/typing-objects/Exemples.ml
- create mode 100644 testsuite/tests/typing-objects/Tests.ml
- create mode 100644 testsuite/tests/typing-objects/abstract_rows.ml
- create mode 100644 testsuite/tests/typing-objects/dummy.ml
- create mode 100644 testsuite/tests/typing-objects/errors.ml
- create mode 100644 testsuite/tests/typing-objects/open_in_classes.ml
- create mode 100644 testsuite/tests/typing-objects/pr5545.ml
- create mode 100644 testsuite/tests/typing-objects/pr5619_bad.ml
- create mode 100644 testsuite/tests/typing-objects/pr5858.ml
- create mode 100644 testsuite/tests/typing-objects/pr6123_bad.ml
- create mode 100644 testsuite/tests/typing-objects/pr6383.ml
- create mode 100644 testsuite/tests/typing-objects/pr6907_bad.ml
- create mode 100644 testsuite/tests/typing-objects/pr7711_ok.ml
- create mode 100644 testsuite/tests/typing-objects/self_cannot_be_closed.ml
- create mode 100644 testsuite/tests/typing-objects/self_cannot_escape_pr7865.ml
- create mode 100644 testsuite/tests/typing-ocamlc-i/pervasives_leitmotiv.compilers.reference
- create mode 100644 testsuite/tests/typing-ocamlc-i/pervasives_leitmotiv.ml
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr4791.compilers.reference
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr4791.ml
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr6323.compilers.reference
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr6323.ml
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr7402.compilers.reference
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr7402.ml
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr7620_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-ocamlc-i/pr7620_bad.ml
- create mode 100644 testsuite/tests/typing-poly-bugs/pr5322_ok.ml
- create mode 100644 testsuite/tests/typing-poly-bugs/pr5673_ok.ml
- create mode 100644 testsuite/tests/typing-poly-bugs/pr6922_ok.ml
- create mode 100644 testsuite/tests/typing-poly/error_messages.ml
- create mode 100644 testsuite/tests/typing-poly/poly.ml
- create mode 100644 testsuite/tests/typing-poly/pr7636.ml
- create mode 100644 testsuite/tests/typing-poly/pr9603.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs-2/pr3918a.mli
- create mode 100644 testsuite/tests/typing-polyvariants-bugs-2/pr3918b.mli
- create mode 100644 testsuite/tests/typing-polyvariants-bugs-2/pr3918c.compilers.reference
- create mode 100644 testsuite/tests/typing-polyvariants-bugs-2/pr3918c.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr4775_ok.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr4933_ok.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr5057_ok.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr5057a_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr5057a_bad.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr7199_ok.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr7817_bad.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/pr7824.ml
- create mode 100644 testsuite/tests/typing-polyvariants-bugs/privrowsabate_ok.ml
- create mode 100644 testsuite/tests/typing-private-bugs/pr5026_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-private-bugs/pr5026_bad.ml
- create mode 100644 testsuite/tests/typing-private-bugs/pr5469_ok.ml
- create mode 100644 testsuite/tests/typing-private/private.compilers.principal.reference
- create mode 100644 testsuite/tests/typing-private/private.compilers.reference
- create mode 100644 testsuite/tests/typing-private/private.ml
- create mode 100644 testsuite/tests/typing-recmod/gpr1626.ml
- create mode 100644 testsuite/tests/typing-recmod/pr9494.ml
- create mode 100644 testsuite/tests/typing-recmod/pr9494.reference
- create mode 100644 testsuite/tests/typing-recmod/t01bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t01bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t02bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t02bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t03ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t04bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t04bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t05bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t05bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t06ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t07bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t07bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t08bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t08bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t09bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t09bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t10ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t11bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t11bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t12bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t12bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t13ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t14bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t14bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t15bad.compilers.reference
- create mode 100644 testsuite/tests/typing-recmod/t15bad.ml
- create mode 100644 testsuite/tests/typing-recmod/t16ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t17ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t18ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t20ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t21ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t22ok.ml
- create mode 100644 testsuite/tests/typing-recmod/t22ok.mli
- create mode 100644 testsuite/tests/typing-recordarg/recordarg.ml
- create mode 100644 testsuite/tests/typing-recordarg/recordarg.ocaml.reference
- create mode 100644 testsuite/tests/typing-rectypes-bugs/pr5343_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-rectypes-bugs/pr5343_bad.ml
- create mode 100644 testsuite/tests/typing-rectypes-bugs/pr6174_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-rectypes-bugs/pr6174_bad.ml
- create mode 100644 testsuite/tests/typing-rectypes-bugs/pr6870_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-rectypes-bugs/pr6870_bad.ml
- create mode 100644 testsuite/tests/typing-safe-linking/a.ml
- create mode 100644 testsuite/tests/typing-safe-linking/b_bad.compilers.reference
- create mode 100644 testsuite/tests/typing-safe-linking/b_bad.ml
- create mode 100644 testsuite/tests/typing-shadowing-of-pervasives-submodules/largeFile.ml
- create mode 100644 testsuite/tests/typing-shadowing-of-pervasives-submodules/redefine_largefile.ml
- create mode 100644 testsuite/tests/typing-shadowing-of-pervasives-submodules/redefine_largefile.reference
- create mode 100644 testsuite/tests/typing-shadowing-of-pervasives-submodules/redefine_largefile_top.compilers.reference
- create mode 100644 testsuite/tests/typing-shadowing-of-pervasives-submodules/redefine_largefile_top.ml
- create mode 100644 testsuite/tests/typing-short-paths/errors.ml
- create mode 100644 testsuite/tests/typing-short-paths/gpr1223.compilers.reference
- create mode 100644 testsuite/tests/typing-short-paths/gpr1223.ml
- create mode 100644 testsuite/tests/typing-short-paths/gpr1223_bar.mli
- create mode 100644 testsuite/tests/typing-short-paths/gpr1223_foo.mli
- create mode 100644 testsuite/tests/typing-short-paths/pr5918.compilers.reference
- create mode 100644 testsuite/tests/typing-short-paths/pr5918.ml
- create mode 100644 testsuite/tests/typing-short-paths/pr6836.compilers.reference
- create mode 100644 testsuite/tests/typing-short-paths/pr6836.ml
- create mode 100644 testsuite/tests/typing-short-paths/pr7543.compilers.reference
- create mode 100644 testsuite/tests/typing-short-paths/pr7543.ml
- create mode 100644 testsuite/tests/typing-short-paths/short-paths.compilers.reference
- create mode 100644 testsuite/tests/typing-short-paths/short-paths.ml
- create mode 100644 testsuite/tests/typing-signatures/els.ml
- create mode 100644 testsuite/tests/typing-signatures/els.ocaml.reference
- create mode 100644 testsuite/tests/typing-signatures/pr6371.ml
- create mode 100644 testsuite/tests/typing-signatures/pr6371.ocaml.reference
- create mode 100644 testsuite/tests/typing-signatures/pr6672.ml
- create mode 100644 testsuite/tests/typing-signatures/pr6672.ocaml.reference
- create mode 100644 testsuite/tests/typing-sigsubst/mpr7852.mli
- create mode 100644 testsuite/tests/typing-sigsubst/sig_local_aliases.ml
- create mode 100644 testsuite/tests/typing-sigsubst/sig_local_aliases_syntax_errors.compilers.reference
- create mode 100644 testsuite/tests/typing-sigsubst/sig_local_aliases_syntax_errors.ml
- create mode 100644 testsuite/tests/typing-sigsubst/sigsubst.ml
- create mode 100644 testsuite/tests/typing-sigsubst/test_functor.ml
- create mode 100644 testsuite/tests/typing-sigsubst/test_loc_modtype_type_eq.ml
- create mode 100644 testsuite/tests/typing-sigsubst/test_loc_modtype_type_subst.ml
- create mode 100644 testsuite/tests/typing-sigsubst/test_loc_type_eq.ml
- create mode 100644 testsuite/tests/typing-sigsubst/test_loc_type_subst.ml
- create mode 100644 testsuite/tests/typing-sigsubst/test_locations.compilers.reference
- create mode 100644 testsuite/tests/typing-sigsubst/test_locations.ml
- create mode 100644 testsuite/tests/typing-typeparam/newtype.ml
- create mode 100644 testsuite/tests/typing-typeparam/newtype.ocaml.reference
- create mode 100644 testsuite/tests/typing-unboxed-types/test.ml
- create mode 100644 testsuite/tests/typing-unboxed-types/test_flat.ml
- create mode 100644 testsuite/tests/typing-unboxed-types/test_no_flat.ml
- create mode 100644 testsuite/tests/typing-unboxed/test.ml
- create mode 100644 testsuite/tests/typing-warnings/ambiguous_guarded_disjunction.ml
- create mode 100644 testsuite/tests/typing-warnings/application.ml
- create mode 100644 testsuite/tests/typing-warnings/coercions.ml
- create mode 100644 testsuite/tests/typing-warnings/exhaustiveness.ml
- create mode 100644 testsuite/tests/typing-warnings/fragile_matching.ml
- create mode 100644 testsuite/tests/typing-warnings/never_returns.ml
- create mode 100644 testsuite/tests/typing-warnings/open_warnings.ml
- create mode 100644 testsuite/tests/typing-warnings/pr5892.ml
- create mode 100644 testsuite/tests/typing-warnings/pr6587.ml
- create mode 100644 testsuite/tests/typing-warnings/pr6872.ml
- create mode 100644 testsuite/tests/typing-warnings/pr7085.ml
- create mode 100644 testsuite/tests/typing-warnings/pr7115.ml
- create mode 100644 testsuite/tests/typing-warnings/pr7261.compilers.reference
- create mode 100644 testsuite/tests/typing-warnings/pr7261.ml
- create mode 100644 testsuite/tests/typing-warnings/pr7297.compilers.reference
- create mode 100644 testsuite/tests/typing-warnings/pr7297.ml
- create mode 100644 testsuite/tests/typing-warnings/pr7553.ml
- create mode 100644 testsuite/tests/typing-warnings/pr9244.ml
- create mode 100644 testsuite/tests/typing-warnings/records.ml
- create mode 100644 testsuite/tests/typing-warnings/unused_functor_parameter.ml
- create mode 100644 testsuite/tests/typing-warnings/unused_rec.ml
- create mode 100644 testsuite/tests/typing-warnings/unused_recmodule.ml
- create mode 100644 testsuite/tests/typing-warnings/unused_types.ml
- create mode 100644 testsuite/tests/typing-warnings/warning16.ml
- create mode 100644 testsuite/tests/unboxed-primitive-args/README
- create mode 100644 testsuite/tests/unboxed-primitive-args/common.ml
- create mode 100644 testsuite/tests/unboxed-primitive-args/common.mli
- create mode 100644 testsuite/tests/unboxed-primitive-args/gen_test.ml
- create mode 100644 testsuite/tests/unboxed-primitive-args/test.ml
- create mode 100644 testsuite/tests/unboxed-primitive-args/test.reference
- create mode 100644 testsuite/tests/unboxed-primitive-args/test_common.c
- create mode 100644 testsuite/tests/unboxed-primitive-args/test_common.h
- create mode 100644 testsuite/tests/unwind/README
- create mode 100755 testsuite/tests/unwind/check-linker-version.sh
- create mode 100644 testsuite/tests/unwind/driver.ml
- create mode 100644 testsuite/tests/unwind/mylib.ml
- create mode 100644 testsuite/tests/unwind/mylib.mli
- create mode 100644 testsuite/tests/unwind/stack_walker.c
- create mode 100644 testsuite/tests/utils/edit_distance.ml
- create mode 100644 testsuite/tests/utils/edit_distance.reference
- create mode 100644 testsuite/tests/utils/magic_number.ml
- create mode 100644 testsuite/tests/utils/overflow_detection.ml
- create mode 100644 testsuite/tests/utils/overflow_detection.reference
- create mode 100644 testsuite/tests/utils/test_strongly_connected_components.ml
- create mode 100644 testsuite/tests/utils/test_strongly_connected_components.reference
- create mode 100644 testsuite/tests/warnings/deprecated_module.compilers.reference
- create mode 100644 testsuite/tests/warnings/deprecated_module.ml
- create mode 100644 testsuite/tests/warnings/deprecated_module.mli
- create mode 100644 testsuite/tests/warnings/deprecated_module_assigment.compilers.reference
- create mode 100644 testsuite/tests/warnings/deprecated_module_assigment.ml
- create mode 100644 testsuite/tests/warnings/deprecated_module_use.compilers.reference
- create mode 100644 testsuite/tests/warnings/deprecated_module_use.ml
- create mode 100644 testsuite/tests/warnings/mnemonics.mll
- create mode 100644 testsuite/tests/warnings/mnemonics.reference
- create mode 100644 testsuite/tests/warnings/module_without_cmx.mli
- create mode 100644 testsuite/tests/warnings/w01.compilers.reference
- create mode 100644 testsuite/tests/warnings/w01.ml
- create mode 100644 testsuite/tests/warnings/w03.compilers.reference
- create mode 100644 testsuite/tests/warnings/w03.ml
- create mode 100644 testsuite/tests/warnings/w04.compilers.reference
- create mode 100644 testsuite/tests/warnings/w04.ml
- create mode 100644 testsuite/tests/warnings/w04_failure.compilers.reference
- create mode 100644 testsuite/tests/warnings/w04_failure.ml
- create mode 100644 testsuite/tests/warnings/w06.compilers.reference
- create mode 100644 testsuite/tests/warnings/w06.ml
- create mode 100644 testsuite/tests/warnings/w32.compilers.reference
- create mode 100644 testsuite/tests/warnings/w32.ml
- create mode 100644 testsuite/tests/warnings/w32.mli
- create mode 100644 testsuite/tests/warnings/w32b.compilers.reference
- create mode 100644 testsuite/tests/warnings/w32b.ml
- create mode 100644 testsuite/tests/warnings/w33.compilers.reference
- create mode 100644 testsuite/tests/warnings/w33.ml
- create mode 100644 testsuite/tests/warnings/w45.compilers.reference
- create mode 100644 testsuite/tests/warnings/w45.ml
- create mode 100644 testsuite/tests/warnings/w47_inline.compilers.reference
- create mode 100644 testsuite/tests/warnings/w47_inline.ml
- create mode 100644 testsuite/tests/warnings/w50.compilers.reference
- create mode 100644 testsuite/tests/warnings/w50.ml
- create mode 100644 testsuite/tests/warnings/w51.ml
- create mode 100644 testsuite/tests/warnings/w51_bis.compilers.reference
- create mode 100644 testsuite/tests/warnings/w51_bis.ml
- create mode 100644 testsuite/tests/warnings/w52.ml
- create mode 100644 testsuite/tests/warnings/w53.compilers.reference
- create mode 100644 testsuite/tests/warnings/w53.ml
- create mode 100644 testsuite/tests/warnings/w54.compilers.reference
- create mode 100644 testsuite/tests/warnings/w54.ml
- create mode 100644 testsuite/tests/warnings/w55.flambda.reference
- create mode 100644 testsuite/tests/warnings/w55.ml
- create mode 100644 testsuite/tests/warnings/w55.native.reference
- create mode 100644 testsuite/tests/warnings/w58.ml
- create mode 100644 testsuite/tests/warnings/w58.native.reference
- create mode 100644 testsuite/tests/warnings/w59.flambda.reference
- create mode 100644 testsuite/tests/warnings/w59.ml
- create mode 100644 testsuite/tests/warnings/w60.compilers.reference
- create mode 100644 testsuite/tests/warnings/w60.ml
- create mode 100644 testsuite/tests/warnings/w60.mli
- create mode 100644 testsuite/tests/warnings/w68.compilers.reference
- create mode 100644 testsuite/tests/warnings/w68.ml
- create mode 100644 testsuite/tests/warnings/w68.reference
- create mode 100644 testsuite/tests/win-unicode/mltest.compilers.reference
- create mode 100644 testsuite/tests/win-unicode/mltest.ml
- create mode 100644 testsuite/tools/Makefile
- create mode 100644 testsuite/tools/asmgen_amd64.S
- create mode 100644 testsuite/tools/asmgen_arm.S
- create mode 100644 testsuite/tools/asmgen_arm64.S
- create mode 100644 testsuite/tools/asmgen_i386.S
- create mode 100644 testsuite/tools/asmgen_i386nt.asm
- create mode 100644 testsuite/tools/asmgen_power.S
- create mode 100644 testsuite/tools/asmgen_riscv.S
- create mode 100644 testsuite/tools/asmgen_s390x.S
- create mode 100644 testsuite/tools/codegen_main.ml
- create mode 100644 testsuite/tools/expect_test.ml
- create mode 100644 testsuite/tools/lexcmm.mli
- create mode 100644 testsuite/tools/lexcmm.mll
- create mode 100644 testsuite/tools/parsecmm.mly
- create mode 100644 testsuite/tools/parsecmmaux.ml
- create mode 100644 testsuite/tools/parsecmmaux.mli
- create mode 100644 tools/.depend
- create mode 100644 tools/Makefile
- create mode 100755 tools/autogen
- create mode 100644 tools/caml_tex.ml
- create mode 100755 tools/check-parser-uptodate-or-warn.sh
- create mode 100755 tools/check-symbol-names
- create mode 100755 tools/check-typo
- create mode 100755 tools/check-typo-since
- create mode 100644 tools/checkstack.c
- create mode 100755 tools/ci/actions/runner.sh
- create mode 100644 tools/ci/appveyor/appveyor_build.cmd
- create mode 100644 tools/ci/appveyor/appveyor_build.sh
- create mode 100644 tools/ci/inria/README.md
- create mode 100644 tools/ci/inria/Risc-V/Jenkinsfile
- create mode 100644 tools/ci/inria/bootstrap/Jenkinsfile
- create mode 100644 tools/ci/inria/bootstrap/remove-sinh-primitive.patch
- create mode 100755 tools/ci/inria/bootstrap/script
- create mode 100644 tools/ci/inria/check-typo/Jenkinsfile
- create mode 100644 tools/ci/inria/dune-build/Jenkinsfile
- create mode 100755 tools/ci/inria/dune-build/script
- create mode 100755 tools/ci/inria/launch
- create mode 100755 tools/ci/inria/light
- create mode 100755 tools/ci/inria/main
- create mode 100644 tools/ci/inria/other-configs/Jenkinsfile
- create mode 100755 tools/ci/inria/other-configs/script
- create mode 100644 tools/ci/inria/sanitizers/Jenkinsfile
- create mode 100644 tools/ci/inria/sanitizers/lsan-suppr.txt
- create mode 100755 tools/ci/inria/sanitizers/script
- create mode 100644 tools/ci/inria/step-by-step-build/Jenkinsfile
- create mode 100755 tools/ci/inria/step-by-step-build/script
- create mode 100755 tools/ci/travis/travis-ci.sh
- create mode 100644 tools/cmpbyt.ml
- create mode 100644 tools/cvt_emit.mll
- create mode 100644 tools/dumpobj.ml
- create mode 100644 tools/dune
- create mode 100644 tools/eqparsetree.ml
- create mode 100644 tools/eventlog_metadata.in
- create mode 100644 tools/gdb-macros
- create mode 100755 tools/git-dev-options.sh
- create mode 100644 tools/lintapidiff.ml
- create mode 100644 tools/magic
- create mode 100755 tools/make-version-header.sh
- create mode 100644 tools/make_opcodes.mll
- create mode 100644 tools/mantis2gh_stripped.csv
- create mode 100755 tools/msvs-promote-path
- create mode 100644 tools/objinfo.ml
- create mode 100644 tools/ocamlcmt.ml
- create mode 100644 tools/ocamlcp.ml
- create mode 100644 tools/ocamldep.ml
- create mode 100644 tools/ocamlmklib.ml
- create mode 100644 tools/ocamlmktop.ml
- create mode 100644 tools/ocamloptp.ml
- create mode 100644 tools/ocamlprof.ml
- create mode 100755 tools/ocamlsize
- create mode 100755 tools/pre-commit-githook
- create mode 100644 tools/primreq.ml
- create mode 100644 tools/profiling.ml
- create mode 100644 tools/profiling.mli
- create mode 100644 tools/stripdebug.ml
- create mode 100755 tools/sync_stdlib_docs
- create mode 100644 tools/unlabel-patches/1.mli
- create mode 100644 tools/unlabel-patches/2.mli
- create mode 100644 tools/unlabel-patches/3.mli
- create mode 100644 tools/unlabel-patches/4.mli
- create mode 100644 toplevel/dune
- create mode 100644 toplevel/expunge.ml
- create mode 100644 toplevel/genprintval.ml
- create mode 100644 toplevel/genprintval.mli
- create mode 100644 toplevel/opttopdirs.ml
- create mode 100644 toplevel/opttopdirs.mli
- create mode 100644 toplevel/opttoploop.ml
- create mode 100644 toplevel/opttoploop.mli
- create mode 100644 toplevel/opttopmain.ml
- create mode 100644 toplevel/opttopmain.mli
- create mode 100644 toplevel/opttopstart.ml
- create mode 100644 toplevel/topdirs.ml
- create mode 100644 toplevel/topdirs.mli
- create mode 100644 toplevel/toploop.ml
- create mode 100644 toplevel/toploop.mli
- create mode 100644 toplevel/topmain.ml
- create mode 100644 toplevel/topmain.mli
- create mode 100644 toplevel/topstart.ml
- create mode 100644 toplevel/trace.ml
- create mode 100644 toplevel/trace.mli
- create mode 100644 typing/HACKING.adoc
- create mode 100644 typing/TODO.md
- create mode 100644 typing/annot.mli
- create mode 100644 typing/btype.ml
- create mode 100644 typing/btype.mli
- create mode 100644 typing/cmt2annot.ml
- create mode 100644 typing/ctype.ml
- create mode 100644 typing/ctype.mli
- create mode 100644 typing/datarepr.ml
- create mode 100644 typing/datarepr.mli
- create mode 100644 typing/env.ml
- create mode 100644 typing/env.mli
- create mode 100644 typing/envaux.ml
- create mode 100644 typing/envaux.mli
- create mode 100644 typing/ident.ml
- create mode 100644 typing/ident.mli
- create mode 100644 typing/includeclass.ml
- create mode 100644 typing/includeclass.mli
- create mode 100644 typing/includecore.ml
- create mode 100644 typing/includecore.mli
- create mode 100644 typing/includemod.ml
- create mode 100644 typing/includemod.mli
- create mode 100644 typing/mtype.ml
- create mode 100644 typing/mtype.mli
- create mode 100644 typing/oprint.ml
- create mode 100644 typing/oprint.mli
- create mode 100644 typing/outcometree.mli
- create mode 100644 typing/parmatch.ml
- create mode 100644 typing/parmatch.mli
- create mode 100644 typing/path.ml
- create mode 100644 typing/path.mli
- create mode 100644 typing/patterns.ml
- create mode 100644 typing/patterns.mli
- create mode 100644 typing/persistent_env.ml
- create mode 100644 typing/persistent_env.mli
- create mode 100644 typing/predef.ml
- create mode 100644 typing/predef.mli
- create mode 100644 typing/primitive.ml
- create mode 100644 typing/primitive.mli
- create mode 100644 typing/printpat.ml
- create mode 100644 typing/printpat.mli
- create mode 100644 typing/printtyp.ml
- create mode 100644 typing/printtyp.mli
- create mode 100644 typing/printtyped.ml
- create mode 100644 typing/printtyped.mli
- create mode 100644 typing/rec_check.ml
- create mode 100644 typing/rec_check.mli
- create mode 100644 typing/stypes.ml
- create mode 100644 typing/stypes.mli
- create mode 100644 typing/subst.ml
- create mode 100644 typing/subst.mli
- create mode 100644 typing/tast_iterator.ml
- create mode 100644 typing/tast_iterator.mli
- create mode 100644 typing/tast_mapper.ml
- create mode 100644 typing/tast_mapper.mli
- create mode 100644 typing/type_immediacy.ml
- create mode 100644 typing/type_immediacy.mli
- create mode 100644 typing/typeclass.ml
- create mode 100644 typing/typeclass.mli
- create mode 100644 typing/typecore.ml
- create mode 100644 typing/typecore.mli
- create mode 100644 typing/typedecl.ml
- create mode 100644 typing/typedecl.mli
- create mode 100644 typing/typedecl_immediacy.ml
- create mode 100644 typing/typedecl_immediacy.mli
- create mode 100644 typing/typedecl_properties.ml
- create mode 100644 typing/typedecl_properties.mli
- create mode 100644 typing/typedecl_separability.ml
- create mode 100644 typing/typedecl_separability.mli
- create mode 100644 typing/typedecl_unboxed.ml
- create mode 100644 typing/typedecl_unboxed.mli
- create mode 100644 typing/typedecl_variance.ml
- create mode 100644 typing/typedecl_variance.mli
- create mode 100644 typing/typedtree.ml
- create mode 100644 typing/typedtree.mli
- create mode 100644 typing/typemod.ml
- create mode 100644 typing/typemod.mli
- create mode 100644 typing/typeopt.ml
- create mode 100644 typing/typeopt.mli
- create mode 100644 typing/types.ml
- create mode 100644 typing/types.mli
- create mode 100644 typing/typetexp.ml
- create mode 100644 typing/typetexp.mli
- create mode 100644 typing/untypeast.ml
- create mode 100644 typing/untypeast.mli
- create mode 100644 utils/HACKING.adoc
- create mode 100644 utils/Makefile
- create mode 100644 utils/arg_helper.ml
- create mode 100644 utils/arg_helper.mli
- create mode 100644 utils/binutils.ml
- create mode 100644 utils/binutils.mli
- create mode 100644 utils/build_path_prefix_map.ml
- create mode 100644 utils/build_path_prefix_map.mli
- create mode 100644 utils/ccomp.ml
- create mode 100644 utils/ccomp.mli
- create mode 100644 utils/clflags.ml
- create mode 100644 utils/clflags.mli
- create mode 100644 utils/config.mli
- create mode 100644 utils/config.mlp
- create mode 100644 utils/consistbl.ml
- create mode 100644 utils/consistbl.mli
- create mode 100644 utils/domainstate.ml.c
- create mode 100644 utils/domainstate.mli.c
- create mode 100644 utils/dune
- create mode 100644 utils/identifiable.ml
- create mode 100644 utils/identifiable.mli
- create mode 100644 utils/int_replace_polymorphic_compare.ml
- create mode 100644 utils/int_replace_polymorphic_compare.mli
- create mode 100644 utils/load_path.ml
- create mode 100644 utils/load_path.mli
- create mode 100644 utils/local_store.ml
- create mode 100644 utils/local_store.mli
- create mode 100644 utils/misc.ml
- create mode 100644 utils/misc.mli
- create mode 100644 utils/numbers.ml
- create mode 100644 utils/numbers.mli
- create mode 100644 utils/profile.ml
- create mode 100644 utils/profile.mli
- create mode 100644 utils/strongly_connected_components.ml
- create mode 100644 utils/strongly_connected_components.mli
- create mode 100644 utils/targetint.ml
- create mode 100644 utils/targetint.mli
- create mode 100644 utils/terminfo.ml
- create mode 100644 utils/terminfo.mli
- create mode 100644 utils/warnings.ml
- create mode 100644 utils/warnings.mli
- create mode 100644 yacc/Makefile
- create mode 100644 yacc/closure.c
- create mode 100644 yacc/defs.h
- create mode 100644 yacc/error.c
- create mode 100644 yacc/lalr.c
- create mode 100644 yacc/lr0.c
- create mode 100644 yacc/main.c
- create mode 100644 yacc/mkpar.c
- create mode 100644 yacc/output.c
- create mode 100644 yacc/reader.c
- create mode 100644 yacc/skeleton.c
- create mode 100644 yacc/symtab.c
- create mode 100644 yacc/verbose.c
- create mode 100644 yacc/warshall.c
- create mode 100644 yacc/wstr.c
- hint: Using 'master' as the name for the initial branch. This default branch name
- hint: is subject to change. To configure the initial branch name to use in all
- hint: of your new repositories, which will suppress this warning, call:
- hint:
- hint: git config --global init.defaultBranch <name>
- hint:
- hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
- hint: 'development'. The just-created branch can be renamed via this command:
- hint:
- hint: git branch -m <name>
- Initialized empty Git repository in /home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/flexdll/.git/
- [master (root-commit) 2295bc1] Commit from source tree
- 33 files changed, 6723 insertions(+)
- create mode 100644 .gitattributes
- create mode 100644 .gitignore
- create mode 100644 .ocp-indent
- create mode 100644 CHANGES
- create mode 100644 Compat401.ml
- create mode 100644 Compat402.ml
- create mode 100644 Compat403.ml
- create mode 100644 Compat405.ml
- create mode 100644 Compat406.ml
- create mode 100644 Compat407.ml
- create mode 100644 LICENSE
- create mode 100644 Makefile
- create mode 100644 README.md
- create mode 100755 appveyor.yml
- create mode 100755 appveyor_build.sh
- create mode 100755 checkenv
- create mode 100755 clear_appveyor_cache.sh
- create mode 100644 cmdline.ml
- create mode 100644 coff.ml
- create mode 100644 create_dll.ml
- create mode 100644 default.manifest
- create mode 100755 default_amd64.manifest
- create mode 100644 flexdll.c
- create mode 100644 flexdll.h
- create mode 100644 flexdll_initer.c
- create mode 100644 installer.nsi
- create mode 100644 msvs-detect
- create mode 100644 reloc.ml
- create mode 100644 test/Makefile
- create mode 100644 test/dump.c
- create mode 100644 test/plug1.c
- create mode 100644 test/plug2.c
- create mode 100644 version.rc
- No local changes to save
- No local changes to save
- HEAD is now at 0087667 Commit from source tree
- HEAD is now at 2295bc1 Commit from source tree
- HEAD is now at 0087667 Commit from source tree
- HEAD is now at 2295bc1 Commit from source tree
- patches(ocaml host) = /home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2/dkmldir/vendor/dkml-compiler/src/p/ocaml-common-4_12-a01-alignfiletime.patch
- Applying: Diskuv ocaml host patch ocaml-common-4_12-a01-alignfiletime.patch
- patches(flexdll host) =
Processing 4/4: [dkml-component-staging-ocamlrun: sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "sh" "-eufc" "cd '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files' && echo 1 - host && share/dkml/repro/100co/vendor/dkml-compiler/src/r-c-ocaml-2-build_host-noargs.sh" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
- 1 - host
- configure: Configuring OCaml version 4.12.1
- checking build system type... x86_64-pc-linux-gnu
- checking host system type... x86_64-none-linux-gnu
- checking target system type...
- x86_64-none-linux-gnu
- checking for x86_64-none-linux-ld... /usr/bin/ld -melf_x86_64
- checking how to print strings... printf
- checking for x86_64-none-linux-gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables...
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
- checking for a sed that does not truncate output... /usr/bin/sed
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for fgrep... /usr/bin/grep -F
- checking for ld used by gcc... /usr/bin/ld -melf_x86_64
- checking if the linker (/usr/bin/ld -melf_x86_64) is GNU ld... yes
- checking for BSD- or MS-compatible name lister (nm)... no
- checking for x86_64-none-linux-dumpbin... no
- checking for x86_64-none-linux-link... no
- checking for dumpbin... no
- checking for link... link -dump
- checking the name lister (nm) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 1572864
- checking how to convert x86_64-pc-linux-gnu file names to x86_64-none-linux-gnu format... func_convert_file_noop
- checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
- checking for /usr/bin/ld -melf_x86_64 option to reload object files... -r
- checking for x86_64-none-linux-objdump... no
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for x86_64-none-linux-dlltool... no
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for x86_64-none-linux-ar... no
- checking for ar... ar
- checking for archiver @FILE support... @
- checking for x86_64-none-linux-strip... no
- checking for strip... strip
- checking for x86_64-none-linux-ranlib... no
- checking for ranlib... ranlib
- checking for gawk... no
- checking for mawk... mawk
- checking command to parse nm output from gcc object...
- ok
- checking for sysroot... no
- checking for a working dd... /usr/bin/dd
- checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
- ./configure: line 6778: /usr/bin/file: No such file or directory
- checking for x86_64-none-linux-mt... no
- checking for mt... no
- checking if : is a manifest tool... no
- checking how to run the C preprocessor... gcc -E
- checking for ANSI C header files... yes
- checking for sys/types.h... yes
- checking for sys/stat.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for memory.h... yes
- checking for strings.h...
- yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if gcc supports -fno-rtti -fno-exceptions... no
- checking for gcc option to produce PIC... -fPIC -DPIC
- checking if gcc PIC flag -fPIC -DPIC works... yes
- checking if gcc static flag -static works... yes
- checking if gcc supports -c -o file.o...
- yes
- checking if gcc supports -c -o file.o... (cached) yes
- checking whether the gcc linker (/usr/bin/ld -melf_x86_64) supports shared libraries... yes
- checking whether -lc should be explicitly linked in... no
- checking dynamic linker characteristics... GNU/Linux ld.so
- checking how to hardcode library paths into programs... immediate
- checking whether stripping libraries is possible... yes
- checking if libtool supports shared libraries... yes
- checking whether to build shared libraries... yes
- checking whether to build static libraries... yes
- checking C compiler vendor... gcc-14-2
- checking whether #! works in shell scripts... yes
- checking for a BSD-compatible install... /usr/bin/install -c
- checking for cos in -lm... yes
- checking math.h usability... yes
- checking math.h presence... yes
- checking for math.h... yes
- checking for unistd.h... (cached) yes
- checking for stdint.h... (cached) yes
- checking for dirent.h... yes
- checking for sys/select.h... yes
- checking for off_t... yes
- checking size of int...
- 4
- checking size of long... 8
- checking size of long *... 8
- checking size of short... 2
- checking size of long long... 8
- configure: Target is a 64 bits architecture
- checking whether byte ordering is bigendian... no
- checking alignment of double...
- 8
- checking alignment of long... 8
- checking alignment of long long... 8
- checking whether the C compiler supports -fno-tree-vrp... yes
- checking whether the C compiler supports __attribute__((aligned(n)))... yes
- checking whether the C compiler supports __attribute__((optimize("tree-vectorize")))... yes
- configure: the native compiler is disabled
- checking for x86_64-none-linux-ld... /usr/bin/ld -melf_x86_64
- checking for x86_64-none-linux-as... no
- checking for as... as
- checking for rlwrap... no
- configure: checking semantics of signal handlers
- checking for sigaction... yes
- checking for sigprocmask... yes
- configure: POSIX signal handling found.
- checking for expm1... yes
- checking for log1p...
- yes
- checking for hypot... yes
- checking for fma... yes
- checking for copysign... yes
- checking for getrusage... yes
- checking for times... yes
- checking for secure_getenv...
- yes
- checking for issetugid... no
- checking for library containing clock_gettime... none required
- checking for socket... yes
- checking for socketpair... yes
- checking for bind... yes
- checking for listen... yes
- checking for accept...
- yes
- checking for connect... yes
- checking for socklen_t... yes
- checking for inet_aton... yes
- checking for struct sockaddr_in6... yes
- checking for getaddrinfo... yes
- checking for getnameinfo...
- yes
- checking for inet_pton... yes
- checking for inet_ntop... yes
- checking for rewinddir... yes
- checking for lockf... yes
- checking for mkfifo... yes
- checking for getcwd... yes
- checking whether system is declared...
- yes
- checking for sys/types.h... (cached) yes
- checking utime.h usability... yes
- checking utime.h presence... yes
- checking for utime.h... yes
- checking for utime... yes
- checking for utimes... yes
- checking for fchmod... yes
- checking for fchown... yes
- checking for truncate... yes
- checking for ftruncate...
- yes
- checking for select... yes
- checking for fd_set... yes
- checking for nanosleep... yes
- checking for symlink... yes
- checking for readlink... yes
- checking for lstat...
- yes
- checking for waitpid... yes
- checking for wait4... yes
- checking for getgroups... yes
- checking for setgroups... yes
- checking for initgroups... yes
- checking termios.h usability... yes
- checking termios.h presence...
- yes
- checking for termios.h... yes
- checking for tcgetattr... yes
- checking for tcsetattr... yes
- checking for tcsendbreak... yes
- checking for tcflush... yes
- checking for tcflow... yes
- checking for setitimer... yes
- checking for gethostname...
- yes
- checking sys/utsname.h usability... yes
- checking sys/utsname.h presence... yes
- checking for sys/utsname.h... yes
- checking for uname... yes
- checking for gettimeofday... yes
- checking for mktime... yes
- checking for setsid... yes
- checking for putenv... yes
- checking for setenv...
- yes
- checking for unsetenv... yes
- checking locale.h usability... yes
- checking locale.h presence... yes
- checking for locale.h... yes
- checking for newlocale... yes
- checking for freelocale... yes
- checking for uselocale... yes
- checking xlocale.h usability... no
- checking xlocale.h presence... no
- checking for xlocale.h... no
- checking for strtod_l... yes
- checking for dlopen...
- yes
- configure: Dynamic loading of shared libraries is supported.
- checking sys/mman.h usability... yes
- checking sys/mman.h presence... yes
- checking for sys/mman.h... yes
- checking for mmap... yes
- checking for munmap... yes
- checking for pwrite... yes
- checking whether the C compiler supports -fdebug-prefix-map... yes
- checking for struct stat.st_atim.tv_nsec... yes
- configure: stat supports nanosecond precision
- checking how many arguments gethostbyname_r() takes... six
- checking how many arguments gethostbyaddr_r() takes...
- eight
- checking for mkstemp... yes
- checking for nice... yes
- checking for dup3... yes
- checking for pipe2... yes
- checking for accept4... yes
- checking for getauxval... yes
- checking sys/shm.h usability... yes
- checking sys/shm.h presence... yes
- checking for sys/shm.h... yes
- checking for shmat... yes
- checking for execvpe...
- yes
- checking spawn.h usability... yes
- checking spawn.h presence... yes
- checking for spawn.h... yes
- checking for posix_spawn... yes
- checking for posix_spawnp... yes
- checking for ffs... yes
- checking for _BitScanForward... no
- configure: replay debugger supported
- checking whether stack overflows can be detected... yes
- checking whether gcc is Clang... no
- checking whether pthreads work with -pthread... yes
- checking for joinable pthread attribute...
- PTHREAD_CREATE_JOINABLE
- checking whether more special flags are required for pthreads... no
- checking for PTHREAD_PRIO_INHERIT... yes
- configure: the POSIX threads library is supported
- checking for sigwait... yes
- configure: not using frame pointers
- checking whether mmap supports huge pages... yes
- configure: creating ./config.status
- config.status: creating Makefile.build_config
- config.status: creating Makefile.config
- config.status: creating tools/eventlog_metadata
- config.status: creating runtime/caml/m.h
- config.status: creating runtime/caml/s.h
- config.status: executing libtool commands
- make -C runtime all
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/runtime'
- mkdir -p .dep
- tr -d '\r' < caml/instruct.h | \
- sed -e '/\/\*/d' \
- -e '/^#/d' \
- -e 's/enum /static char * names_of_/' \
- -e 's/{$/[] = {/' \
- -e 's/\([[:upper:]][[:upper:]_0-9]*\)/"\1"/g' > caml/opnames.h
- ../tools/make-version-header.sh ../VERSION > caml/version.h
- tr -d '\r' < caml/instruct.h | \
- sed -n -e '/^ /s/ \([A-Z]\)/ \&\&lbl_\1/gp' \
- -e '/^}/q' > caml/jumptbl.h
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= interp.c -MT 'interp.b.o' -MF .dep/interp.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= misc.c -MT 'misc.b.o' -MF .dep/misc.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= stacks.c -MT 'stacks.b.o' -MF .dep/stacks.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= fix_code.c -MT 'fix_code.b.o' -MF .dep/fix_code.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= startup_aux.c -MT 'startup_aux.b.o' -MF .dep/startup_aux.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= startup_byt.c -MT 'startup_byt.b.o' -MF .dep/startup_byt.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= freelist.c -MT 'freelist.b.o' -MF .dep/freelist.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= major_gc.c -MT 'major_gc.b.o' -MF .dep/major_gc.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= minor_gc.c -MT 'minor_gc.b.o' -MF .dep/minor_gc.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= memory.c -MT 'memory.b.o' -MF .dep/memory.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= alloc.c -MT 'alloc.b.o' -MF .dep/alloc.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= roots_byt.c -MT 'roots_byt.b.o' -MF .dep/roots_byt.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= globroots.c -MT 'globroots.b.o' -MF .dep/globroots.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= fail_byt.c -MT 'fail_byt.b.o' -MF .dep/fail_byt.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= signals.c -MT 'signals.b.o' -MF .dep/signals.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= signals_byt.c -MT 'signals_byt.b.o' -MF .dep/signals_byt.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= printexc.c -MT 'printexc.b.o' -MF .dep/printexc.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= backtrace_byt.c -MT 'backtrace_byt.b.o' -MF .dep/backtrace_byt.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= backtrace.c -MT 'backtrace.b.o' -MF .dep/backtrace.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= compare.c -MT 'compare.b.o' -MF .dep/compare.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= ints.c -MT 'ints.b.o' -MF .dep/ints.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= eventlog.c -MT 'eventlog.b.o' -MF .dep/eventlog.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= floats.c -MT 'floats.b.o' -MF .dep/floats.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= str.c -MT 'str.b.o' -MF .dep/str.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= array.c -MT 'array.b.o' -MF .dep/array.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= io.c -MT 'io.b.o' -MF .dep/io.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= extern.c -MT 'extern.b.o' -MF .dep/extern.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= intern.c -MT 'intern.b.o' -MF .dep/intern.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= hash.c -MT 'hash.b.o' -MF .dep/hash.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= sys.c -MT 'sys.b.o' -MF .dep/sys.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= meta.c -MT 'meta.b.o' -MF .dep/meta.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= parsing.c -MT 'parsing.b.o' -MF .dep/parsing.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= gc_ctrl.c -MT 'gc_ctrl.b.o' -MF .dep/gc_ctrl.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= md5.c -MT 'md5.b.o' -MF .dep/md5.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= obj.c -MT 'obj.b.o' -MF .dep/obj.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= lexing.c -MT 'lexing.b.o' -MF .dep/lexing.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= callback.c -MT 'callback.b.o' -MF .dep/callback.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= debugger.c -MT 'debugger.b.o' -MF .dep/debugger.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= weak.c -MT 'weak.b.o' -MF .dep/weak.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= compact.c -MT 'compact.b.o' -MF .dep/compact.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= finalise.c -MT 'finalise.b.o' -MF .dep/finalise.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= custom.c -MT 'custom.b.o' -MF .dep/custom.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= dynlink.c -MT 'dynlink.b.o' -MF .dep/dynlink.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= afl.c -MT 'afl.b.o' -MF .dep/afl.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= unix.c -MT 'unix.b.o' -MF .dep/unix.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= bigarray.c -MT 'bigarray.b.o' -MF .dep/bigarray.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= main.c -MT 'main.b.o' -MF .dep/main.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= memprof.c -MT 'memprof.b.o' -MF .dep/memprof.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= domain.c -MT 'domain.b.o' -MF .dep/domain.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= skiplist.c -MT 'skiplist.b.o' -MF .dep/skiplist.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= codefrag.c -MT 'codefrag.b.o' -MF .dep/codefrag.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= instrtrace.c -MT 'instrtrace.b.o' -MF .dep/instrtrace.b.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG interp.c -MT 'interp.bd.o' -MF .dep/interp.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG misc.c -MT 'misc.bd.o' -MF .dep/misc.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG stacks.c -MT 'stacks.bd.o' -MF .dep/stacks.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG fix_code.c -MT 'fix_code.bd.o' -MF .dep/fix_code.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG startup_aux.c -MT 'startup_aux.bd.o' -MF .dep/startup_aux.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG startup_byt.c -MT 'startup_byt.bd.o' -MF .dep/startup_byt.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG freelist.c -MT 'freelist.bd.o' -MF .dep/freelist.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG major_gc.c -MT 'major_gc.bd.o' -MF .dep/major_gc.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG minor_gc.c -MT 'minor_gc.bd.o' -MF .dep/minor_gc.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG memory.c -MT 'memory.bd.o' -MF .dep/memory.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG alloc.c -MT 'alloc.bd.o' -MF .dep/alloc.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG roots_byt.c -MT 'roots_byt.bd.o' -MF .dep/roots_byt.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG globroots.c -MT 'globroots.bd.o' -MF .dep/globroots.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG fail_byt.c -MT 'fail_byt.bd.o' -MF .dep/fail_byt.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG signals.c -MT 'signals.bd.o' -MF .dep/signals.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG signals_byt.c -MT 'signals_byt.bd.o' -MF .dep/signals_byt.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG printexc.c -MT 'printexc.bd.o' -MF .dep/printexc.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG backtrace_byt.c -MT 'backtrace_byt.bd.o' -MF .dep/backtrace_byt.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG backtrace.c -MT 'backtrace.bd.o' -MF .dep/backtrace.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG compare.c -MT 'compare.bd.o' -MF .dep/compare.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG ints.c -MT 'ints.bd.o' -MF .dep/ints.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG eventlog.c -MT 'eventlog.bd.o' -MF .dep/eventlog.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG floats.c -MT 'floats.bd.o' -MF .dep/floats.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG str.c -MT 'str.bd.o' -MF .dep/str.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG array.c -MT 'array.bd.o' -MF .dep/array.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG io.c -MT 'io.bd.o' -MF .dep/io.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG extern.c -MT 'extern.bd.o' -MF .dep/extern.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG intern.c -MT 'intern.bd.o' -MF .dep/intern.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG hash.c -MT 'hash.bd.o' -MF .dep/hash.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG sys.c -MT 'sys.bd.o' -MF .dep/sys.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG meta.c -MT 'meta.bd.o' -MF .dep/meta.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG parsing.c -MT 'parsing.bd.o' -MF .dep/parsing.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG gc_ctrl.c -MT 'gc_ctrl.bd.o' -MF .dep/gc_ctrl.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG md5.c -MT 'md5.bd.o' -MF .dep/md5.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG obj.c -MT 'obj.bd.o' -MF .dep/obj.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG lexing.c -MT 'lexing.bd.o' -MF .dep/lexing.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG callback.c -MT 'callback.bd.o' -MF .dep/callback.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG debugger.c -MT 'debugger.bd.o' -MF .dep/debugger.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG weak.c -MT 'weak.bd.o' -MF .dep/weak.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG compact.c -MT 'compact.bd.o' -MF .dep/compact.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG finalise.c -MT 'finalise.bd.o' -MF .dep/finalise.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG custom.c -MT 'custom.bd.o' -MF .dep/custom.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG dynlink.c -MT 'dynlink.bd.o' -MF .dep/dynlink.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG afl.c -MT 'afl.bd.o' -MF .dep/afl.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG unix.c -MT 'unix.bd.o' -MF .dep/unix.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG bigarray.c -MT 'bigarray.bd.o' -MF .dep/bigarray.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG main.c -MT 'main.bd.o' -MF .dep/main.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG memprof.c -MT 'memprof.bd.o' -MF .dep/memprof.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG domain.c -MT 'domain.bd.o' -MF .dep/domain.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG skiplist.c -MT 'skiplist.bd.o' -MF .dep/skiplist.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG codefrag.c -MT 'codefrag.bd.o' -MF .dep/codefrag.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG instrtrace.c -MT 'instrtrace.bd.o' -MF .dep/instrtrace.bd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR interp.c -MT 'interp.bi.o' -MF .dep/interp.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR misc.c -MT 'misc.bi.o' -MF .dep/misc.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR stacks.c -MT 'stacks.bi.o' -MF .dep/stacks.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR fix_code.c -MT 'fix_code.bi.o' -MF .dep/fix_code.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR startup_aux.c -MT 'startup_aux.bi.o' -MF .dep/startup_aux.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR startup_byt.c -MT 'startup_byt.bi.o' -MF .dep/startup_byt.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR freelist.c -MT 'freelist.bi.o' -MF .dep/freelist.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR major_gc.c -MT 'major_gc.bi.o' -MF .dep/major_gc.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR minor_gc.c -MT 'minor_gc.bi.o' -MF .dep/minor_gc.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR memory.c -MT 'memory.bi.o' -MF .dep/memory.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR alloc.c -MT 'alloc.bi.o' -MF .dep/alloc.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR roots_byt.c -MT 'roots_byt.bi.o' -MF .dep/roots_byt.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR globroots.c -MT 'globroots.bi.o' -MF .dep/globroots.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR fail_byt.c -MT 'fail_byt.bi.o' -MF .dep/fail_byt.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR signals.c -MT 'signals.bi.o' -MF .dep/signals.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR signals_byt.c -MT 'signals_byt.bi.o' -MF .dep/signals_byt.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR printexc.c -MT 'printexc.bi.o' -MF .dep/printexc.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR backtrace_byt.c -MT 'backtrace_byt.bi.o' -MF .dep/backtrace_byt.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR backtrace.c -MT 'backtrace.bi.o' -MF .dep/backtrace.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR compare.c -MT 'compare.bi.o' -MF .dep/compare.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR ints.c -MT 'ints.bi.o' -MF .dep/ints.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR eventlog.c -MT 'eventlog.bi.o' -MF .dep/eventlog.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR floats.c -MT 'floats.bi.o' -MF .dep/floats.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR str.c -MT 'str.bi.o' -MF .dep/str.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR array.c -MT 'array.bi.o' -MF .dep/array.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR io.c -MT 'io.bi.o' -MF .dep/io.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR extern.c -MT 'extern.bi.o' -MF .dep/extern.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR intern.c -MT 'intern.bi.o' -MF .dep/intern.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR hash.c -MT 'hash.bi.o' -MF .dep/hash.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR sys.c -MT 'sys.bi.o' -MF .dep/sys.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR meta.c -MT 'meta.bi.o' -MF .dep/meta.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR parsing.c -MT 'parsing.bi.o' -MF .dep/parsing.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR gc_ctrl.c -MT 'gc_ctrl.bi.o' -MF .dep/gc_ctrl.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR md5.c -MT 'md5.bi.o' -MF .dep/md5.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR obj.c -MT 'obj.bi.o' -MF .dep/obj.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR lexing.c -MT 'lexing.bi.o' -MF .dep/lexing.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR callback.c -MT 'callback.bi.o' -MF .dep/callback.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR debugger.c -MT 'debugger.bi.o' -MF .dep/debugger.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR weak.c -MT 'weak.bi.o' -MF .dep/weak.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR compact.c -MT 'compact.bi.o' -MF .dep/compact.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR finalise.c -MT 'finalise.bi.o' -MF .dep/finalise.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR custom.c -MT 'custom.bi.o' -MF .dep/custom.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR dynlink.c -MT 'dynlink.bi.o' -MF .dep/dynlink.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR afl.c -MT 'afl.bi.o' -MF .dep/afl.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR unix.c -MT 'unix.bi.o' -MF .dep/unix.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR bigarray.c -MT 'bigarray.bi.o' -MF .dep/bigarray.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR main.c -MT 'main.bi.o' -MF .dep/main.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR memprof.c -MT 'memprof.bi.o' -MF .dep/memprof.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR domain.c -MT 'domain.bi.o' -MF .dep/domain.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR skiplist.c -MT 'skiplist.bi.o' -MF .dep/skiplist.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR codefrag.c -MT 'codefrag.bi.o' -MF .dep/codefrag.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR instrtrace.c -MT 'instrtrace.bi.o' -MF .dep/instrtrace.bi.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= interp.c -MT 'interp.bpic.o' -MF .dep/interp.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= misc.c -MT 'misc.bpic.o' -MF .dep/misc.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= stacks.c -MT 'stacks.bpic.o' -MF .dep/stacks.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= fix_code.c -MT 'fix_code.bpic.o' -MF .dep/fix_code.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= startup_aux.c -MT 'startup_aux.bpic.o' -MF .dep/startup_aux.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= startup_byt.c -MT 'startup_byt.bpic.o' -MF .dep/startup_byt.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= freelist.c -MT 'freelist.bpic.o' -MF .dep/freelist.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= major_gc.c -MT 'major_gc.bpic.o' -MF .dep/major_gc.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= minor_gc.c -MT 'minor_gc.bpic.o' -MF .dep/minor_gc.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= memory.c -MT 'memory.bpic.o' -MF .dep/memory.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= alloc.c -MT 'alloc.bpic.o' -MF .dep/alloc.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= roots_byt.c -MT 'roots_byt.bpic.o' -MF .dep/roots_byt.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= globroots.c -MT 'globroots.bpic.o' -MF .dep/globroots.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= fail_byt.c -MT 'fail_byt.bpic.o' -MF .dep/fail_byt.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= signals.c -MT 'signals.bpic.o' -MF .dep/signals.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= signals_byt.c -MT 'signals_byt.bpic.o' -MF .dep/signals_byt.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= printexc.c -MT 'printexc.bpic.o' -MF .dep/printexc.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= backtrace_byt.c -MT 'backtrace_byt.bpic.o' -MF .dep/backtrace_byt.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= backtrace.c -MT 'backtrace.bpic.o' -MF .dep/backtrace.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= compare.c -MT 'compare.bpic.o' -MF .dep/compare.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= ints.c -MT 'ints.bpic.o' -MF .dep/ints.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= eventlog.c -MT 'eventlog.bpic.o' -MF .dep/eventlog.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= floats.c -MT 'floats.bpic.o' -MF .dep/floats.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= str.c -MT 'str.bpic.o' -MF .dep/str.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= array.c -MT 'array.bpic.o' -MF .dep/array.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= io.c -MT 'io.bpic.o' -MF .dep/io.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= extern.c -MT 'extern.bpic.o' -MF .dep/extern.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= intern.c -MT 'intern.bpic.o' -MF .dep/intern.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= hash.c -MT 'hash.bpic.o' -MF .dep/hash.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= sys.c -MT 'sys.bpic.o' -MF .dep/sys.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= meta.c -MT 'meta.bpic.o' -MF .dep/meta.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= parsing.c -MT 'parsing.bpic.o' -MF .dep/parsing.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= gc_ctrl.c -MT 'gc_ctrl.bpic.o' -MF .dep/gc_ctrl.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= md5.c -MT 'md5.bpic.o' -MF .dep/md5.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= obj.c -MT 'obj.bpic.o' -MF .dep/obj.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= lexing.c -MT 'lexing.bpic.o' -MF .dep/lexing.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= callback.c -MT 'callback.bpic.o' -MF .dep/callback.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= debugger.c -MT 'debugger.bpic.o' -MF .dep/debugger.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= weak.c -MT 'weak.bpic.o' -MF .dep/weak.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= compact.c -MT 'compact.bpic.o' -MF .dep/compact.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= finalise.c -MT 'finalise.bpic.o' -MF .dep/finalise.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= custom.c -MT 'custom.bpic.o' -MF .dep/custom.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= dynlink.c -MT 'dynlink.bpic.o' -MF .dep/dynlink.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= afl.c -MT 'afl.bpic.o' -MF .dep/afl.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= unix.c -MT 'unix.bpic.o' -MF .dep/unix.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= bigarray.c -MT 'bigarray.bpic.o' -MF .dep/bigarray.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= main.c -MT 'main.bpic.o' -MF .dep/main.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= memprof.c -MT 'memprof.bpic.o' -MF .dep/memprof.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= domain.c -MT 'domain.bpic.o' -MF .dep/domain.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= skiplist.c -MT 'skiplist.bpic.o' -MF .dep/skiplist.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= codefrag.c -MT 'codefrag.bpic.o' -MF .dep/codefrag.bpic.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= instrtrace.c -MT 'instrtrace.bpic.o' -MF .dep/instrtrace.bpic.d
- echo "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/stublibs" > ld.conf
- echo "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml" >> ld.conf
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o interp.b.o interp.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o misc.b.o misc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o stacks.b.o stacks.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o fix_code.b.o fix_code.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o startup_aux.b.o startup_aux.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o startup_byt.b.o startup_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o freelist.b.o freelist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o major_gc.b.o major_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o minor_gc.b.o minor_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o memory.b.o memory.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o alloc.b.o alloc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o roots_byt.b.o roots_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o globroots.b.o globroots.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o fail_byt.b.o fail_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o signals.b.o signals.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o signals_byt.b.o signals_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o printexc.b.o printexc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o backtrace_byt.b.o backtrace_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o backtrace.b.o backtrace.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o compare.b.o compare.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o ints.b.o ints.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o eventlog.b.o eventlog.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o floats.b.o floats.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o str.b.o str.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o array.b.o array.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o io.b.o io.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o extern.b.o extern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o intern.b.o intern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o hash.b.o hash.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o sys.b.o sys.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o meta.b.o meta.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o parsing.b.o parsing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o gc_ctrl.b.o gc_ctrl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o md5.b.o md5.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o obj.b.o obj.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o lexing.b.o lexing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o callback.b.o callback.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o debugger.b.o debugger.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o weak.b.o weak.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o compact.b.o compact.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o finalise.b.o finalise.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o custom.b.o custom.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DOCAML_STDLIB_DIR='"/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"' -o dynlink.b.o dynlink.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o afl.b.o afl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o unix.b.o unix.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o bigarray.b.o bigarray.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o main.b.o main.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o memprof.b.o memprof.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o domain.b.o domain.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o skiplist.b.o skiplist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o codefrag.b.o codefrag.c
- rm -f libcamlrun.a && ar rc libcamlrun.a interp.b.o misc.b.o stacks.b.o fix_code.b.o startup_aux.b.o startup_byt.b.o freelist.b.o major_gc.b.o minor_gc.b.o memory.b.o alloc.b.o roots_byt.b.o globroots.b.o fail_byt.b.o signals.b.o signals_byt.b.o printexc.b.o backtrace_byt.b.o backtrace.b.o compare.b.o ints.b.o eventlog.b.o floats.b.o str.b.o array.b.o io.b.o extern.b.o intern.b.o hash.b.o sys.b.o meta.b.o parsing.b.o gc_ctrl.b.o md5.b.o obj.b.o lexing.b.o callback.b.o debugger.b.o weak.b.o compact.b.o finalise.b.o custom.b.o dynlink.b.o afl.b.o unix.b.o bigarray.b.o main.b.o memprof.b.o domain.b.o skiplist.b.o codefrag.b.o && ranlib libcamlrun.a
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o interp.bd.o interp.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o misc.bd.o misc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o stacks.bd.o stacks.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o fix_code.bd.o fix_code.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o startup_aux.bd.o startup_aux.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o startup_byt.bd.o startup_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o freelist.bd.o freelist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o major_gc.bd.o major_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o minor_gc.bd.o minor_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o memory.bd.o memory.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o alloc.bd.o alloc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o roots_byt.bd.o roots_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o globroots.bd.o globroots.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o fail_byt.bd.o fail_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o signals.bd.o signals.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o signals_byt.bd.o signals_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o printexc.bd.o printexc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o backtrace_byt.bd.o backtrace_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o backtrace.bd.o backtrace.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o compare.bd.o compare.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o ints.bd.o ints.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o eventlog.bd.o eventlog.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o floats.bd.o floats.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o str.bd.o str.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o array.bd.o array.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o io.bd.o io.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o extern.bd.o extern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o intern.bd.o intern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o hash.bd.o hash.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o sys.bd.o sys.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o meta.bd.o meta.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o parsing.bd.o parsing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o gc_ctrl.bd.o gc_ctrl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o md5.bd.o md5.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o obj.bd.o obj.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o lexing.bd.o lexing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o callback.bd.o callback.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o debugger.bd.o debugger.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o weak.bd.o weak.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o compact.bd.o compact.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o finalise.bd.o finalise.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o custom.bd.o custom.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -DOCAML_STDLIB_DIR='"/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"' -o dynlink.bd.o dynlink.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o afl.bd.o afl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o unix.bd.o unix.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o bigarray.bd.o bigarray.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o main.bd.o main.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o memprof.bd.o memprof.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o domain.bd.o domain.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o skiplist.bd.o skiplist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o codefrag.bd.o codefrag.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DDEBUG -o instrtrace.bd.o instrtrace.c
- rm -f libcamlrund.a && ar rc libcamlrund.a interp.bd.o misc.bd.o stacks.bd.o fix_code.bd.o startup_aux.bd.o startup_byt.bd.o freelist.bd.o major_gc.bd.o minor_gc.bd.o memory.bd.o alloc.bd.o roots_byt.bd.o globroots.bd.o fail_byt.bd.o signals.bd.o signals_byt.bd.o printexc.bd.o backtrace_byt.bd.o backtrace.bd.o compare.bd.o ints.bd.o eventlog.bd.o floats.bd.o str.bd.o array.bd.o io.bd.o extern.bd.o intern.bd.o hash.bd.o sys.bd.o meta.bd.o parsing.bd.o gc_ctrl.bd.o md5.bd.o obj.bd.o lexing.bd.o callback.bd.o debugger.bd.o weak.bd.o compact.bd.o finalise.bd.o custom.bd.o dynlink.bd.o afl.bd.o unix.bd.o bigarray.bd.o main.bd.o memprof.bd.o domain.bd.o skiplist.bd.o codefrag.bd.o instrtrace.bd.o && ranlib libcamlrund.a
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o interp.bi.o interp.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o misc.bi.o misc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o stacks.bi.o stacks.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o fix_code.bi.o fix_code.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o startup_aux.bi.o startup_aux.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o startup_byt.bi.o startup_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o freelist.bi.o freelist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o major_gc.bi.o major_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o minor_gc.bi.o minor_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o memory.bi.o memory.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o alloc.bi.o alloc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o roots_byt.bi.o roots_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o globroots.bi.o globroots.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o fail_byt.bi.o fail_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o signals.bi.o signals.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o signals_byt.bi.o signals_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o printexc.bi.o printexc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o backtrace_byt.bi.o backtrace_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o backtrace.bi.o backtrace.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o compare.bi.o compare.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o ints.bi.o ints.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o eventlog.bi.o eventlog.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o floats.bi.o floats.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o str.bi.o str.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o array.bi.o array.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o io.bi.o io.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o extern.bi.o extern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o intern.bi.o intern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o hash.bi.o hash.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o sys.bi.o sys.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o meta.bi.o meta.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o parsing.bi.o parsing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o gc_ctrl.bi.o gc_ctrl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o md5.bi.o md5.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o obj.bi.o obj.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o lexing.bi.o lexing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o callback.bi.o callback.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o debugger.bi.o debugger.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o weak.bi.o weak.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o compact.bi.o compact.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o finalise.bi.o finalise.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o custom.bi.o custom.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -DOCAML_STDLIB_DIR='"/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"' -o dynlink.bi.o dynlink.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o afl.bi.o afl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o unix.bi.o unix.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o bigarray.bi.o bigarray.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o main.bi.o main.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o memprof.bi.o memprof.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o domain.bi.o domain.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o skiplist.bi.o skiplist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DCAML_INSTR -o codefrag.bi.o codefrag.c
- rm -f libcamlruni.a && ar rc libcamlruni.a interp.bi.o misc.bi.o stacks.bi.o fix_code.bi.o startup_aux.bi.o startup_byt.bi.o freelist.bi.o major_gc.bi.o minor_gc.bi.o memory.bi.o alloc.bi.o roots_byt.bi.o globroots.bi.o fail_byt.bi.o signals.bi.o signals_byt.bi.o printexc.bi.o backtrace_byt.bi.o backtrace.bi.o compare.bi.o ints.bi.o eventlog.bi.o floats.bi.o str.bi.o array.bi.o io.bi.o extern.bi.o intern.bi.o hash.bi.o sys.bi.o meta.bi.o parsing.bi.o gc_ctrl.bi.o md5.bi.o obj.bi.o lexing.bi.o callback.bi.o debugger.bi.o weak.bi.o compact.bi.o finalise.bi.o custom.bi.o dynlink.bi.o afl.bi.o unix.bi.o bigarray.bi.o main.bi.o memprof.bi.o domain.bi.o skiplist.bi.o codefrag.bi.o && ranlib libcamlruni.a
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o interp.bpic.o interp.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o misc.bpic.o misc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o stacks.bpic.o stacks.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o fix_code.bpic.o fix_code.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o startup_aux.bpic.o startup_aux.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o startup_byt.bpic.o startup_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o freelist.bpic.o freelist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o major_gc.bpic.o major_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o minor_gc.bpic.o minor_gc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o memory.bpic.o memory.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o alloc.bpic.o alloc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o roots_byt.bpic.o roots_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o globroots.bpic.o globroots.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o fail_byt.bpic.o fail_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o signals.bpic.o signals.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o signals_byt.bpic.o signals_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o printexc.bpic.o printexc.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o backtrace_byt.bpic.o backtrace_byt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o backtrace.bpic.o backtrace.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o compare.bpic.o compare.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o ints.bpic.o ints.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o eventlog.bpic.o eventlog.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o floats.bpic.o floats.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o str.bpic.o str.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o array.bpic.o array.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o io.bpic.o io.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o extern.bpic.o extern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o intern.bpic.o intern.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o hash.bpic.o hash.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o sys.bpic.o sys.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o meta.bpic.o meta.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o parsing.bpic.o parsing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o gc_ctrl.bpic.o gc_ctrl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o md5.bpic.o md5.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o obj.bpic.o obj.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o lexing.bpic.o lexing.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o callback.bpic.o callback.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o debugger.bpic.o debugger.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o weak.bpic.o weak.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o compact.bpic.o compact.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o finalise.bpic.o finalise.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o custom.bpic.o custom.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -DOCAML_STDLIB_DIR='"/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"' -o dynlink.bpic.o dynlink.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o afl.bpic.o afl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o unix.bpic.o unix.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o bigarray.bpic.o bigarray.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o main.bpic.o main.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o memprof.bpic.o memprof.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o domain.bpic.o domain.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o skiplist.bpic.o skiplist.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o codefrag.bpic.o codefrag.c
- rm -f libcamlrun_pic.a && ar rc libcamlrun_pic.a interp.bpic.o misc.bpic.o stacks.bpic.o fix_code.bpic.o startup_aux.bpic.o startup_byt.bpic.o freelist.bpic.o major_gc.bpic.o minor_gc.bpic.o memory.bpic.o alloc.bpic.o roots_byt.bpic.o globroots.bpic.o fail_byt.bpic.o signals.bpic.o signals_byt.bpic.o printexc.bpic.o backtrace_byt.bpic.o backtrace.bpic.o compare.bpic.o ints.bpic.o eventlog.bpic.o floats.bpic.o str.bpic.o array.bpic.o io.bpic.o extern.bpic.o intern.bpic.o hash.bpic.o sys.bpic.o meta.bpic.o parsing.bpic.o gc_ctrl.bpic.o md5.bpic.o obj.bpic.o lexing.bpic.o callback.bpic.o debugger.bpic.o weak.bpic.o compact.bpic.o finalise.bpic.o custom.bpic.o dynlink.bpic.o afl.bpic.o unix.bpic.o bigarray.bpic.o main.bpic.o memprof.bpic.o domain.bpic.o skiplist.bpic.o codefrag.bpic.o && ranlib libcamlrun_pic.a
- gcc -shared -o libcamlrun_shared.so interp.bpic.o misc.bpic.o stacks.bpic.o fix_code.bpic.o startup_aux.bpic.o startup_byt.bpic.o freelist.bpic.o major_gc.bpic.o minor_gc.bpic.o memory.bpic.o alloc.bpic.o roots_byt.bpic.o globroots.bpic.o fail_byt.bpic.o signals.bpic.o signals_byt.bpic.o printexc.bpic.o backtrace_byt.bpic.o backtrace.bpic.o compare.bpic.o ints.bpic.o eventlog.bpic.o floats.bpic.o str.bpic.o array.bpic.o io.bpic.o extern.bpic.o intern.bpic.o hash.bpic.o sys.bpic.o meta.bpic.o parsing.bpic.o gc_ctrl.bpic.o md5.bpic.o obj.bpic.o lexing.bpic.o callback.bpic.o debugger.bpic.o weak.bpic.o compact.bpic.o finalise.bpic.o custom.bpic.o dynlink.bpic.o afl.bpic.o unix.bpic.o bigarray.bpic.o main.bpic.o memprof.bpic.o domain.bpic.o skiplist.bpic.o codefrag.bpic.o -lm -lpthread
- cp primitives.new primitives
- (echo '#define CAML_INTERNALS'; \
- echo '#include "caml/mlvalues.h"'; \
- echo '#include "caml/prims.h"'; \
- sed -e 's/.*/extern value &();/' primitives; \
- echo 'c_primitive caml_builtin_cprim[] = {'; \
- sed -e 's/.*/ &,/' primitives; \
- echo ' 0 };'; \
- echo 'char * caml_names_of_builtin_cprim[] = {'; \
- sed -e 's/.*/ "&",/' primitives; \
- echo ' 0 };') > prims.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -DCAMLDLLIMPORT= -o prims.o prims.c
- gcc -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -Wl,-E -o ocamlrun prims.o libcamlrun.a -lm -lpthread
- gcc -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -Wl,-E -g -o ocamlrund prims.o libcamlrund.a -lm -lpthread
- gcc -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -Wno-format -Wl,-E -o ocamlruni prims.o libcamlruni.a -lm -lpthread
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/runtime'
- cp runtime/ocamlrun boot/ocamlrun
- make -C stdlib \
- CAMLC='$(BOOT_OCAMLC) -use-prims ../runtime/primitives' all
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/stdlib'
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalFormatBasics.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalFormatBasics.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalAtomic.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalAtomic.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -no-alias-deps -w -49 -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -no-alias-deps -w -49 -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__pervasives.cmo -c pervasives.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__seq.cmi -c seq.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__seq.cmo -c seq.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__option.cmi -c option.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__option.cmo -c option.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__either.cmi -c either.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__either.cmo -c either.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__result.cmi -c result.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__result.cmo -c result.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bool.cmi -c bool.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bool.cmo -c bool.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__char.cmi -c char.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__char.cmo -c char.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__uchar.cmi -c uchar.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__uchar.cmo -c uchar.ml
- sed -e "s|%%VERSION%%|`sed -e 1q ../VERSION | tr -d '\r'`|" sys.mlp > sys.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__sys.cmi -c sys.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__sys.cmo -c sys.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__list.cmi -c list.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__list.cmo -c list.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bytes.cmi -c bytes.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bytes.cmo -c bytes.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__string.cmi -c string.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__string.cmo -c string.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__unit.cmi -c unit.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__unit.cmo -c unit.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__marshal.cmi -c marshal.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__marshal.cmo -c marshal.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__nativeint.cmi -c nativeint.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int32.cmi -c int32.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__obj.cmi -c obj.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__obj.cmo -c obj.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__array.cmi -c array.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__array.cmo -c array.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__float.cmi -c float.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__float.cmo -c float.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int.cmi -c int.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int.cmo -c int.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int32.cmo -c int32.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int64.cmi -c int64.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int64.cmo -c int64.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__nativeint.cmo -c nativeint.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lexing.cmi -c lexing.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lexing.cmo -c lexing.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__parsing.cmi -c parsing.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__parsing.cmo -c parsing.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__set.cmi -c set.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__set.cmo -c set.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__map.cmi -c map.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__map.cmo -c map.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stack.cmi -c stack.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stack.cmo -c stack.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__queue.cmi -c queue.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__queue.cmo -c queue.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalLazy.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalLazy.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lazy.cmi -c lazy.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lazy.cmo -c lazy.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stream.cmi -c stream.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stream.cmo -c stream.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w A -o stdlib__buffer.cmi -c buffer.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w A -o stdlib__buffer.cmo -c buffer.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -c camlinternalFormat.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -c camlinternalFormat.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__printf.cmi -c printf.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__printf.cmo -c printf.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__arg.cmi -c arg.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__arg.cmo -c arg.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__atomic.cmi -c atomic.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__atomic.cmo -c atomic.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__printexc.cmi -c printexc.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__printexc.cmo -c printexc.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__fun.cmi -c fun.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__fun.cmo -c fun.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__gc.cmi -c gc.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__gc.cmo -c gc.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__digest.cmi -c digest.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__digest.cmo -c digest.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__random.cmi -c random.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__random.cmo -c random.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__hashtbl.cmi -c hashtbl.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__hashtbl.cmo -c hashtbl.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__weak.cmi -c weak.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__weak.cmo -c weak.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__format.cmi -c format.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__format.cmo -c format.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__scanf.cmi -c scanf.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__scanf.cmo -c scanf.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__callback.cmi -c callback.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__callback.cmo -c callback.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalOO.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalOO.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -no-principal -o stdlib__oo.cmi -c oo.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__oo.cmo -c oo.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalMod.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalMod.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__genlex.cmi -c genlex.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__genlex.cmo -c genlex.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__ephemeron.cmi -c ephemeron.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__ephemeron.cmo -c ephemeron.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__filename.cmi -c filename.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__filename.cmo -c filename.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__complex.cmi -c complex.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__complex.cmo -c complex.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__arrayLabels.cmi -c arrayLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__arrayLabels.cmo -c arrayLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__listLabels.cmi -c listLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__listLabels.cmo -c listLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__bytesLabels.cmi -c bytesLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__bytesLabels.cmo -c bytesLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__stringLabels.cmi -c stringLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__stringLabels.cmo -c stringLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__moreLabels.cmi -c moreLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__moreLabels.cmo -c moreLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__stdLabels.cmi -c stdLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__stdLabels.cmo -c stdLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bigarray.cmi -c bigarray.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bigarray.cmo -c bigarray.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -a -o stdlib.cma camlinternalFormatBasics.cmo camlinternalAtomic.cmo stdlib.cmo stdlib__pervasives.cmo stdlib__seq.cmo stdlib__option.cmo stdlib__either.cmo stdlib__result.cmo stdlib__bool.cmo stdlib__char.cmo stdlib__uchar.cmo stdlib__sys.cmo stdlib__list.cmo stdlib__bytes.cmo stdlib__string.cmo stdlib__unit.cmo stdlib__marshal.cmo stdlib__obj.cmo stdlib__array.cmo stdlib__float.cmo stdlib__int.cmo stdlib__int32.cmo stdlib__int64.cmo stdlib__nativeint.cmo stdlib__lexing.cmo stdlib__parsing.cmo stdlib__set.cmo stdlib__map.cmo stdlib__stack.cmo stdlib__queue.cmo camlinternalLazy.cmo stdlib__lazy.cmo stdlib__stream.cmo stdlib__buffer.cmo camlinternalFormat.cmo stdlib__printf.cmo stdlib__arg.cmo stdlib__atomic.cmo stdlib__printexc.cmo stdlib__fun.cmo stdlib__gc.cmo stdlib__digest.cmo stdlib__random.cmo stdlib__hashtbl.cmo stdlib__weak.cmo stdlib__format.cmo stdlib__scanf.cmo stdlib__callback.cmo camlinternalOO.cmo stdlib__oo.cmo camlinternalMod.cmo stdlib__genlex.cmo stdlib__ephemeron.cmo stdlib__filename.cmo stdlib__complex.cmo stdlib__arrayLabels.cmo stdlib__listLabels.cmo stdlib__bytesLabels.cmo stdlib__stringLabels.cmo stdlib__moreLabels.cmo stdlib__stdLabels.cmo stdlib__bigarray.cmo
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c std_exit.ml
- echo '#!/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin/ocamlrun' > camlheader
- echo '#!/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin/ocamlrun' > target_camlheader
- echo '#!' | tr -d '\012' > camlheader_ur
- echo '#!/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin/ocamlrund' > camlheaderd
- echo '#!/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin/ocamlrund' > target_camlheaderd
- echo '#!/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin/ocamlruni' > camlheaderi
- echo '#!/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin/ocamlruni' > target_camlheaderi
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/stdlib'
- cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
- cd boot; ln -sf ../runtime/libcamlrun.a .
- make -C runtime all
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/runtime'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/runtime'
- cd stdlib; ln -sf ../runtime/libcamlrun.a .
- make ocamlc
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1'
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/warnings.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/location.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/asttypes.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/longident.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/parsetree.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/annot.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/type_immediacy.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/outcometree.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/build_path_prefix_map.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/misc.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/primitive.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/identifiable.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/ident.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/path.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/types.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/subst.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/load_path.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c file_formats/cmi_format.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/env.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/debuginfo.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/lambda.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c file_formats/cmo_format.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/internal_variable_names.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/linkage_name.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/compilation_unit.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/variable.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/closure_element.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/var_within_closure.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/tag.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/symbol.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_id.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_origin.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/parameter.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/static_exception.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/mutable_variable.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/closure_id.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/projection.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/numbers.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/closure_origin.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/clambda_primitives.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/allocated_const.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/freshening.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/export_id.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simple_value_approx.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/export_info.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/backend_var.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/clambda.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c file_formats/cmx_format.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c file_formats/cmxs_format.mli
- make -C utils config.ml
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/utils'
- sed -e 's!%%AFL_INSTRUMENT%%!false!' \
- -e 's!%%ARCH%%!amd64!' \
- -e 's!%%ARCMD%%!ar!' \
- -e 's!%%ASM%%!/usr/bin/as!' \
- -e 's!%%ASM_CFI_SUPPORTED%%!false!' \
- -e 's!%%BYTECCLIBS%%!-lm -lpthread !' \
- -e 's!%%CC%%!gcc!' \
- -e 's!%%CCOMPTYPE%%!cc!' \
- -e 's!%%OUTPUTOBJ%%!-o !' \
- -e 's!%%EXT_ASM%%!.s!' \
- -e 's!%%EXT_DLL%%!.so!' \
- -e 's!%%EXE%%!!' \
- -e 's!%%EXT_LIB%%!.a!' \
- -e 's!%%EXT_OBJ%%!.o!' \
- -e 's!%%FLAMBDA%%!false!' \
- -e 's!%%WITH_FLAMBDA_INVARIANTS%%!false!' \
- -e 's!%%FLEXLINK_FLAGS%%!!' \
- -e 's!%%FLEXDLL_DIR%%!!' \
- -e 's!%%HOST%%!x86_64-none-linux-gnu!' \
- -e 's!%%LIBDIR%%!/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml!' \
- -e 's!%%MKDLL%%!gcc -shared!' \
- -e 's!%%MKEXE%%!gcc -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -Wl,-E!' \
- -e 's!%%FLEXLINK_LDFLAGS%%! -link \\"-Wl,-E\\"!' \
- -e 's!%%FLEXLINK_DLL_LDFLAGS%%!!' \
- -e 's!%%MKMAINDLL%%!gcc -shared!' \
- -e 's!%%MODEL%%!default!' \
- -e 's!%%NATIVECCLIBS%%!-lm !' \
- -e 's!%%OCAMLC_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -fPIC -Wno-format!' \
- -e 's!%%OCAMLC_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 -D_REENTRANT !' \
- -e 's!%%OCAMLOPT_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -fPIC -Wno-format!' \
- -e 's!%%OCAMLOPT_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 -D_REENTRANT !' \
- -e 's!%%PACKLD%%!/usr/bin/ld -melf_x86_64 -r -o !' \
- -e 's!%%PROFINFO_WIDTH%%!0!' \
- -e 's!%%RANLIBCMD%%!ranlib!' \
- -e 's!%%FORCE_SAFE_STRING%%!true!' \
- -e 's!%%DEFAULT_SAFE_STRING%%!true!' \
- -e 's!%%WINDOWS_UNICODE%%!0!' \
- -e 's!%%SUPPORTS_SHARED_LIBRARIES%%!true!' \
- -e 's!%%SYSTEM%%!linux!' \
- -e 's!%%SYSTHREAD_SUPPORT%%!true!' \
- -e 's!%%TARGET%%!x86_64-none-linux-gnu!' \
- -e 's!%%WITH_FRAME_POINTERS%%!false!' \
- -e 's!%%WITH_PROFINFO%%!false!' \
- -e 's!%%FLAT_FLOAT_ARRAY%%!true!' \
- -e 's!%%FUNCTION_SECTIONS%%!true!' \
- -e 's!%%CC_HAS_DEBUG_PREFIX_MAP%%!true!' \
- -e 's!%%AS_HAS_DEBUG_PREFIX_MAP%%!false!' \
- config.mlp > config.ml
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/utils'
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/config.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/config.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/build_path_prefix_map.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/misc.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/identifiable.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/numbers.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/arg_helper.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/arg_helper.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/profile.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/clflags.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/clflags.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/profile.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/local_store.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/local_store.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/load_path.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/terminfo.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/terminfo.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/ccomp.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/ccomp.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/warnings.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/consistbl.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/consistbl.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/strongly_connected_components.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/strongly_connected_components.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/targetint.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/targetint.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/int_replace_polymorphic_compare.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/int_replace_polymorphic_compare.ml
- gcc -E -I runtime/caml utils/domainstate.ml.c > utils/domainstate.ml
- gcc -E -I runtime/caml utils/domainstate.mli.c > utils/domainstate.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/domainstate.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/domainstate.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/binutils.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c utils/binutils.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/location.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/longident.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/docstrings.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/docstrings.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/syntaxerr.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/syntaxerr.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_helper.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_helper.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/pprintast.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/pprintast.ml
- cp boot/menhir/menhirLib.ml parsing/camlinternalMenhirLib.ml
- echo '[@@@ocaml.warning "-67"]' > parsing/camlinternalMenhirLib.mli
- cat boot/menhir/menhirLib.mli >> parsing/camlinternalMenhirLib.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/camlinternalMenhirLib.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/camlinternalMenhirLib.ml
- sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.ml > parsing/parser.ml
- sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.mli > parsing/parser.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/parser.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/parser.ml
- ./boot/ocamlrun boot/ocamllex -q parsing/lexer.mll
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/lexer.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/lexer.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/parse.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/parse.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/printast.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/printast.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_mapper.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_mapper.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_iterator.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_iterator.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/attr_helper.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/attr_helper.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/builtin_attributes.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/builtin_attributes.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_invariants.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/ast_invariants.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/depend.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c parsing/depend.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/ident.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/path.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/primitive.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/type_immediacy.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/types.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/btype.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/btype.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/oprint.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/oprint.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/subst.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/predef.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/predef.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/datarepr.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/datarepr.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c file_formats/cmi_format.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/persistent_env.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/persistent_env.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/env.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedtree.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedtree.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/printtyped.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/printtyped.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/ctype.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/ctype.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/printtyp.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/printtyp.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/includeclass.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/includeclass.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/mtype.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/mtype.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/envaux.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/envaux.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/includecore.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/includecore.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/tast_iterator.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/tast_iterator.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/tast_mapper.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/tast_mapper.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/stypes.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/stypes.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c file_formats/cmt_format.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c file_formats/cmt_format.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/cmt2annot.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/untypeast.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/untypeast.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/includemod.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/includemod.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typetexp.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typetexp.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/printpat.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/printpat.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/patterns.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/patterns.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/parmatch.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/parmatch.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_properties.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_properties.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_variance.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_variance.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_unboxed.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_unboxed.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_immediacy.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_immediacy.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_separability.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl_separability.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typedecl.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typeopt.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typeopt.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/rec_check.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/rec_check.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typecore.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typecore.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typeclass.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typeclass.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typemod.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c typing/typemod.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/debuginfo.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/lambda.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/printlambda.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/printlambda.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/switch.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/switch.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/matching.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/matching.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translobj.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translobj.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translattribute.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translattribute.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translprim.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translprim.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translcore.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translcore.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translclass.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translclass.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translmod.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/translmod.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/simplif.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/simplif.ml
- lambda/generate_runtimedef.sh runtime/caml/fail.h runtime/primitives > lambda/runtimedef.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/runtimedef.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c lambda/runtimedef.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/instruct.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/meta.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/meta.ml
- make -C tools make_opcodes
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/tools'
- ../boot/ocamlrun ../boot/ocamllex -q make_opcodes.mll
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. make_opcodes.ml -o make_opcodes
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/tools'
- runtime/ocamlrun tools/make_opcodes -opcodes < runtime/caml/instruct.h > bytecomp/opcodes.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -i bytecomp/opcodes.ml > bytecomp/opcodes.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/opcodes.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/opcodes.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytesections.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytesections.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/dll.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/dll.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/symtable.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/symtable.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/pparse.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/pparse.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compenv.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compenv.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/main_args.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/main_args.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compmisc.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compmisc.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/makedepend.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/makedepend.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compile_common.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compile_common.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -linkall -o compilerlibs/ocamlcommon.cma utils/config.cmo utils/build_path_prefix_map.cmo utils/misc.cmo utils/identifiable.cmo utils/numbers.cmo utils/arg_helper.cmo utils/clflags.cmo utils/profile.cmo utils/local_store.cmo utils/load_path.cmo utils/terminfo.cmo utils/ccomp.cmo utils/warnings.cmo utils/consistbl.cmo utils/strongly_connected_components.cmo utils/targetint.cmo utils/int_replace_polymorphic_compare.cmo utils/domainstate.cmo utils/binutils.cmo parsing/location.cmo parsing/longident.cmo parsing/docstrings.cmo parsing/syntaxerr.cmo parsing/ast_helper.cmo parsing/pprintast.cmo parsing/camlinternalMenhirLib.cmo parsing/parser.cmo parsing/lexer.cmo parsing/parse.cmo parsing/printast.cmo parsing/ast_mapper.cmo parsing/ast_iterator.cmo parsing/attr_helper.cmo parsing/builtin_attributes.cmo parsing/ast_invariants.cmo parsing/depend.cmo typing/ident.cmo typing/path.cmo typing/primitive.cmo typing/type_immediacy.cmo typing/types.cmo typing/btype.cmo typing/oprint.cmo typing/subst.cmo typing/predef.cmo typing/datarepr.cmo file_formats/cmi_format.cmo typing/persistent_env.cmo typing/env.cmo typing/typedtree.cmo typing/printtyped.cmo typing/ctype.cmo typing/printtyp.cmo typing/includeclass.cmo typing/mtype.cmo typing/envaux.cmo typing/includecore.cmo typing/tast_iterator.cmo typing/tast_mapper.cmo typing/stypes.cmo file_formats/cmt_format.cmo typing/cmt2annot.cmo typing/untypeast.cmo typing/includemod.cmo typing/typetexp.cmo typing/printpat.cmo typing/patterns.cmo typing/parmatch.cmo typing/typedecl_properties.cmo typing/typedecl_variance.cmo typing/typedecl_unboxed.cmo typing/typedecl_immediacy.cmo typing/typedecl_separability.cmo typing/typedecl.cmo typing/typeopt.cmo typing/rec_check.cmo typing/typecore.cmo typing/typeclass.cmo typing/typemod.cmo lambda/debuginfo.cmo lambda/lambda.cmo lambda/printlambda.cmo lambda/switch.cmo lambda/matching.cmo lambda/translobj.cmo lambda/translattribute.cmo lambda/translprim.cmo lambda/translcore.cmo lambda/translclass.cmo lambda/translmod.cmo lambda/simplif.cmo lambda/runtimedef.cmo bytecomp/meta.cmo bytecomp/opcodes.cmo bytecomp/bytesections.cmo bytecomp/dll.cmo bytecomp/symtable.cmo driver/pparse.cmo driver/compenv.cmo driver/main_args.cmo driver/compmisc.cmo driver/makedepend.cmo driver/compile_common.cmo
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/instruct.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytegen.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytegen.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/printinstr.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/printinstr.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/emitcode.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/emitcode.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytelink.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytelink.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytelibrarian.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytelibrarian.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytepackager.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c bytecomp/bytepackager.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/errors.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/errors.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compile.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/compile.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/maindriver.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/maindriver.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -o compilerlibs/ocamlbytecomp.cma bytecomp/instruct.cmo bytecomp/bytegen.cmo bytecomp/printinstr.cmo bytecomp/emitcode.cmo bytecomp/bytelink.cmo bytecomp/bytelibrarian.cmo bytecomp/bytepackager.cmo driver/errors.cmo driver/compile.cmo driver/maindriver.cmo
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c driver/main.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -compat-32 -o ocamlc compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma driver/main.cmo
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1'
- make ocamllex ocamltools library
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1'
- make -C yacc all
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/yacc'
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o closure.o closure.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o error.o error.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o lalr.o lalr.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o lr0.o lr0.c
- echo "#define OCAML_VERSION \"`sed -e 1q ../VERSION | tr -d '\r'`\"" > version.h
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o main.o main.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o mkpar.o mkpar.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o output.o output.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o reader.o reader.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o skeleton.o skeleton.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o symtab.o symtab.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o verbose.o verbose.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../runtime \
- -o warshall.o warshall.c
- gcc -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -Wno-format -Wl,-E -o ocamlyacc closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o skeleton.o symtab.o verbose.o warshall.o
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/yacc'
- make -C lex all
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/lex'
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot cset.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot cset.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot syntax.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot syntax.ml
- ../yacc/ocamlyacc -v parser.mly
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot parser.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot parser.ml
- ../boot/ocamlrun ../boot/ocamllex -q lexer.mll
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexer.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexer.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot table.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot table.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot compact.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot compact.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot common.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot common.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot output.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot output.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot main.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -compat-32 -o ocamllex cset.cmo syntax.cmo parser.cmo lexer.cmo table.cmo lexgen.cmo compact.cmo common.cmo output.cmo outputbis.cmo main.cmo
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/lex'
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/backend_intf.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_cost.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_stats_types.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inline_and_simplify_aux.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_decision_intf.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops_intf.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/internal_variable_names.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/linkage_name.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/compilation_unit.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/variable.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/closure_element.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/closure_id.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/symbol.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/backend_var.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/clambda_primitives.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/printclambda_primitives.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/printclambda_primitives.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/clambda.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/printclambda.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/printclambda.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/semantics_of_primitives.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/semantics_of_primitives.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/convert_primitives.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/convert_primitives.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/id_types.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/id_types.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/export_id.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/tag.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/mutable_variable.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_id.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_origin.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/closure_origin.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/var_within_closure.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/base_types/static_exception.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/pass_wrapper.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/pass_wrapper.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/allocated_const.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/parameter.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/projection.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_iterators.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_iterators.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_utils.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_utils.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/freshening.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/effect_analysis.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/effect_analysis.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_cost.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simple_value_approx.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/export_info.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/export_info_for_pack.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/export_info_for_pack.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/compilenv.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/compilenv.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/closure/closure.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/closure/closure.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/closure/closure_middle_end.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/closure/closure_middle_end.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/import_approx.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/import_approx.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/lift_code.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/lift_code.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/closure_conversion_aux.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/closure_conversion_aux.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/closure_conversion.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/closure_conversion.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/initialize_symbol_to_let_symbol.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/initialize_symbol_to_let_symbol.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/lift_let_to_initialize_symbol.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/lift_let_to_initialize_symbol.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/find_recursive_functions.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/find_recursive_functions.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/invariant_params.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/invariant_params.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inconstant_idents.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inconstant_idents.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/alias_analysis.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/alias_analysis.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/lift_constants.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/lift_constants.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/share_constants.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/share_constants.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simplify_common.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simplify_common.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_unused_arguments.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_unused_arguments.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_unused_closure_vars.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_unused_closure_vars.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_unused_program_constructs.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_unused_program_constructs.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simplify_primitives.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/simplify_primitives.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_stats_types.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_stats.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_stats.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inline_and_simplify_aux.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_free_vars_equal_to_args.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/remove_free_vars_equal_to_args.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/extract_projections.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/extract_projections.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/augment_specialised_args.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/augment_specialised_args.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/unbox_free_vars_of_closures.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/unbox_free_vars_of_closures.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/unbox_specialised_args.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/unbox_specialised_args.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/unbox_closures.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/unbox_closures.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_transforms.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_transforms.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_decision.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inlining_decision.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inline_and_simplify.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/inline_and_simplify.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/ref_to_variables.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/ref_to_variables.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_invariants.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_invariants.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/traverse_for_exported_symbols.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/traverse_for_exported_symbols.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/build_export_info.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/build_export_info.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/closure_offsets.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/closure_offsets.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/un_anf.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/un_anf.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_to_clambda.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_to_clambda.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_middle_end.mli
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I asmcomp/debug -I driver -I toplevel -c middle_end/flambda/flambda_middle_end.ml
- ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -o compilerlibs/ocamlmiddleend.cma middle_end/internal_variable_names.cmo middle_end/linkage_name.cmo middle_end/compilation_unit.cmo middle_end/variable.cmo middle_end/flambda/base_types/closure_element.cmo middle_end/flambda/base_types/closure_id.cmo middle_end/symbol.cmo middle_end/backend_var.cmo middle_end/clambda_primitives.cmo middle_end/printclambda_primitives.cmo middle_end/clambda.cmo middle_end/printclambda.cmo middle_end/semantics_of_primitives.cmo middle_end/convert_primitives.cmo middle_end/flambda/base_types/id_types.cmo middle_end/flambda/base_types/export_id.cmo middle_end/flambda/base_types/tag.cmo middle_end/flambda/base_types/mutable_variable.cmo middle_end/flambda/base_types/set_of_closures_id.cmo middle_end/flambda/base_types/set_of_closures_origin.cmo middle_end/flambda/base_types/closure_origin.cmo middle_end/flambda/base_types/var_within_closure.cmo middle_end/flambda/base_types/static_exception.cmo middle_end/flambda/pass_wrapper.cmo middle_end/flambda/allocated_const.cmo middle_end/flambda/parameter.cmo middle_end/flambda/projection.cmo middle_end/flambda/flambda.cmo middle_end/flambda/flambda_iterators.cmo middle_end/flambda/flambda_utils.cmo middle_end/flambda/freshening.cmo middle_end/flambda/effect_analysis.cmo middle_end/flambda/inlining_cost.cmo middle_end/flambda/simple_value_approx.cmo middle_end/flambda/export_info.cmo middle_end/flambda/export_info_for_pack.cmo middle_end/compilenv.cmo middle_end/closure/closure.cmo middle_end/closure/closure_middle_end.cmo middle_end/flambda/import_approx.cmo middle_end/flambda/lift_code.cmo middle_end/flambda/closure_conversion_aux.cmo middle_end/flambda/closure_conversion.cmo middle_end/flambda/initialize_symbol_to_let_symbol.cmo middle_end/flambda/lift_let_to_initialize_symbol.cmo middle_end/flambda/find_recursive_functions.cmo middle_end/flambda/invariant_params.cmo middle_end/flambda/inconstant_idents.cmo middle_end/flambda/alias_analysis.cmo middle_end/flambda/lift_constants.cmo middle_end/flambda/share_constants.cmo middle_end/flambda/simplify_common.cmo middle_end/flambda/remove_unused_arguments.cmo middle_end/flambda/remove_unused_closure_vars.cmo middle_end/flambda/remove_unused_program_constructs.cmo middle_end/flambda/simplify_boxed_integer_ops.cmo middle_end/flambda/simplify_primitives.cmo middle_end/flambda/inlining_stats_types.cmo middle_end/flambda/inlining_stats.cmo middle_end/flambda/inline_and_simplify_aux.cmo middle_end/flambda/remove_free_vars_equal_to_args.cmo middle_end/flambda/extract_projections.cmo middle_end/flambda/augment_specialised_args.cmo middle_end/flambda/unbox_free_vars_of_closures.cmo middle_end/flambda/unbox_specialised_args.cmo middle_end/flambda/unbox_closures.cmo middle_end/flambda/inlining_transforms.cmo middle_end/flambda/inlining_decision.cmo middle_end/flambda/inline_and_simplify.cmo middle_end/flambda/ref_to_variables.cmo middle_end/flambda/flambda_invariants.cmo middle_end/flambda/traverse_for_exported_symbols.cmo middle_end/flambda/build_export_info.cmo middle_end/flambda/closure_offsets.cmo middle_end/flambda/un_anf.cmo middle_end/flambda/flambda_to_clambda.cmo middle_end/flambda/flambda_middle_end.cmo
- make -C tools all
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/tools'
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamldep.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -compat-32 -I .. -o ocamldep ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ocamldep.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - profiling.mli
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - profiling.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlprof.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlprof config.cmo build_path_prefix_map.cmo misc.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo terminfo.cmo warnings.cmo location.cmo longident.cmo docstrings.cmo syntaxerr.cmo ast_helper.cmo camlinternalMenhirLib.cmo parser.cmo pprintast.cmo lexer.cmo parse.cmo profiling.cmo ocamlprof.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlcp.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlcp config.cmo build_path_prefix_map.cmo misc.cmo profile.cmo warnings.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo local_store.cmo terminfo.cmo location.cmo load_path.cmo ccomp.cmo compenv.cmo main_args.cmo ocamlcp.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamloptp.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamloptp config.cmo build_path_prefix_map.cmo misc.cmo profile.cmo warnings.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo local_store.cmo terminfo.cmo location.cmo load_path.cmo ccomp.cmo compenv.cmo main_args.cmo ocamloptp.cmo
- (echo 'let bindir = "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin"'; \
- echo 'let supports_shared_libraries = true';\
- echo 'let default_rpath = "-Wl,-rpath,"'; \
- echo 'let mksharedlibrpath = "-Wl,-rpath,"'; \
- echo 'let toolpref = "x86_64-none-linux-"';) \
- > ocamlmklibconfig.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlmklibconfig.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlmklib.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlmklib ocamlmklibconfig.cmo config.cmo build_path_prefix_map.cmo misc.cmo ocamlmklib.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlmktop.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlmktop config.cmo build_path_prefix_map.cmo misc.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo local_store.cmo load_path.cmo profile.cmo ccomp.cmo ocamlmktop.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlcmt.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlcmt ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ocamlcmt.cmo
- ../runtime/ocamlrun make_opcodes -opnames < ../runtime/caml/instruct.h > opnames.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - opnames.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - dumpobj.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o dumpobj ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma opnames.cmo dumpobj.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - objinfo.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlobjinfo ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ../compilerlibs/ocamlmiddleend.cma objinfo.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - primreq.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o primreq ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma primreq.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - stripdebug.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o stripdebug ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma stripdebug.cmo
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - cmpbyt.ml
- ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o cmpbyt ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma cmpbyt.cmo
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/tools'
- make -C stdlib all
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/stdlib'
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalFormatBasics.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalFormatBasics.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalAtomic.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -c camlinternalAtomic.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -no-alias-deps -w -49 -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nopervasives -no-alias-deps -w -49 -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__pervasives.cmo -c pervasives.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__seq.cmi -c seq.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__seq.cmo -c seq.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__option.cmi -c option.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__option.cmo -c option.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__either.cmi -c either.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__either.cmo -c either.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__result.cmi -c result.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__result.cmo -c result.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bool.cmi -c bool.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bool.cmo -c bool.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__char.cmi -c char.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__char.cmo -c char.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__uchar.cmi -c uchar.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__uchar.cmo -c uchar.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__sys.cmi -c sys.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__sys.cmo -c sys.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__list.cmi -c list.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__list.cmo -c list.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bytes.cmi -c bytes.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bytes.cmo -c bytes.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__string.cmi -c string.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__string.cmo -c string.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__unit.cmi -c unit.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__unit.cmo -c unit.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__marshal.cmi -c marshal.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__marshal.cmo -c marshal.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__nativeint.cmi -c nativeint.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int32.cmi -c int32.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__obj.cmi -c obj.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__obj.cmo -c obj.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__array.cmi -c array.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__array.cmo -c array.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__float.cmi -c float.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__float.cmo -c float.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int.cmi -c int.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int.cmo -c int.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int32.cmo -c int32.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int64.cmi -c int64.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__int64.cmo -c int64.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__nativeint.cmo -c nativeint.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lexing.cmi -c lexing.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lexing.cmo -c lexing.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__parsing.cmi -c parsing.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__parsing.cmo -c parsing.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__set.cmi -c set.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__set.cmo -c set.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__map.cmi -c map.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__map.cmo -c map.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stack.cmi -c stack.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stack.cmo -c stack.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__queue.cmi -c queue.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__queue.cmo -c queue.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalLazy.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalLazy.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lazy.cmi -c lazy.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__lazy.cmo -c lazy.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stream.cmi -c stream.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__stream.cmo -c stream.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w A -o stdlib__buffer.cmi -c buffer.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w A -o stdlib__buffer.cmo -c buffer.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -c camlinternalFormat.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -c camlinternalFormat.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__printf.cmi -c printf.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__printf.cmo -c printf.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__arg.cmi -c arg.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__arg.cmo -c arg.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__atomic.cmi -c atomic.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__atomic.cmo -c atomic.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__printexc.cmi -c printexc.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__printexc.cmo -c printexc.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__fun.cmi -c fun.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__fun.cmo -c fun.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__gc.cmi -c gc.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__gc.cmo -c gc.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__digest.cmi -c digest.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__digest.cmo -c digest.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__random.cmi -c random.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__random.cmo -c random.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__hashtbl.cmi -c hashtbl.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__hashtbl.cmo -c hashtbl.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__weak.cmi -c weak.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__weak.cmo -c weak.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__format.cmi -c format.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__format.cmo -c format.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__scanf.cmi -c scanf.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -w Ae -o stdlib__scanf.cmo -c scanf.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__callback.cmi -c callback.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__callback.cmo -c callback.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalOO.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalOO.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -no-principal -o stdlib__oo.cmi -c oo.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__oo.cmo -c oo.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalMod.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c camlinternalMod.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__genlex.cmi -c genlex.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__genlex.cmo -c genlex.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__ephemeron.cmi -c ephemeron.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__ephemeron.cmo -c ephemeron.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__filename.cmi -c filename.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__filename.cmo -c filename.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__complex.cmi -c complex.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__complex.cmo -c complex.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__arrayLabels.cmi -c arrayLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__arrayLabels.cmo -c arrayLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__listLabels.cmi -c listLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__listLabels.cmo -c listLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__bytesLabels.cmi -c bytesLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__bytesLabels.cmo -c bytesLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__stringLabels.cmi -c stringLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__stringLabels.cmo -c stringLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__moreLabels.cmi -c moreLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__moreLabels.cmo -c moreLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -pp "$AWK -f ./expand_module_aliases.awk" -o stdlib__stdLabels.cmi -c stdLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -nolabels -no-alias-deps -o stdlib__stdLabels.cmo -c stdLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bigarray.cmi -c bigarray.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -o stdlib__bigarray.cmo -c bigarray.ml
- ../boot/ocamlrun ../ocamlc -a -o stdlib.cma camlinternalFormatBasics.cmo camlinternalAtomic.cmo stdlib.cmo stdlib__pervasives.cmo stdlib__seq.cmo stdlib__option.cmo stdlib__either.cmo stdlib__result.cmo stdlib__bool.cmo stdlib__char.cmo stdlib__uchar.cmo stdlib__sys.cmo stdlib__list.cmo stdlib__bytes.cmo stdlib__string.cmo stdlib__unit.cmo stdlib__marshal.cmo stdlib__obj.cmo stdlib__array.cmo stdlib__float.cmo stdlib__int.cmo stdlib__int32.cmo stdlib__int64.cmo stdlib__nativeint.cmo stdlib__lexing.cmo stdlib__parsing.cmo stdlib__set.cmo stdlib__map.cmo stdlib__stack.cmo stdlib__queue.cmo camlinternalLazy.cmo stdlib__lazy.cmo stdlib__stream.cmo stdlib__buffer.cmo camlinternalFormat.cmo stdlib__printf.cmo stdlib__arg.cmo stdlib__atomic.cmo stdlib__printexc.cmo stdlib__fun.cmo stdlib__gc.cmo stdlib__digest.cmo stdlib__random.cmo stdlib__hashtbl.cmo stdlib__weak.cmo stdlib__format.cmo stdlib__scanf.cmo stdlib__callback.cmo camlinternalOO.cmo stdlib__oo.cmo camlinternalMod.cmo stdlib__genlex.cmo stdlib__ephemeron.cmo stdlib__filename.cmo stdlib__complex.cmo stdlib__arrayLabels.cmo stdlib__listLabels.cmo stdlib__bytesLabels.cmo stdlib__stringLabels.cmo stdlib__moreLabels.cmo stdlib__stdLabels.cmo stdlib__bigarray.cmo
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -principal -safe-string -strict-formats -c std_exit.ml
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/stdlib'
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1'
- make: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/runtime'
- /usr/bin/install -c ocamlrun ocamlrund ocamlruni "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/bin"
- /usr/bin/install -c -m 644 ld.conf libcamlrun.a libcamlrund.a libcamlruni.a libcamlrun_pic.a "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- /usr/bin/install -c libcamlrun_shared.so "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- mkdir -p "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/caml"
- /usr/bin/install -c -m 644 caml/domain_state.tbl caml/*.h "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/caml"
- make: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/runtime'
- make: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/stdlib'
- /usr/bin/install -c -m 644 \
- stdlib.cma std_exit.cmo *.cmi camlheader_ur \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- /usr/bin/install -c -m 644 \
- *.cmt *.cmti *.mli *.ml \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- /usr/bin/install -c -m 644 target_camlheader "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/camlheader"
- /usr/bin/install -c -m 644 target_camlheaderd "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/camlheaderd"
- /usr/bin/install -c -m 644 target_camlheaderi "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/camlheaderi"
- make: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/stdlib'
- make -C yacc all
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/yacc'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/yacc'
- make -C lex all
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/lex'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/lex'
- make -C tools all
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/tools'
- make[1]: Nothing to be done for 'all'.
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/tools'
- make -C otherlibs all
- make[1]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs'
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/dynlink'
- cp -f dynlink_compilerlibs/Makefile.copy-sources dynlink_compilerlibs/Makefile
- for ml in utils/binutils.ml utils/config.ml utils/build_path_prefix_map.ml utils/misc.ml utils/identifiable.ml utils/numbers.ml utils/arg_helper.ml utils/clflags.ml utils/profile.ml utils/consistbl.ml utils/terminfo.ml utils/warnings.ml utils/local_store.ml utils/load_path.ml utils/int_replace_polymorphic_compare.ml parsing/location.ml parsing/longident.ml parsing/docstrings.ml parsing/syntaxerr.ml parsing/ast_helper.ml parsing/ast_mapper.ml parsing/attr_helper.ml parsing/builtin_attributes.ml typing/ident.ml typing/path.ml typing/primitive.ml typing/type_immediacy.ml typing/types.ml typing/btype.ml typing/subst.ml typing/predef.ml typing/datarepr.ml file_formats/cmi_format.ml typing/persistent_env.ml typing/env.ml lambda/debuginfo.ml lambda/lambda.ml lambda/runtimedef.ml bytecomp/instruct.ml bytecomp/opcodes.ml bytecomp/bytesections.ml bytecomp/dll.ml bytecomp/meta.ml bytecomp/symtable.ml; do \
- echo "dynlink_compilerlibs/$(basename $ml): ../../$ml" \
- >> dynlink_compilerlibs/Makefile; \
- echo "dynlink_compilerlibs/$(basename $ml)i: ../../${ml}i" \
- >> dynlink_compilerlibs/Makefile; \
- done;
- for mli in parsing/asttypes.mli parsing/parsetree.mli typing/outcometree.mli file_formats/cmo_format.mli file_formats/cmxs_format.mli; do \
- echo "dynlink_compilerlibs/$(basename $mli): ../../$mli" \
- >> dynlink_compilerlibs/Makefile; \
- echo \
- "dynlink_compilerlibs/$(basename $mli .mli).ml: ../../$mli"\
- >> dynlink_compilerlibs/Makefile; \
- done
- cp ../../utils/binutils.ml dynlink_compilerlibs/binutils.ml
- cp ../../utils/config.ml dynlink_compilerlibs/config.ml
- cp ../../utils/build_path_prefix_map.ml dynlink_compilerlibs/build_path_prefix_map.ml
- cp ../../utils/misc.ml dynlink_compilerlibs/misc.ml
- cp ../../utils/identifiable.ml dynlink_compilerlibs/identifiable.ml
- cp ../../utils/numbers.ml dynlink_compilerlibs/numbers.ml
- cp ../../utils/arg_helper.ml dynlink_compilerlibs/arg_helper.ml
- cp ../../utils/clflags.ml dynlink_compilerlibs/clflags.ml
- cp ../../utils/profile.ml dynlink_compilerlibs/profile.ml
- cp ../../utils/consistbl.ml dynlink_compilerlibs/consistbl.ml
- cp ../../utils/terminfo.ml dynlink_compilerlibs/terminfo.ml
- cp ../../utils/warnings.ml dynlink_compilerlibs/warnings.ml
- cp ../../utils/local_store.ml dynlink_compilerlibs/local_store.ml
- cp ../../utils/load_path.ml dynlink_compilerlibs/load_path.ml
- cp ../../utils/int_replace_polymorphic_compare.ml dynlink_compilerlibs/int_replace_polymorphic_compare.ml
- cp ../../parsing/location.ml dynlink_compilerlibs/location.ml
- cp ../../parsing/longident.ml dynlink_compilerlibs/longident.ml
- cp ../../parsing/docstrings.ml dynlink_compilerlibs/docstrings.ml
- cp ../../parsing/syntaxerr.ml dynlink_compilerlibs/syntaxerr.ml
- cp ../../parsing/ast_helper.ml dynlink_compilerlibs/ast_helper.ml
- cp ../../parsing/ast_mapper.ml dynlink_compilerlibs/ast_mapper.ml
- cp ../../parsing/attr_helper.ml dynlink_compilerlibs/attr_helper.ml
- cp ../../parsing/builtin_attributes.ml dynlink_compilerlibs/builtin_attributes.ml
- cp ../../typing/ident.ml dynlink_compilerlibs/ident.ml
- cp ../../typing/path.ml dynlink_compilerlibs/path.ml
- cp ../../typing/primitive.ml dynlink_compilerlibs/primitive.ml
- cp ../../typing/type_immediacy.ml dynlink_compilerlibs/type_immediacy.ml
- cp ../../typing/types.ml dynlink_compilerlibs/types.ml
- cp ../../typing/btype.ml dynlink_compilerlibs/btype.ml
- cp ../../typing/subst.ml dynlink_compilerlibs/subst.ml
- cp ../../typing/predef.ml dynlink_compilerlibs/predef.ml
- cp ../../typing/datarepr.ml dynlink_compilerlibs/datarepr.ml
- cp ../../file_formats/cmi_format.ml dynlink_compilerlibs/cmi_format.ml
- cp ../../typing/persistent_env.ml dynlink_compilerlibs/persistent_env.ml
- cp ../../typing/env.ml dynlink_compilerlibs/env.ml
- cp ../../lambda/debuginfo.ml dynlink_compilerlibs/debuginfo.ml
- cp ../../lambda/lambda.ml dynlink_compilerlibs/lambda.ml
- cp ../../lambda/runtimedef.ml dynlink_compilerlibs/runtimedef.ml
- cp ../../bytecomp/instruct.ml dynlink_compilerlibs/instruct.ml
- cp ../../bytecomp/opcodes.ml dynlink_compilerlibs/opcodes.ml
- cp ../../bytecomp/bytesections.ml dynlink_compilerlibs/bytesections.ml
- cp ../../bytecomp/dll.ml dynlink_compilerlibs/dll.ml
- cp ../../bytecomp/meta.ml dynlink_compilerlibs/meta.ml
- cp ../../bytecomp/symtable.ml dynlink_compilerlibs/symtable.ml
- cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.ml
- cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.ml
- cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.ml
- cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.ml
- cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.ml
- cp ../../utils/binutils.mli dynlink_compilerlibs/binutils.mli
- cp ../../utils/config.mli dynlink_compilerlibs/config.mli
- cp ../../utils/build_path_prefix_map.mli dynlink_compilerlibs/build_path_prefix_map.mli
- cp ../../utils/misc.mli dynlink_compilerlibs/misc.mli
- cp ../../utils/identifiable.mli dynlink_compilerlibs/identifiable.mli
- cp ../../utils/numbers.mli dynlink_compilerlibs/numbers.mli
- cp ../../utils/arg_helper.mli dynlink_compilerlibs/arg_helper.mli
- cp ../../utils/clflags.mli dynlink_compilerlibs/clflags.mli
- cp ../../utils/profile.mli dynlink_compilerlibs/profile.mli
- cp ../../utils/consistbl.mli dynlink_compilerlibs/consistbl.mli
- cp ../../utils/terminfo.mli dynlink_compilerlibs/terminfo.mli
- cp ../../utils/warnings.mli dynlink_compilerlibs/warnings.mli
- cp ../../utils/local_store.mli dynlink_compilerlibs/local_store.mli
- cp ../../utils/load_path.mli dynlink_compilerlibs/load_path.mli
- cp ../../utils/int_replace_polymorphic_compare.mli dynlink_compilerlibs/int_replace_polymorphic_compare.mli
- cp ../../parsing/location.mli dynlink_compilerlibs/location.mli
- cp ../../parsing/longident.mli dynlink_compilerlibs/longident.mli
- cp ../../parsing/docstrings.mli dynlink_compilerlibs/docstrings.mli
- cp ../../parsing/syntaxerr.mli dynlink_compilerlibs/syntaxerr.mli
- cp ../../parsing/ast_helper.mli dynlink_compilerlibs/ast_helper.mli
- cp ../../parsing/ast_mapper.mli dynlink_compilerlibs/ast_mapper.mli
- cp ../../parsing/attr_helper.mli dynlink_compilerlibs/attr_helper.mli
- cp ../../parsing/builtin_attributes.mli dynlink_compilerlibs/builtin_attributes.mli
- cp ../../typing/ident.mli dynlink_compilerlibs/ident.mli
- cp ../../typing/path.mli dynlink_compilerlibs/path.mli
- cp ../../typing/primitive.mli dynlink_compilerlibs/primitive.mli
- cp ../../typing/type_immediacy.mli dynlink_compilerlibs/type_immediacy.mli
- cp ../../typing/types.mli dynlink_compilerlibs/types.mli
- cp ../../typing/btype.mli dynlink_compilerlibs/btype.mli
- cp ../../typing/subst.mli dynlink_compilerlibs/subst.mli
- cp ../../typing/predef.mli dynlink_compilerlibs/predef.mli
- cp ../../typing/datarepr.mli dynlink_compilerlibs/datarepr.mli
- cp ../../file_formats/cmi_format.mli dynlink_compilerlibs/cmi_format.mli
- cp ../../typing/persistent_env.mli dynlink_compilerlibs/persistent_env.mli
- cp ../../typing/env.mli dynlink_compilerlibs/env.mli
- cp ../../lambda/debuginfo.mli dynlink_compilerlibs/debuginfo.mli
- cp ../../lambda/lambda.mli dynlink_compilerlibs/lambda.mli
- cp ../../lambda/runtimedef.mli dynlink_compilerlibs/runtimedef.mli
- cp ../../bytecomp/instruct.mli dynlink_compilerlibs/instruct.mli
- cp ../../bytecomp/opcodes.mli dynlink_compilerlibs/opcodes.mli
- cp ../../bytecomp/bytesections.mli dynlink_compilerlibs/bytesections.mli
- cp ../../bytecomp/dll.mli dynlink_compilerlibs/dll.mli
- cp ../../bytecomp/meta.mli dynlink_compilerlibs/meta.mli
- cp ../../bytecomp/symtable.mli dynlink_compilerlibs/symtable.mli
- cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.mli
- cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.mli
- cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.mli
- cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.mli
- cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.mli
- ../../boot/ocamlrun ../../boot/ocamlc -depend -slash -I dynlink_compilerlibs \
- dynlink_compilerlibs/binutils.ml dynlink_compilerlibs/config.ml dynlink_compilerlibs/build_path_prefix_map.ml dynlink_compilerlibs/misc.ml dynlink_compilerlibs/identifiable.ml dynlink_compilerlibs/numbers.ml dynlink_compilerlibs/arg_helper.ml dynlink_compilerlibs/clflags.ml dynlink_compilerlibs/profile.ml dynlink_compilerlibs/consistbl.ml dynlink_compilerlibs/terminfo.ml dynlink_compilerlibs/warnings.ml dynlink_compilerlibs/local_store.ml dynlink_compilerlibs/load_path.ml dynlink_compilerlibs/int_replace_polymorphic_compare.ml dynlink_compilerlibs/location.ml dynlink_compilerlibs/longident.ml dynlink_compilerlibs/docstrings.ml dynlink_compilerlibs/syntaxerr.ml dynlink_compilerlibs/ast_helper.ml dynlink_compilerlibs/ast_mapper.ml dynlink_compilerlibs/attr_helper.ml dynlink_compilerlibs/builtin_attributes.ml dynlink_compilerlibs/ident.ml dynlink_compilerlibs/path.ml dynlink_compilerlibs/primitive.ml dynlink_compilerlibs/type_immediacy.ml dynlink_compilerlibs/types.ml dynlink_compilerlibs/btype.ml dynlink_compilerlibs/subst.ml dynlink_compilerlibs/predef.ml dynlink_compilerlibs/datarepr.ml dynlink_compilerlibs/cmi_format.ml dynlink_compilerlibs/persistent_env.ml dynlink_compilerlibs/env.ml dynlink_compilerlibs/debuginfo.ml dynlink_compilerlibs/lambda.ml dynlink_compilerlibs/runtimedef.ml dynlink_compilerlibs/instruct.ml dynlink_compilerlibs/opcodes.ml dynlink_compilerlibs/bytesections.ml dynlink_compilerlibs/dll.ml dynlink_compilerlibs/meta.ml dynlink_compilerlibs/symtable.ml dynlink_compilerlibs/asttypes.ml dynlink_compilerlibs/parsetree.ml dynlink_compilerlibs/outcometree.ml dynlink_compilerlibs/cmo_format.ml dynlink_compilerlibs/cmxs_format.ml \
- dynlink_compilerlibs/binutils.mli dynlink_compilerlibs/config.mli dynlink_compilerlibs/build_path_prefix_map.mli dynlink_compilerlibs/misc.mli dynlink_compilerlibs/identifiable.mli dynlink_compilerlibs/numbers.mli dynlink_compilerlibs/arg_helper.mli dynlink_compilerlibs/clflags.mli dynlink_compilerlibs/profile.mli dynlink_compilerlibs/consistbl.mli dynlink_compilerlibs/terminfo.mli dynlink_compilerlibs/warnings.mli dynlink_compilerlibs/local_store.mli dynlink_compilerlibs/load_path.mli dynlink_compilerlibs/int_replace_polymorphic_compare.mli dynlink_compilerlibs/location.mli dynlink_compilerlibs/longident.mli dynlink_compilerlibs/docstrings.mli dynlink_compilerlibs/syntaxerr.mli dynlink_compilerlibs/ast_helper.mli dynlink_compilerlibs/ast_mapper.mli dynlink_compilerlibs/attr_helper.mli dynlink_compilerlibs/builtin_attributes.mli dynlink_compilerlibs/ident.mli dynlink_compilerlibs/path.mli dynlink_compilerlibs/primitive.mli dynlink_compilerlibs/type_immediacy.mli dynlink_compilerlibs/types.mli dynlink_compilerlibs/btype.mli dynlink_compilerlibs/subst.mli dynlink_compilerlibs/predef.mli dynlink_compilerlibs/datarepr.mli dynlink_compilerlibs/cmi_format.mli dynlink_compilerlibs/persistent_env.mli dynlink_compilerlibs/env.mli dynlink_compilerlibs/debuginfo.mli dynlink_compilerlibs/lambda.mli dynlink_compilerlibs/runtimedef.mli dynlink_compilerlibs/instruct.mli dynlink_compilerlibs/opcodes.mli dynlink_compilerlibs/bytesections.mli dynlink_compilerlibs/dll.mli dynlink_compilerlibs/meta.mli dynlink_compilerlibs/symtable.mli dynlink_compilerlibs/asttypes.mli dynlink_compilerlibs/parsetree.mli dynlink_compilerlibs/outcometree.mli dynlink_compilerlibs/cmo_format.mli dynlink_compilerlibs/cmxs_format.mli \
- > dynlink_compilerlibs/.depend
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmi dynlink_compilerlibs/binutils.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmo dynlink_compilerlibs/binutils.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmi dynlink_compilerlibs/config.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmo dynlink_compilerlibs/config.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmi dynlink_compilerlibs/build_path_prefix_map.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmo dynlink_compilerlibs/build_path_prefix_map.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmi dynlink_compilerlibs/misc.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmo dynlink_compilerlibs/misc.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmi dynlink_compilerlibs/identifiable.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmo dynlink_compilerlibs/identifiable.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmi dynlink_compilerlibs/numbers.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmo dynlink_compilerlibs/numbers.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmi dynlink_compilerlibs/arg_helper.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmo dynlink_compilerlibs/arg_helper.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmi dynlink_compilerlibs/profile.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmi dynlink_compilerlibs/clflags.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmo dynlink_compilerlibs/clflags.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmo dynlink_compilerlibs/profile.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmi dynlink_compilerlibs/consistbl.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmo dynlink_compilerlibs/consistbl.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmi dynlink_compilerlibs/terminfo.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmo dynlink_compilerlibs/terminfo.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmi dynlink_compilerlibs/warnings.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmo dynlink_compilerlibs/warnings.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmi dynlink_compilerlibs/local_store.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmo dynlink_compilerlibs/local_store.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmi dynlink_compilerlibs/load_path.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmo dynlink_compilerlibs/load_path.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmi dynlink_compilerlibs/int_replace_polymorphic_compare.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmo dynlink_compilerlibs/int_replace_polymorphic_compare.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmi dynlink_compilerlibs/location.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmo dynlink_compilerlibs/location.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmi dynlink_compilerlibs/longident.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmo dynlink_compilerlibs/longident.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmi dynlink_compilerlibs/asttypes.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmi dynlink_compilerlibs/parsetree.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmi dynlink_compilerlibs/docstrings.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmo dynlink_compilerlibs/docstrings.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmi dynlink_compilerlibs/syntaxerr.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmo dynlink_compilerlibs/syntaxerr.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmi dynlink_compilerlibs/ast_helper.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmo dynlink_compilerlibs/ast_helper.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmi dynlink_compilerlibs/ast_mapper.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmo dynlink_compilerlibs/ast_mapper.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmi dynlink_compilerlibs/attr_helper.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmo dynlink_compilerlibs/attr_helper.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmi dynlink_compilerlibs/builtin_attributes.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmo dynlink_compilerlibs/builtin_attributes.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmi dynlink_compilerlibs/ident.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmo dynlink_compilerlibs/ident.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmi dynlink_compilerlibs/path.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmo dynlink_compilerlibs/path.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmi dynlink_compilerlibs/type_immediacy.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmi dynlink_compilerlibs/outcometree.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmi dynlink_compilerlibs/primitive.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmo dynlink_compilerlibs/primitive.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmo dynlink_compilerlibs/type_immediacy.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmi dynlink_compilerlibs/types.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmo dynlink_compilerlibs/types.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmi dynlink_compilerlibs/btype.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmo dynlink_compilerlibs/btype.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmi dynlink_compilerlibs/subst.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmo dynlink_compilerlibs/subst.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmi dynlink_compilerlibs/predef.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmo dynlink_compilerlibs/predef.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmi dynlink_compilerlibs/datarepr.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmo dynlink_compilerlibs/datarepr.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmi dynlink_compilerlibs/cmi_format.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmo dynlink_compilerlibs/cmi_format.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmi dynlink_compilerlibs/persistent_env.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmo dynlink_compilerlibs/persistent_env.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmi dynlink_compilerlibs/env.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmo dynlink_compilerlibs/env.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmi dynlink_compilerlibs/debuginfo.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmo dynlink_compilerlibs/debuginfo.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmi dynlink_compilerlibs/lambda.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmo dynlink_compilerlibs/lambda.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmi dynlink_compilerlibs/runtimedef.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmo dynlink_compilerlibs/runtimedef.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmi dynlink_compilerlibs/instruct.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmo dynlink_compilerlibs/instruct.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmi dynlink_compilerlibs/opcodes.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmo dynlink_compilerlibs/opcodes.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmi dynlink_compilerlibs/bytesections.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmo dynlink_compilerlibs/bytesections.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmi dynlink_compilerlibs/dll.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmo dynlink_compilerlibs/dll.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmi dynlink_compilerlibs/meta.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmo dynlink_compilerlibs/meta.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmi dynlink_compilerlibs/cmo_format.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmi dynlink_compilerlibs/symtable.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmo dynlink_compilerlibs/symtable.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmo dynlink_compilerlibs/asttypes.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmo dynlink_compilerlibs/parsetree.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmo dynlink_compilerlibs/outcometree.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmo dynlink_compilerlibs/cmo_format.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmi dynlink_compilerlibs/cmxs_format.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte \
- -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmo dynlink_compilerlibs/cmxs_format.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte -pack -o byte/dynlink_compilerlibs.cmo dynlink_compilerlibs/binutils.cmo dynlink_compilerlibs/config.cmo dynlink_compilerlibs/build_path_prefix_map.cmo dynlink_compilerlibs/misc.cmo dynlink_compilerlibs/identifiable.cmo dynlink_compilerlibs/numbers.cmo dynlink_compilerlibs/arg_helper.cmo dynlink_compilerlibs/clflags.cmo dynlink_compilerlibs/profile.cmo dynlink_compilerlibs/consistbl.cmo dynlink_compilerlibs/terminfo.cmo dynlink_compilerlibs/warnings.cmo dynlink_compilerlibs/local_store.cmo dynlink_compilerlibs/load_path.cmo dynlink_compilerlibs/int_replace_polymorphic_compare.cmo dynlink_compilerlibs/location.cmo dynlink_compilerlibs/longident.cmo dynlink_compilerlibs/docstrings.cmo dynlink_compilerlibs/syntaxerr.cmo dynlink_compilerlibs/ast_helper.cmo dynlink_compilerlibs/ast_mapper.cmo dynlink_compilerlibs/attr_helper.cmo dynlink_compilerlibs/builtin_attributes.cmo dynlink_compilerlibs/ident.cmo dynlink_compilerlibs/path.cmo dynlink_compilerlibs/primitive.cmo dynlink_compilerlibs/type_immediacy.cmo dynlink_compilerlibs/types.cmo dynlink_compilerlibs/btype.cmo dynlink_compilerlibs/subst.cmo dynlink_compilerlibs/predef.cmo dynlink_compilerlibs/datarepr.cmo dynlink_compilerlibs/cmi_format.cmo dynlink_compilerlibs/persistent_env.cmo dynlink_compilerlibs/env.cmo dynlink_compilerlibs/debuginfo.cmo dynlink_compilerlibs/lambda.cmo dynlink_compilerlibs/runtimedef.cmo dynlink_compilerlibs/instruct.cmo dynlink_compilerlibs/opcodes.cmo dynlink_compilerlibs/bytesections.cmo dynlink_compilerlibs/dll.cmo dynlink_compilerlibs/meta.cmo dynlink_compilerlibs/symtable.cmo dynlink_compilerlibs/asttypes.cmo dynlink_compilerlibs/parsetree.cmo dynlink_compilerlibs/outcometree.cmo dynlink_compilerlibs/cmo_format.cmo dynlink_compilerlibs/cmxs_format.cmo
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte dynlink_types.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte dynlink_types.ml
- cp dynlink_platform_intf.ml dynlink_platform_intf.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte dynlink_platform_intf.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte dynlink_platform_intf.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte dynlink_common.mli
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte dynlink_common.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte dynlink.mli
- cp dynlink.cmi dynlink.mli byte/
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte byte/dynlink.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte -ccopt "-Wl,-E" -a -I byte -o dynlink.cma byte/dynlink_compilerlibs.cmo dynlink_types.cmo dynlink_platform_intf.cmo dynlink_common.cmo byte/dynlink.cmo
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66 -warn-error A -bin-annot -safe-string -strict-formats -I byte extract_crc.ml
- ../../boot/ocamlrun ../../ocamlc -g -nostdlib -I ../../stdlib -o extract_crc dynlink.cma byte/dynlink_compilerlibs.cmo extract_crc.cmo
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/dynlink'
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/unix'
- mkdir -p .dep
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime accept.c -MT 'accept.o' -MF .dep/accept.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime access.c -MT 'access.o' -MF .dep/access.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime addrofstr.c -MT 'addrofstr.o' -MF .dep/addrofstr.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime alarm.c -MT 'alarm.o' -MF .dep/alarm.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime bind.c -MT 'bind.o' -MF .dep/bind.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime channels.c -MT 'channels.o' -MF .dep/channels.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime chdir.c -MT 'chdir.o' -MF .dep/chdir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime chmod.c -MT 'chmod.o' -MF .dep/chmod.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime chown.c -MT 'chown.o' -MF .dep/chown.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime chroot.c -MT 'chroot.o' -MF .dep/chroot.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime close.c -MT 'close.o' -MF .dep/close.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime fsync.c -MT 'fsync.o' -MF .dep/fsync.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime closedir.c -MT 'closedir.o' -MF .dep/closedir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime connect.c -MT 'connect.o' -MF .dep/connect.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime cst2constr.c -MT 'cst2constr.o' -MF .dep/cst2constr.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime cstringv.c -MT 'cstringv.o' -MF .dep/cstringv.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime dup.c -MT 'dup.o' -MF .dep/dup.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime dup2.c -MT 'dup2.o' -MF .dep/dup2.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime envir.c -MT 'envir.o' -MF .dep/envir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime errmsg.c -MT 'errmsg.o' -MF .dep/errmsg.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime execv.c -MT 'execv.o' -MF .dep/execv.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime execve.c -MT 'execve.o' -MF .dep/execve.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime execvp.c -MT 'execvp.o' -MF .dep/execvp.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime exit.c -MT 'exit.o' -MF .dep/exit.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime fchmod.c -MT 'fchmod.o' -MF .dep/fchmod.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime fchown.c -MT 'fchown.o' -MF .dep/fchown.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime fcntl.c -MT 'fcntl.o' -MF .dep/fcntl.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime fork.c -MT 'fork.o' -MF .dep/fork.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime ftruncate.c -MT 'ftruncate.o' -MF .dep/ftruncate.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getaddrinfo.c -MT 'getaddrinfo.o' -MF .dep/getaddrinfo.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getcwd.c -MT 'getcwd.o' -MF .dep/getcwd.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getegid.c -MT 'getegid.o' -MF .dep/getegid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime geteuid.c -MT 'geteuid.o' -MF .dep/geteuid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getgid.c -MT 'getgid.o' -MF .dep/getgid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getgr.c -MT 'getgr.o' -MF .dep/getgr.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getgroups.c -MT 'getgroups.o' -MF .dep/getgroups.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime gethost.c -MT 'gethost.o' -MF .dep/gethost.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime gethostname.c -MT 'gethostname.o' -MF .dep/gethostname.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getlogin.c -MT 'getlogin.o' -MF .dep/getlogin.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getnameinfo.c -MT 'getnameinfo.o' -MF .dep/getnameinfo.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getpeername.c -MT 'getpeername.o' -MF .dep/getpeername.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getpid.c -MT 'getpid.o' -MF .dep/getpid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getppid.c -MT 'getppid.o' -MF .dep/getppid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getproto.c -MT 'getproto.o' -MF .dep/getproto.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getpw.c -MT 'getpw.o' -MF .dep/getpw.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime gettimeofday.c -MT 'gettimeofday.o' -MF .dep/gettimeofday.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getserv.c -MT 'getserv.o' -MF .dep/getserv.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getsockname.c -MT 'getsockname.o' -MF .dep/getsockname.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime getuid.c -MT 'getuid.o' -MF .dep/getuid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime gmtime.c -MT 'gmtime.o' -MF .dep/gmtime.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime initgroups.c -MT 'initgroups.o' -MF .dep/initgroups.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime isatty.c -MT 'isatty.o' -MF .dep/isatty.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime itimer.c -MT 'itimer.o' -MF .dep/itimer.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime kill.c -MT 'kill.o' -MF .dep/kill.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime link.c -MT 'link.o' -MF .dep/link.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime listen.c -MT 'listen.o' -MF .dep/listen.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime lockf.c -MT 'lockf.o' -MF .dep/lockf.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime lseek.c -MT 'lseek.o' -MF .dep/lseek.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime mkdir.c -MT 'mkdir.o' -MF .dep/mkdir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime mkfifo.c -MT 'mkfifo.o' -MF .dep/mkfifo.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime mmap.c -MT 'mmap.o' -MF .dep/mmap.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime mmap_ba.c -MT 'mmap_ba.o' -MF .dep/mmap_ba.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime nice.c -MT 'nice.o' -MF .dep/nice.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime open.c -MT 'open.o' -MF .dep/open.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime opendir.c -MT 'opendir.o' -MF .dep/opendir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime pipe.c -MT 'pipe.o' -MF .dep/pipe.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime putenv.c -MT 'putenv.o' -MF .dep/putenv.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime read.c -MT 'read.o' -MF .dep/read.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime readdir.c -MT 'readdir.o' -MF .dep/readdir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime readlink.c -MT 'readlink.o' -MF .dep/readlink.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime rename.c -MT 'rename.o' -MF .dep/rename.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime rewinddir.c -MT 'rewinddir.o' -MF .dep/rewinddir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime rmdir.c -MT 'rmdir.o' -MF .dep/rmdir.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime select.c -MT 'select.o' -MF .dep/select.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime sendrecv.c -MT 'sendrecv.o' -MF .dep/sendrecv.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime setgid.c -MT 'setgid.o' -MF .dep/setgid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime setgroups.c -MT 'setgroups.o' -MF .dep/setgroups.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime setsid.c -MT 'setsid.o' -MF .dep/setsid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime setuid.c -MT 'setuid.o' -MF .dep/setuid.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime shutdown.c -MT 'shutdown.o' -MF .dep/shutdown.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime signals.c -MT 'signals.o' -MF .dep/signals.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime sleep.c -MT 'sleep.o' -MF .dep/sleep.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime socket.c -MT 'socket.o' -MF .dep/socket.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime socketaddr.c -MT 'socketaddr.o' -MF .dep/socketaddr.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime socketpair.c -MT 'socketpair.o' -MF .dep/socketpair.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime sockopt.c -MT 'sockopt.o' -MF .dep/sockopt.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime spawn.c -MT 'spawn.o' -MF .dep/spawn.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime stat.c -MT 'stat.o' -MF .dep/stat.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime strofaddr.c -MT 'strofaddr.o' -MF .dep/strofaddr.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime symlink.c -MT 'symlink.o' -MF .dep/symlink.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime termios.c -MT 'termios.o' -MF .dep/termios.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime time.c -MT 'time.o' -MF .dep/time.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime times.c -MT 'times.o' -MF .dep/times.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime truncate.c -MT 'truncate.o' -MF .dep/truncate.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime umask.c -MT 'umask.o' -MF .dep/umask.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime unixsupport.c -MT 'unixsupport.o' -MF .dep/unixsupport.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime unlink.c -MT 'unlink.o' -MF .dep/unlink.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime utimes.c -MT 'utimes.o' -MF .dep/utimes.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime wait.c -MT 'wait.o' -MF .dep/wait.d
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime write.c -MT 'write.o' -MF .dep/write.d
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o accept.o accept.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o access.o access.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o addrofstr.o addrofstr.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o alarm.o alarm.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o bind.o bind.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o channels.o channels.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o chdir.o chdir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o chmod.o chmod.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o chown.o chown.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o chroot.o chroot.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o close.o close.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o fsync.o fsync.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o closedir.o closedir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o connect.o connect.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o cst2constr.o cst2constr.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o cstringv.o cstringv.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o dup.o dup.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o dup2.o dup2.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o envir.o envir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o errmsg.o errmsg.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o execv.o execv.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o execve.o execve.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o execvp.o execvp.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o exit.o exit.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o fchmod.o fchmod.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o fchown.o fchown.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o fcntl.o fcntl.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o fork.o fork.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o ftruncate.o ftruncate.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getaddrinfo.o getaddrinfo.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getcwd.o getcwd.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getegid.o getegid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o geteuid.o geteuid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getgid.o getgid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getgr.o getgr.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getgroups.o getgroups.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o gethost.o gethost.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o gethostname.o gethostname.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getlogin.o getlogin.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getnameinfo.o getnameinfo.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getpeername.o getpeername.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getpid.o getpid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getppid.o getppid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getproto.o getproto.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getpw.o getpw.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o gettimeofday.o gettimeofday.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getserv.o getserv.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getsockname.o getsockname.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o getuid.o getuid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o gmtime.o gmtime.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o initgroups.o initgroups.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o isatty.o isatty.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o itimer.o itimer.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o kill.o kill.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o link.o link.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o listen.o listen.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o lockf.o lockf.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o lseek.o lseek.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o mkdir.o mkdir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o mkfifo.o mkfifo.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o mmap.o mmap.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o mmap_ba.o mmap_ba.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o nice.o nice.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o open.o open.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o opendir.o opendir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o pipe.o pipe.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o putenv.o putenv.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o read.o read.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o readdir.o readdir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o readlink.o readlink.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o rename.o rename.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o rewinddir.o rewinddir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o rmdir.o rmdir.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o select.o select.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o sendrecv.o sendrecv.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o setgid.o setgid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o setgroups.o setgroups.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o setsid.o setsid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o setuid.o setuid.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o shutdown.o shutdown.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o signals.o signals.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o sleep.o sleep.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o socket.o socket.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o socketaddr.o socketaddr.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o socketpair.o socketpair.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o sockopt.o sockopt.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o spawn.o spawn.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o stat.o stat.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o strofaddr.o strofaddr.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o symlink.o symlink.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o termios.o termios.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o time.o time.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o times.o times.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o truncate.o truncate.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o umask.o umask.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o unixsupport.o unixsupport.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o unlink.o unlink.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o utimes.o utimes.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o wait.o wait.c
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o write.o write.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -oc unix accept.o access.o addrofstr.o alarm.o bind.o channels.o chdir.o chmod.o chown.o chroot.o close.o fsync.o closedir.o connect.o cst2constr.o cstringv.o dup.o dup2.o envir.o errmsg.o execv.o execve.o execvp.o exit.o fchmod.o fchown.o fcntl.o fork.o ftruncate.o getaddrinfo.o getcwd.o getegid.o geteuid.o getgid.o getgr.o getgroups.o gethost.o gethostname.o getlogin.o getnameinfo.o getpeername.o getpid.o getppid.o getproto.o getpw.o gettimeofday.o getserv.o getsockname.o getuid.o gmtime.o initgroups.o isatty.o itimer.o kill.o link.o listen.o lockf.o lseek.o mkdir.o mkfifo.o mmap.o mmap_ba.o nice.o open.o opendir.o pipe.o putenv.o read.o readdir.o readlink.o rename.o rewinddir.o rmdir.o select.o sendrecv.o setgid.o setgroups.o setsid.o setuid.o shutdown.o signals.o sleep.o socket.o socketaddr.o socketpair.o sockopt.o spawn.o stat.o strofaddr.o symlink.o termios.o time.o times.o truncate.o umask.o unixsupport.o unlink.o utimes.o wait.o write.o -lm
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unix.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unix.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels -pp "mawk -f ../../stdlib/expand_module_aliases.awk" unixLabels.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unixLabels.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
- unix.cmo unixLabels.cmo
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/unix'
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/bigarray'
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats bigarray.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats bigarray.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -o bigarray.cma -a -linkall bigarray.cmo
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/bigarray'
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/str'
- mkdir -p .dep
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime strstubs.c -MT 'strstubs.o' -MF .dep/strstubs.d
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o strstubs.o strstubs.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -oc camlstr strstubs.o
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats str.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats str.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
- str.cmo
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/str'
- make[2]: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/systhreads'
- mkdir -p .dep
- gcc -MM -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime st_stubs.c -MT 'st_stubs.b.o' -MF .dep/st_stubs.b.d
- gcc -c -O2 -fno-strict-aliasing -fwrapv -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -fno-tree-vrp -ffunction-sections -g -fPIC -pthread -Wno-format -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DCAML_NAME_SPACE -I../../runtime \
- -o st_stubs.b.o st_stubs.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -o threads st_stubs.b.o -lpthread
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string thread.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string thread.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string mutex.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string mutex.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string condition.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string condition.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string event.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string event.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string threadUnix.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string threadUnix.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string semaphore.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string semaphore.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o threads -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -cclib -lunix -linkall \
- -cclib -lpthread thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo semaphore.cmo
- make[2]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/systhreads'
- make[1]: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs'
- make: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/dynlink'
- /usr/bin/install -c -m 644 \
- dynlink.cmi dynlink.cma \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- /usr/bin/install -c -m 644 \
- dynlink.cmti dynlink.mli \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- /usr/bin/install -c extract_crc "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- make: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/dynlink'
- make: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/unix'
- if test -f dllunix.so; then \
- /usr/bin/install -c \
- dllunix.so "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/stublibs"; \
- fi
- /usr/bin/install -c -m 644 libunix.a "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- cd "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"; ranlib libunix.a
- /usr/bin/install -c -m 644 \
- unix.cma unix.cmi unixLabels.cmi \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- /usr/bin/install -c -m 644 \
- unix.mli unixLabels.mli \
- unix.cmti unixLabels.cmti \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- if test -n "unixsupport.h socketaddr.h"; then \
- /usr/bin/install -c -m 644 unixsupport.h socketaddr.h "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/caml/"; \
- fi
- make: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/unix'
- make: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/bigarray'
- if test -f dllbigarray.so; then \
- /usr/bin/install -c \
- dllbigarray.so "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/stublibs"; \
- fi
- /usr/bin/install -c -m 644 \
- bigarray.cma bigarray.cmi \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- /usr/bin/install -c -m 644 \
- bigarray.mli \
- bigarray.cmti \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- if test -n ""; then \
- /usr/bin/install -c -m 644 "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/caml/"; \
- fi
- make: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/bigarray'
- make: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/str'
- if test -f dllcamlstr.so; then \
- /usr/bin/install -c \
- dllcamlstr.so "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/stublibs"; \
- fi
- /usr/bin/install -c -m 644 libcamlstr.a "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- cd "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"; ranlib libcamlstr.a
- /usr/bin/install -c -m 644 \
- str.cma str.cmi \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- /usr/bin/install -c -m 644 \
- str.mli \
- str.cmti \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/"
- if test -n ""; then \
- /usr/bin/install -c -m 644 "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/caml/"; \
- fi
- make: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/str'
- make: Entering directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/systhreads'
- if test -f dllthreads.so; then \
- /usr/bin/install -c dllthreads.so "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/stublibs"; \
- fi
- /usr/bin/install -c -m 644 libthreads.a "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"
- cd "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml"; ranlib libthreads.a
- mkdir -p "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/threads"
- /usr/bin/install -c -m 644 \
- thread.cmi mutex.cmi condition.cmi event.cmi threadUnix.cmi semaphore.cmi threads.cma \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/threads"
- /usr/bin/install -c -m 644 \
- thread.cmti mutex.cmti condition.cmti event.cmti threadUnix.cmti semaphore.cmti \
- "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/threads"
- /usr/bin/install -c -m 644 thread.mli mutex.mli condition.mli event.mli threadUnix.mli semaphore.mli "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/threads"
- /usr/bin/install -c -m 644 threads.h "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/linux_x86_64/lib/ocaml/caml"
- make: Leaving directory '/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src/ocaml-1/otherlibs/systhreads'
Processing 4/4: [dkml-component-staging-ocamlrun: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "rm" "-rf" "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/share" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "rm" "-rf" "/home/opam/.opam/4.14/share/dkml-component-staging-ocamlrun/staging-files/src" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dkml-component-staging-ocamlrun.4.12.1~v1.0.2)
-> installed dkml-component-staging-ocamlrun.4.12.1~v1.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:23.33 ---> saved as "ae49c0e2f3be0221bacaec18d94907d17ee12f92feb508d351d4ef435d2be030"
Job succeeded
2026-01-13 19:24.13: Job succeeded