Build:
  1. 0
2026-02-26 12:37.04: New job: test ocaml-variants.5.1.0+options, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
                              on macos-homebrew-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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit e5f44b75d9fef9e17658ad0da2eb5f9a3445c951
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/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 -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-variants.5.1.0+options 5.1.0+options
RUN opam reinstall --update-invariant ocaml-variants.5.1.0+options; \
    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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-variants.5.1.0+options' && 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 ocaml-variants.5.1.0+options) || true
RUN opam reinstall --with-test --verbose --update-invariant ocaml-variants.5.1.0+options; \
    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 "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-variants.5.1.0+options' && 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-02-26 12:37.04: Using cache hint "macos-homebrew-ocaml-4.14-ocaml-variants.5.1.0+options-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-26 12:37.04: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -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 -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ocaml-variants.5.1.0+options 5.1.0+options"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-variants.5.1.0+options;\
             \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 \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-variants.5.1.0+options' && 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 ocaml-variants.5.1.0+options) || true"))
 (run (shell  "opam reinstall --with-test --verbose --update-invariant ocaml-variants.5.1.0+options;\
             \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 \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-variants.5.1.0+options' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-26 12:37.04: Waiting for resource in pool OCluster
2026-02-27 00:51.34: Waiting for worker…
2026-02-27 03:45.23: Got resource from pool OCluster
Building on i7-worker-04
All commits already cached
Updating files:  32% (6024/18323)
Updating files:  33% (6047/18323)
Updating files:  34% (6230/18323)
Updating files:  35% (6414/18323)
Updating files:  36% (6597/18323)
Updating files:  37% (6780/18323)
Updating files:  38% (6963/18323)
Updating files:  39% (7146/18323)
Updating files:  40% (7330/18323)
Updating files:  41% (7513/18323)
Updating files:  42% (7696/18323)
Updating files:  43% (7879/18323)
Updating files:  44% (8063/18323)
Updating files:  45% (8246/18323)
Updating files:  46% (8429/18323)
Updating files:  47% (8612/18323)
Updating files:  48% (8796/18323)
Updating files:  49% (8979/18323)
Updating files:  50% (9162/18323)
Updating files:  51% (9345/18323)
Updating files:  52% (9528/18323)
Updating files:  53% (9712/18323)
Updating files:  54% (9895/18323)
Updating files:  55% (10078/18323)
Updating files:  56% (10261/18323)
Updating files:  57% (10445/18323)
Updating files:  57% (10492/18323)
Updating files:  58% (10628/18323)
Updating files:  59% (10811/18323)
Updating files:  60% (10994/18323)
Updating files:  61% (11178/18323)
Updating files:  62% (11361/18323)
Updating files:  63% (11544/18323)
Updating files:  64% (11727/18323)
Updating files:  65% (11910/18323)
Updating files:  66% (12094/18323)
Updating files:  67% (12277/18323)
Updating files:  68% (12460/18323)
Updating files:  69% (12643/18323)
Updating files:  70% (12827/18323)
Updating files:  71% (13010/18323)
Updating files:  72% (13193/18323)
Updating files:  73% (13376/18323)
Updating files:  74% (13560/18323)
Updating files:  75% (13743/18323)
Updating files:  76% (13926/18323)
Updating files:  77% (14109/18323)
Updating files:  78% (14292/18323)
Updating files:  79% (14476/18323)
Updating files:  80% (14659/18323)
Updating files:  81% (14842/18323)
Updating files:  82% (15025/18323)
Updating files:  83% (15209/18323)
Updating files:  84% (15392/18323)
Updating files:  84% (15550/18323)
Updating files:  85% (15575/18323)
Updating files:  86% (15758/18323)
Updating files:  87% (15942/18323)
Updating files:  88% (16125/18323)
Updating files:  89% (16308/18323)
Updating files:  90% (16491/18323)
Updating files:  91% (16674/18323)
Updating files:  92% (16858/18323)
Updating files:  93% (17041/18323)
Updating files:  94% (17224/18323)
Updating files:  95% (17407/18323)
Updating files:  96% (17591/18323)
Updating files:  97% (17774/18323)
Updating files:  98% (17957/18323)
Updating files:  99% (18140/18323)
Updating files: 100% (18323/18323)
Updating files: 100% (18323/18323), done.
HEAD is now at e5f44b75d9 Merge pull request #29458 from dinosaure/release-vif-v0.0.1_beta2
Merge made by the 'ort' strategy.
 .../ocaml-base-compiler.3.07+1/opam                    |  1 +
 .../ocaml-base-compiler.3.07+2/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.3.07/opam  |  1 +
 .../ocaml-base-compiler.3.08.0/opam                    |  1 +
 .../ocaml-base-compiler.3.08.1/opam                    |  1 +
 .../ocaml-base-compiler.3.08.2/opam                    |  1 +
 .../ocaml-base-compiler.3.08.3/opam                    |  1 +
 .../ocaml-base-compiler.3.08.4/opam                    |  1 +
 .../ocaml-base-compiler.3.09.0/opam                    |  1 +
 .../ocaml-base-compiler.3.09.1/opam                    |  1 +
 .../ocaml-base-compiler.3.09.2/opam                    |  1 +
 .../ocaml-base-compiler.3.09.3/opam                    |  1 +
 .../ocaml-base-compiler.3.10.0/opam                    |  1 +
 .../ocaml-base-compiler.3.10.1/opam                    |  1 +
 .../ocaml-base-compiler.3.10.2/opam                    |  1 +
 .../ocaml-base-compiler.3.11.0/opam                    |  1 +
 .../ocaml-base-compiler.3.11.1/opam                    |  1 +
 .../ocaml-base-compiler.3.11.2/opam                    |  1 +
 .../ocaml-base-compiler.3.12.0/opam                    |  1 +
 .../ocaml-base-compiler.3.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.00.0/opam                    |  1 +
 .../ocaml-base-compiler.4.00.1/opam                    |  1 +
 .../ocaml-base-compiler.4.01.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.1/opam                    |  1 +
 .../ocaml-base-compiler.4.02.2/opam                    |  1 +
 .../ocaml-base-compiler.4.02.3/opam                    |  1 +
 .../ocaml-base-compiler.4.03.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.1/opam                    |  1 +
 .../ocaml-base-compiler.4.04.2/opam                    |  1 +
 .../ocaml-base-compiler.4.05.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.1/opam                    |  1 +
 .../ocaml-base-compiler.4.07.0/opam                    |  1 +
 .../ocaml-base-compiler.4.07.1/opam                    |  1 +
 .../ocaml-base-compiler.4.08.0/opam                    |  1 +
 .../ocaml-base-compiler.4.08.1/opam                    |  1 +
 .../ocaml-base-compiler.4.09.0/opam                    |  1 +
 .../ocaml-base-compiler.4.09.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.0/opam                    |  1 +
 .../ocaml-base-compiler.4.10.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.2/opam                    |  1 +
 .../ocaml-base-compiler.4.11.0/opam                    |  1 +
 .../ocaml-base-compiler.4.11.1/opam                    |  1 +
 .../ocaml-base-compiler.4.11.2/opam                    |  1 +
 .../ocaml-base-compiler.4.12.0/opam                    |  1 +
 .../ocaml-base-compiler.4.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.13.0/opam                    |  1 +
 .../ocaml-base-compiler.4.13.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.0/opam                    |  1 +
 .../ocaml-base-compiler.4.14.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2~rc1/opam                |  1 +
 .../ocaml-base-compiler.4.14.3/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  1 +
 .../ocaml-secondary-compiler.4.08.1-1/opam             |  1 +
 .../ocaml-secondary-compiler.4.08.1/opam               |  1 +
 .../ocaml-secondary-compiler.4.14.2/opam               |  1 +
 .../ocaml-variants.3.09.1+metaocaml/opam               |  1 +
 .../ocaml-variants.4.00.0+debug-runtime/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam |  1 +
 .../ocaml-variants.4.00.1+debug-runtime/opam           |  1 +
 .../ocaml-variants.4.00.1+open-types/opam              |  1 +
 .../ocaml-variants.4.00.1+raspberrypi/opam             |  1 +
 .../ocaml-variants.4.00.1+short-types/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam |  1 +
 .../ocaml-variants.4.01.0+armv6-freebsd/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam |  1 +
 .../ocaml-variants.4.01.0+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+musl/opam     |  1 +
 .../ocaml-variants.4.01.0+open-types/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+profile/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam |  1 +
 .../ocaml-variants.4.02.0+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam  |  1 +
 .../ocaml-variants.4.02.1+modular-implicits-ber/opam   |  1 +
 .../ocaml-variants.4.02.1+modular-implicits/opam       |  1 +
 .../ocaml-variants.4.02.1+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+musl/opam     |  1 +
 .../ocaml-variants.4.02.2+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam |  1 +
 .../ocaml-variants.4.02.3+buckle-master/opam           |  1 +
 .../ocaml-variants.4.02.3+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.02.3+curried-constr/opam          |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam  |  1 +
 .../ocaml-variants.4.02.3+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+musl/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.02.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+32bit/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+flambda/opam  |  1 +
 .../ocaml-variants.4.03.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam  |  1 +
 .../ocaml-variants.4.03.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam |  1 +
 .../ocaml-variants.4.04.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+flambda/opam  |  1 +
 .../ocaml-variants.4.04.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam  |  1 +
 .../ocaml-variants.4.04.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.0+trunk+forced_lto/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+32bit/opam    |  1 +
 .../ocaml-variants.4.04.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.04.1+copatterns/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+flambda/opam  |  1 +
 .../ocaml-variants.4.04.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam  |  1 +
 .../ocaml-variants.4.04.1+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+32bit/opam    |  1 +
 .../ocaml-variants.4.04.2+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+flambda/opam  |  1 +
 .../ocaml-variants.4.04.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam  |  1 +
 .../ocaml-variants.4.04.2+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.2+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam |  1 +
 .../ocaml-variants.4.05.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+flambda/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam |  1 +
 .../ocaml-variants.4.05.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.05.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.05.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.05.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.05.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.05.1+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.05.1+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.05.1+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam |  1 +
 .../ocaml-variants.4.05.1+trunk+safe-string/opam       |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam |  1 +
 .../ocaml-variants.4.06.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+flambda/opam  |  1 +
 .../ocaml-variants.4.06.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam  |  1 +
 .../ocaml-variants.4.06.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.06.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.06.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam |  1 +
 .../ocaml-variants.4.06.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.1+default-unsafe-string/opam   |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+flambda/opam  |  1 +
 .../ocaml-variants.4.06.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam |  1 +
 .../ocaml-variants.4.06.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.1+no-flat-float-array/opam     |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+rescript/opam |  1 +
 .../ocaml-variants.4.06.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+termux/opam   |  1 +
 .../ocaml-variants.4.06.2+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.06.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.06.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.06.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam |  1 +
 .../ocaml-variants.4.07.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+flambda/opam  |  1 +
 .../ocaml-variants.4.07.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam  |  1 +
 .../ocaml-variants.4.07.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam |  1 +
 .../ocaml-variants.4.07.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+flambda/opam  |  1 +
 .../ocaml-variants.4.07.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam  |  1 +
 .../ocaml-variants.4.07.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.07.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.07.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.07.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.07.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.07.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.07.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam |  1 +
 .../ocaml-variants.4.08.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+flambda/opam  |  1 +
 .../ocaml-variants.4.08.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam  |  1 +
 .../ocaml-variants.4.08.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.08.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam |  1 +
 .../ocaml-variants.4.08.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+flambda/opam  |  1 +
 .../ocaml-variants.4.08.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam  |  1 +
 .../ocaml-variants.4.08.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.08.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.08.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.08.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.08.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam |  1 +
 .../ocaml-variants.4.09.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+flambda/opam  |  1 +
 .../ocaml-variants.4.09.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam  |  1 +
 .../ocaml-variants.4.09.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+32bit/opam    |  1 +
 .../ocaml-variants.4.09.1+afl+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam |  1 +
 .../ocaml-variants.4.09.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+flambda/opam  |  1 +
 .../ocaml-variants.4.09.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam  |  1 +
 .../ocaml-variants.4.09.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.09.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.09.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.09.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam |  1 +
 .../ocaml-variants.4.10.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+flambda/opam  |  1 +
 .../ocaml-variants.4.10.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam  |  1 +
 .../ocaml-variants.4.10.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam |  1 +
 .../ocaml-variants.4.10.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.10.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam |  1 +
 .../ocaml-variants.4.10.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+flambda/opam  |  1 +
 .../ocaml-variants.4.10.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam  |  1 +
 .../ocaml-variants.4.10.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam  |  1 +
 .../ocaml-variants.4.10.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam |  1 +
 .../ocaml-variants.4.10.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+flambda/opam  |  1 +
 .../ocaml-variants.4.10.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam  |  1 +
 .../ocaml-variants.4.10.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+rescript/opam |  1 +
 .../ocaml-variants.4.10.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam |  1 +
 .../ocaml-variants.4.11.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+flambda/opam  |  1 +
 .../ocaml-variants.4.11.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam  |  1 +
 .../ocaml-variants.4.11.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+32bit/opam    |  1 +
 .../ocaml-variants.4.11.1+BER+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam |  1 +
 .../ocaml-variants.4.11.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+flambda/opam  |  1 +
 .../ocaml-variants.4.11.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam  |  1 +
 .../ocaml-variants.4.11.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam |  1 +
 .../ocaml-variants.4.11.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+flambda/opam  |  1 +
 .../ocaml-variants.4.11.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam  |  1 +
 .../ocaml-variants.4.11.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk/opam    |  1 +
 .../ocaml-variants.4.12.0+domains+effects/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+domains/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.13.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.14.0+options/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.14.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.2+options/opam  |  1 +
 .../ocaml-variants.4.14.2~rc1+options/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.14.3+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.5.0.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.0.1+trunk/opam     |  1 +
 .../ocaml-variants/ocaml-variants.5.1.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam |  1 +
 .../ocaml-variants.5.1.1+effect-syntax/opam            |  1 +
 .../ocaml-variants.5.1.1+flambda2+trunk/opam           |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam  |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.1.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.2.0+options/opam   |  1 +
 .../ocaml-variants.5.2.0+statmemprof/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.1+options/opam   |  1 +
 .../ocaml-variants.5.2.1~rc1+options/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam  |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.1/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.15.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.16.1/opam             |  1 +
 packages/ocamlfind/ocamlfind.1.8.0/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.8.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.2/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.3/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.5/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.6/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.8/opam                |  1 +
 packages/relocatable/relocatable.packages/opam         | 18 ++++++++++++++++++
 432 files changed, 464 insertions(+), 5 deletions(-)
 create mode 100644 packages/relocatable/relocatable.packages/opam

(from macos-homebrew-ocaml-4.14)
2026-02-27 03:45.29 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

/: (user (uid 1000) (gid 1000))

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-02-27 03:45.29 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-02-27 03:45.30 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (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=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 11
# repositories         1 (version-controlled)
# pinned               0
# current-switch       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "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       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-02-27 03:45.30 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-02-27 03:45.30 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-02-27 03:45.33 ---> using "5e3c30e6460d5b5415e408fb265934ba95730a9675e7051f57372cf908352db6" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-02-27 03:45.33 ---> using "fcf5f4e28af63adc3fa65fef01951ca704cba82ab283c4b98192abe730ca071d" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:80c194381e990a4967a1ae44b8242b688e6a17ab590865a38671137677411469
- #=#=#                                                                          

                                                                           0.7%
#                                                                          1.5%
#                                                                          2.5%
##                                                                         3.3%
###                                                                        4.3%
###                                                                        5.1%
####                                                                       6.1%
#####                                                                      7.0%
- 
#####                                                                      7.8%
######                                                                     8.8%
######                                                                     9.6%
#######                                                                   10.4%
########                                                                  11.3%
########                                                                  12.2%
#########                                                                 13.0%
##########                                                                14.0%
##########                                                                14.8%
###########                                                               15.6%
###########                                                               16.5%
- 
############                                                              17.5%
#############                                                             18.3%
#############                                                             19.1%
##############                                                            19.9%
###############                                                           20.9%
###############                                                           21.7%
################                                                          22.6%
################                                                          23.4%
#################                                                         24.3%
##################                                                        25.1%
##################                                                        26.0%
###################                                                       26.9%
- 
####################                                                      27.8%
####################                                                      28.7%
#####################                                                     29.6%
#####################                                                     30.4%
######################                                                    31.2%
#######################                                                   32.2%
#######################                                                   33.0%
########################                                                  33.8%
########################                                                  34.6%
#########################                                                 35.6%
##########################                                                36.4%
- 
##########################                                                37.2%
###########################                                               38.2%
############################                                              39.0%
############################                                              39.8%
#############################                                             40.7%
#############################                                             41.6%
##############################                                            42.4%
###############################                                           43.2%
###############################                                           44.1%
################################                                          44.9%
#################################                                         45.9%
- 
#################################                                         46.7%
##################################                                        47.5%
##################################                                        48.4%
###################################                                       49.3%
####################################                                      50.1%
####################################                                      50.9%
#####################################                                     51.9%
#####################################                                     52.7%
######################################                                    53.5%
#######################################                                   54.4%
#######################################                                   55.3%
- 
########################################                                  56.1%
########################################                                  56.9%
#########################################                                 57.9%
##########################################                                58.7%
##########################################                                59.5%
###########################################                               60.6%
############################################                              61.4%
############################################                              62.2%
#############################################                             63.0%
##############################################                            64.0%
##############################################                            64.8%
- 
###############################################                           65.7%
###############################################                           66.6%
################################################                          67.4%
#################################################                         68.2%
#################################################                         69.2%
##################################################                        70.0%
##################################################                        70.8%
###################################################                       71.7%
####################################################                      72.6%
####################################################                      73.6%
#####################################################                     74.4%
- 
######################################################                    75.2%
######################################################                    76.0%
#######################################################                   76.9%
########################################################                  77.9%
########################################################                  78.7%
#########################################################                 79.5%
#########################################################                 80.5%
##########################################################                81.3%
###########################################################               82.1%
###########################################################               83.1%
############################################################              83.9%
- 
############################################################              84.7%
#############################################################             85.7%
##############################################################            86.5%
##############################################################            87.4%
###############################################################           88.2%
################################################################          89.1%
################################################################          90.1%
#################################################################         90.9%
##################################################################        91.7%
##################################################################        92.7%
###################################################################       93.5%
- 
###################################################################       94.4%
####################################################################      95.2%
#####################################################################     96.0%
#####################################################################     96.9%
######################################################################    97.8%
######################################################################    98.6%
#######################################################################   99.4%
######################################################################## 100.0%
- ==> Pouring portable-ruby-3.4.8.catalina.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-02-27 03:45.33 ---> using "107c5082bce5ad3a3e0b440314e2dc0bb47def0de8aef1aa453b2f1deeaf95c0" from cache

/: (run (shell "opam pin add -k version -yn ocaml-variants.5.1.0+options 5.1.0+options"))
ocaml-variants is now pinned to version 5.1.0+options
2026-02-27 03:45.34 ---> using "6af06b2ce4fc4680a28cc90524637f7670a6328d4525b3ec5232312301a4653b" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall --update-invariant ocaml-variants.5.1.0+options;\
               \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 \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'ocaml-variants.5.1.0+options' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
ocaml-variants.5.1.0+options is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove  ocaml-base-compiler 4.14.2                 [conflicts with ocaml-variants]
=== upgrade 2 packages
  - upgrade ocaml               4.14.2 to 5.1.0        [uses ocaml-variants]
  - upgrade ocaml-config        2 to 3                 [uses ocaml-variants]
=== install 3 packages
  - install base-domains        base
  - install base-nnp            base
  - install ocaml-variants      5.1.0+options (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   ocaml.4.14.2
-> removed   ocaml-config.2
-> removed   ocaml-base-compiler.4.14.2
-> retrieved ocaml-config.3  (cached)
-> retrieved ocaml-variants.5.1.0+options  (cached)
-> installed ocaml-variants.5.1.0+options
-> installed ocaml-config.3
-> installed ocaml.5.1.0
-> installed base-domains.base
-> installed base-nnp.base
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.1.0+options"} | "ocaml-system" {= "4.14.2"}]
       Use `opam switch set-invariant' to change it.
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:45.34 ---> using "01cdfbbd5d2c089c1a5bad8e720938009742ed613406c5a441b8923500a0d5b7" from cache

/: (run (network host)
        (shell "(opam reinstall --with-test ocaml-variants.5.1.0+options) || true"))
The following actions will be performed:
=== recompile 5 packages
  - recompile base-domains   base                   [uses ocaml]
  - recompile base-nnp       base                   [uses base-domains]
  - recompile ocaml          5.1.0                  [uses ocaml-variants]
  - recompile ocaml-config   3                      [uses ocaml-variants]
  - recompile ocaml-variants 5.1.0+options (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-config.3  (2 extra sources)
-> retrieved ocaml-config.3  (2 extra sources)
-> retrieved ocaml-variants.5.1.0+options  (https://github.com/ocaml/ocaml/archive/5.1.0.tar.gz)
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   ocaml.5.1.0
-> removed   ocaml-config.3
-> removed   ocaml-variants.5.1.0+options
-> installed ocaml-variants.5.1.0+options
-> installed ocaml-config.3
-> installed ocaml.5.1.0
-> installed base-domains.base
-> installed base-nnp.base
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:48.25 ---> saved as "7b9438893d96448206d7535f9d606eaf7a9a08097d2c663ab740a85956525454"

/: (run (shell  "opam reinstall --with-test --verbose --update-invariant ocaml-variants.5.1.0+options;\
               \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 \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'ocaml-variants.5.1.0+options' && 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 5 packages
  - recompile base-domains   base                   [uses ocaml]
  - recompile base-nnp       base                   [uses base-domains]
  - recompile ocaml          5.1.0                  [uses ocaml-variants]
  - recompile ocaml-config   3                      [uses ocaml-variants]
  - recompile ocaml-variants 5.1.0+options (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-config.3  (cached)
Processing  5/20: [ocaml-variants.5.1.0+options: extract]
-> retrieved ocaml-variants.5.1.0+options  (cached)
[ocaml-variants: patch] applying zstd-detection.patch
Processing  6/20: [ocaml-variants: ./configure]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix=/Users/mac1000/.opam/4.14.2" "--docdir=/Users/mac1000/.opam/4.14.2/doc/ocaml" "-C" "CC=cc" "--disable-warn-error" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.5.1.0+options)
- configure: creating cache config.cache
- configure: Configuring OCaml version 5.1.0
- checking build system type... x86_64-apple-darwin24.5.0
- checking host system type... x86_64-apple-darwin24.5.0
- checking target system type... x86_64-apple-darwin24.5.0
- checking for ld... ld
- checking how to print strings... printf
- checking for gcc... cc
- 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 the compiler supports GNU C... yes
- checking whether cc accepts -g... yes
- checking for cc option to enable C11 features... 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 cc... ld
- checking if the linker (ld) is GNU ld... no
- checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
- checking the name lister (/usr/bin/nm -B) interface... BSD nm
- checking whether ln -s works... yes
- checking the maximum length of command line arguments... 786432
- checking how to convert x86_64-apple-darwin24.5.0 file names to x86_64-apple-darwin24.5.0 format... func_convert_file_noop
- checking how to convert x86_64-apple-darwin24.5.0 file names to toolchain format... func_convert_file_noop
- checking for ld option to reload object files... -r
- checking for objdump... objdump
- checking how to recognize dependent libraries... pass_all
- checking for dlltool... no
- checking how to associate runtime and link libraries... printf %s\n
- checking for ar... ar
- checking for archiver @FILE support... no
- checking for strip... strip
- checking for ranlib... ranlib
- checking for gawk... no
- checking for mawk... no
- checking for nawk... no
- checking for awk... awk
- checking command to parse /usr/bin/nm -B output from cc object... 
- ok
- checking for sysroot... no
- checking for a working dd... /bin/dd
- checking how to truncate binary pipes... /bin/dd bs=4096 count=1
- checking for mt... no
- checking if : is a manifest tool... no
- checking for dsymutil... dsymutil
- checking for nmedit... nmedit
- checking for lipo... lipo
- checking for otool... otool
- checking for otool64... no
- checking for -single_module linker flag... ld: warning: -single_module is obsolete
- no
- checking for -exported_symbols_list linker flag... yes
- checking for -force_load linker flag... yes
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... 
- yes
- checking for strings.h... yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking for dlfcn.h... yes
- checking for objdir... .libs
- checking if cc supports -fno-rtti -fno-exceptions... yes
- checking for cc option to produce PIC... -fno-common -DPIC
- checking if cc PIC flag -fno-common -DPIC works... yes
- checking if cc static flag -static works... no
- checking if cc supports -c -o file.o... yes
- checking if cc supports -c -o file.o... (cached) yes
- checking whether the cc linker (ld) supports shared libraries... yes
- checking dynamic linker characteristics... darwin24.5.0 dyld
- 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 how to run the C preprocessor... cc -E
- checking C compiler vendor... clang-17-0
- checking whether host executables can be run in the build... yes
- checking whether #! works in shell scripts... yes
- checking for flexdll sources... checking for flexlink... no
- checking for flexdll.h... no
- checking for a BSD-compatible install... /usr/bin/install -c
- checking for library containing cos... none required
- checking for math.h... yes
- checking for unistd.h... (cached) yes
- checking for stdint.h... (cached) yes
- checking for pthread_np.h... no
- checking for dirent.h... yes
- checking for sys/select.h... yes
- checking for stdatomic.h... yes
- checking for sys/mman.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 _Atomic types... yes
- checking whether the C compiler supports __attribute__((aligned(n)))... yes
- checking whether the C compiler supports __attribute__((optimize("tree-vectorize")))... no
- checking for ld... ld
- 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 exp2... 
- yes
- checking for log2... yes
- checking for cbrt... yes
- checking for acosh... yes
- checking for asinh... yes
- checking for atanh... yes
- checking for erf... yes
- checking for erfc... yes
- checking for trunc... yes
- checking for round... 
- yes
- checking for copysign... yes
- checking whether round works... yes
- checking whether fma works... yes
- checking for cc options needed to detect all undeclared functions... none needed
- checking for unistd.h... (cached) yes
- checking whether getentropy is declared... no
- checking for getrusage... yes
- checking for times... yes
- checking for secure_getenv... no
- checking for __secure_getenv... no
- checking for issetugid... 
- yes
- checking for mach_timebase_info... yes
- checking for mach_absolute_time... yes
- 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 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 realpath... yes
- checking for waitpid... yes
- checking for wait4... yes
- checking for getgroups... yes
- checking for setgroups... yes
- checking for initgroups... 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 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 for locale.h... yes
- checking for newlocale... yes
- checking for freelocale... yes
- checking for uselocale... yes
- checking for xlocale.h... yes
- checking for newlocale... (cached) yes
- checking for freelocale... (cached) yes
- checking for uselocale... (cached) yes
- checking for strtod_l... yes
- checking for dlopen... yes
- configure: Dynamic loading of shared libraries is supported.
- checking for sys/mman.h... (cached) 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... no
- checking for struct stat.st_atimespec.tv_nsec... yes
- configure: stat supports nanosecond precision
- checking how many arguments gethostbyname_r() takes... can't tell
- checking how many arguments gethostbyaddr_r() takes... can't tell
- checking for mkstemp... yes
- checking for nice... yes
- checking for dup3... 
- no
- checking for pipe2... no
- checking for accept4... no
- checking for getauxval... no
- checking for sys/shm.h... yes
- checking for shmat... yes
- checking for execvpe... no
- checking for spawn.h... yes
- checking for posix_spawn... yes
- checking for posix_spawnp... yes
- checking for ffs... 
- yes
- checking for _BitScanForward... no
- checking arguments for pthread_getaffinity_np... pthread_getaffinity_np not found
- checking for pkg-config... no
- checking for ZSTD_createCCtx in -lzstd... no
- configure: WARNING: zstd library not found
- configure: WARNING: compressed marshaling not supported
- configure: replay debugger supported
- checking whether cc is Clang... yes
- checking whether pthreads work with "-pthread" and "-lpthread"... yes
- checking whether Clang needs flag to prevent "argument unused" warning when linking with -pthread... no
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking whether more special flags are required for pthreads... no
- checking for PTHREAD_PRIO_INHERIT... yes
- checking for sigwait... 
- yes
- configure: the threads library is supported
- checking whether the assembler supports --debug-prefix-map... no
- checking whether the assembler supports CFI directives... yes
- configure: not using frame pointers
- checking whether mmap supports huge pages... no
- checking whether mmap supports MAP_STACK... no
- configure: No support for function sections on x86_64-apple-darwin24.5.0.
- configure: Disabling function sections.
- configure: updating cache config.cache
- configure: creating ./config.status
- config.status: creating Makefile.build_config
- config.status: creating Makefile.config
- config.status: creating stdlib/sys.ml
- config.status: creating manual/src/version.tex
- config.status: creating manual/src/html_processing/src/common.ml
- config.status: creating ocamltest/ocamltest_config.ml
- config.status: creating utils/config.generated.ml
- config.status: creating compilerlibs/META
- config.status: creating otherlibs/dynlink/META
- config.status: creating otherlibs/runtime_events/META
- config.status: creating stdlib/META
- config.status: creating otherlibs/unix/META
- config.status: creating otherlibs/str/META
- config.status: creating otherlibs/systhreads/META
- config.status: creating ocamldoc/META
- config.status: creating runtime/caml/m.h
- config.status: creating runtime/caml/s.h
- config.status: creating runtime/caml/version.h
- config.status: executing libtool commands
Processing  6/20: [ocaml-variants: make]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j11" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.5.1.0+options)
-   CC runtime/sak.o
-   MKEXE runtime/sak
- /Library/Developer/CommandLineTools/usr/bin/make coldstart
- /Library/Developer/CommandLineTools/usr/bin/make runtime-all
-   GEN runtime/ld.conf
-   GEN runtime/caml/opnames.h
-   GEN runtime/caml/jumptbl.h
-   GEN runtime/build_config.h
-   GEN runtime/primitives
-   CC runtime/addrmap.b.o
-   CC runtime/afl.b.o
-   CC runtime/alloc.b.o
-   CC runtime/array.b.o
-   CC runtime/backtrace.b.o
-   CC runtime/bigarray.b.o
-   CC runtime/callback.b.o
-   CC runtime/codefrag.b.o
-   CC runtime/compare.b.o
-   CC runtime/custom.b.o
-   CC runtime/debugger.b.o
-   CC runtime/domain.b.o
-   CC runtime/dynlink.b.o
-   CC runtime/extern.b.o
-   CC runtime/fiber.b.o
-   CC runtime/finalise.b.o
-   CC runtime/floats.b.o
-   CC runtime/gc_ctrl.b.o
-   CC runtime/gc_stats.b.o
-   CC runtime/globroots.b.o
-   CC runtime/hash.b.o
-   CC runtime/intern.b.o
-   CC runtime/ints.b.o
-   CC runtime/io.b.o
-   CC runtime/lexing.b.o
-   CC runtime/lf_skiplist.b.o
-   CC runtime/main.b.o
-   CC runtime/major_gc.b.o
-   CC runtime/md5.b.o
-   CC runtime/memory.b.o
-   CC runtime/memprof.b.o
-   CC runtime/meta.b.o
-   CC runtime/minor_gc.b.o
-   CC runtime/misc.b.o
-   CC runtime/obj.b.o
-   CC runtime/parsing.b.o
-   CC runtime/platform.b.o
-   CC runtime/printexc.b.o
-   CC runtime/prng.b.o
-   CC runtime/roots.b.o
-   CC runtime/runtime_events.b.o
-   CC runtime/shared_heap.b.o
-   CC runtime/signals.b.o
-   CC runtime/skiplist.b.o
-   CC runtime/startup_aux.b.o
-   CC runtime/str.b.o
-   CC runtime/sync.b.o
-   CC runtime/sys.b.o
-   CC runtime/unix.b.o
-   CC runtime/weak.b.o
-   CC runtime/backtrace_byt.b.o
-   CC runtime/fail_byt.b.o
-   CC runtime/fix_code.b.o
-   CC runtime/interp.b.o
-   CC runtime/startup_byt.b.o
-   CC runtime/addrmap.bd.o
-   CC runtime/afl.bd.o
-   CC runtime/alloc.bd.o
-   CC runtime/array.bd.o
-   CC runtime/backtrace.bd.o
-   CC runtime/bigarray.bd.o
-   CC runtime/callback.bd.o
-   CC runtime/codefrag.bd.o
-   CC runtime/compare.bd.o
-   CC runtime/custom.bd.o
-   CC runtime/debugger.bd.o
-   CC runtime/domain.bd.o
-   CC runtime/dynlink.bd.o
-   CC runtime/extern.bd.o
-   CC runtime/fiber.bd.o
-   CC runtime/finalise.bd.o
-   CC runtime/floats.bd.o
-   CC runtime/gc_ctrl.bd.o
-   CC runtime/gc_stats.bd.o
-   CC runtime/globroots.bd.o
-   CC runtime/hash.bd.o
-   CC runtime/intern.bd.o
-   CC runtime/ints.bd.o
-   CC runtime/io.bd.o
-   CC runtime/lexing.bd.o
-   CC runtime/lf_skiplist.bd.o
-   CC runtime/main.bd.o
-   CC runtime/major_gc.bd.o
-   CC runtime/md5.bd.o
-   CC runtime/memory.bd.o
-   CC runtime/memprof.bd.o
-   CC runtime/meta.bd.o
-   CC runtime/minor_gc.bd.o
-   CC runtime/misc.bd.o
-   CC runtime/obj.bd.o
-   CC runtime/parsing.bd.o
-   CC runtime/platform.bd.o
-   CC runtime/printexc.bd.o
-   CC runtime/prng.bd.o
-   CC runtime/roots.bd.o
-   CC runtime/runtime_events.bd.o
-   CC runtime/shared_heap.bd.o
-   CC runtime/signals.bd.o
-   CC runtime/skiplist.bd.o
-   CC runtime/startup_aux.bd.o
-   CC runtime/str.bd.o
-   CC runtime/sync.bd.o
-   CC runtime/sys.bd.o
-   CC runtime/unix.bd.o
-   CC runtime/weak.bd.o
-   CC runtime/backtrace_byt.bd.o
-   CC runtime/fail_byt.bd.o
-   CC runtime/fix_code.bd.o
-   CC runtime/interp.bd.o
-   CC runtime/startup_byt.bd.o
-   CC runtime/instrtrace.bd.o
-   CC runtime/addrmap.bi.o
-   CC runtime/afl.bi.o
-   CC runtime/alloc.bi.o
-   CC runtime/array.bi.o
-   CC runtime/backtrace.bi.o
-   CC runtime/bigarray.bi.o
-   CC runtime/callback.bi.o
-   CC runtime/codefrag.bi.o
-   CC runtime/compare.bi.o
-   CC runtime/custom.bi.o
-   CC runtime/debugger.bi.o
-   CC runtime/domain.bi.o
-   CC runtime/dynlink.bi.o
-   CC runtime/extern.bi.o
-   CC runtime/fiber.bi.o
-   CC runtime/finalise.bi.o
-   CC runtime/floats.bi.o
-   CC runtime/gc_ctrl.bi.o
-   CC runtime/gc_stats.bi.o
-   CC runtime/globroots.bi.o
-   CC runtime/hash.bi.o
-   CC runtime/intern.bi.o
-   CC runtime/ints.bi.o
-   CC runtime/io.bi.o
-   CC runtime/lexing.bi.o
-   CC runtime/lf_skiplist.bi.o
-   CC runtime/main.bi.o
-   CC runtime/major_gc.bi.o
-   CC runtime/md5.bi.o
-   CC runtime/memory.bi.o
-   CC runtime/memprof.bi.o
-   CC runtime/meta.bi.o
-   CC runtime/minor_gc.bi.o
-   CC runtime/misc.bi.o
-   CC runtime/obj.bi.o
-   CC runtime/parsing.bi.o
-   CC runtime/platform.bi.o
-   CC runtime/printexc.bi.o
-   CC runtime/prng.bi.o
-   CC runtime/roots.bi.o
-   CC runtime/runtime_events.bi.o
-   CC runtime/shared_heap.bi.o
-   CC runtime/signals.bi.o
-   CC runtime/skiplist.bi.o
-   CC runtime/startup_aux.bi.o
-   CC runtime/str.bi.o
-   CC runtime/sync.bi.o
-   CC runtime/sys.bi.o
-   CC runtime/unix.bi.o
-   CC runtime/weak.bi.o
-   CC runtime/backtrace_byt.bi.o
-   CC runtime/fail_byt.bi.o
-   CC runtime/fix_code.bi.o
-   CC runtime/interp.bi.o
-   CC runtime/startup_byt.bi.o
-   CC runtime/addrmap.bpic.o
-   CC runtime/afl.bpic.o
-   CC runtime/alloc.bpic.o
-   CC runtime/array.bpic.o
-   CC runtime/backtrace.bpic.o
-   CC runtime/bigarray.bpic.o
-   CC runtime/callback.bpic.o
-   CC runtime/codefrag.bpic.o
-   CC runtime/compare.bpic.o
-   CC runtime/custom.bpic.o
-   CC runtime/debugger.bpic.o
-   CC runtime/domain.bpic.o
-   CC runtime/dynlink.bpic.o
-   CC runtime/extern.bpic.o
-   CC runtime/fiber.bpic.o
-   CC runtime/finalise.bpic.o
-   CC runtime/floats.bpic.o
-   CC runtime/gc_ctrl.bpic.o
-   CC runtime/gc_stats.bpic.o
-   CC runtime/globroots.bpic.o
-   CC runtime/hash.bpic.o
-   CC runtime/intern.bpic.o
-   CC runtime/ints.bpic.o
-   CC runtime/io.bpic.o
-   CC runtime/lexing.bpic.o
-   CC runtime/lf_skiplist.bpic.o
-   CC runtime/main.bpic.o
-   CC runtime/major_gc.bpic.o
-   CC runtime/md5.bpic.o
-   CC runtime/memory.bpic.o
-   CC runtime/memprof.bpic.o
-   CC runtime/meta.bpic.o
-   CC runtime/minor_gc.bpic.o
-   CC runtime/misc.bpic.o
-   CC runtime/obj.bpic.o
-   CC runtime/parsing.bpic.o
-   CC runtime/platform.bpic.o
-   CC runtime/printexc.bpic.o
-   CC runtime/prng.bpic.o
-   CC runtime/roots.bpic.o
-   CC runtime/runtime_events.bpic.o
-   CC runtime/shared_heap.bpic.o
-   CC runtime/signals.bpic.o
-   CC runtime/skiplist.bpic.o
-   CC runtime/startup_aux.bpic.o
-   CC runtime/str.bpic.o
-   CC runtime/sync.bpic.o
-   CC runtime/sys.bpic.o
-   CC runtime/unix.bpic.o
-   CC runtime/weak.bpic.o
-   CC runtime/backtrace_byt.bpic.o
-   CC runtime/fail_byt.bpic.o
-   CC runtime/fix_code.bpic.o
-   CC runtime/interp.bpic.o
-   CC runtime/startup_byt.bpic.o
-   GEN runtime/prims.c
-   MKLIB runtime/libcamlrun.a
-   MKLIB runtime/libcamlrund.a
-   MKLIB runtime/libcamlruni.a
-   CC runtime/prims.o
-   MKEXE runtime/ocamlrun
-   MKEXE runtime/ocamlrund
-   MKEXE runtime/ocamlruni
-   MKLIB runtime/libcamlrun_pic.a
-   MKDLL runtime/libcamlrun_shared.so
- /Library/Developer/CommandLineTools/usr/bin/make -C stdlib \
- 	  OCAMLRUN='$(ROOTDIR)/runtime/ocamlrun' \
- 	  CAMLC='$(BOOT_OCAMLC) -use-prims ../runtime/primitives' all
-   OCAMLC camlinternalFormatBasics.cmi
-   GEN camlheader
-   GEN target_camlheader
-   GEN camlheader_ur
-   GEN camlheaderd
-   GEN target_camlheaderd
-   GEN camlheaderi
-   GEN target_camlheaderi
-   OCAMLC camlinternalFormatBasics.cmo
-   OCAMLC stdlib.cmi
-   OCAMLC stdlib.cmo
-   OCAMLC stdlib__Either.cmi
-   OCAMLC stdlib__Sys.cmi
-   OCAMLC stdlib__Nativeint.cmi
-   OCAMLC stdlib__Int32.cmi
-   OCAMLC stdlib__Type.cmi
-   OCAMLC stdlib__Atomic.cmi
-   OCAMLC camlinternalLazy.cmi
-   OCAMLC stdlib__Seq.cmi
-   OCAMLC stdlib__Bool.cmi
-   OCAMLC stdlib__Char.cmi
-   OCAMLC stdlib__Uchar.cmi
-   OCAMLC stdlib__Int.cmi
-   OCAMLC stdlib__Unit.cmi
-   OCAMLC stdlib__Marshal.cmi
-   OCAMLC stdlib__Int32.cmo
-   OCAMLC stdlib__Int64.cmi
-   OCAMLC stdlib__Nativeint.cmo
-   OCAMLC stdlib__Lexing.cmi
-   OCAMLC stdlib__Set.cmi
-   OCAMLC stdlib__Map.cmi
-   OCAMLC stdlib__Stack.cmi
-   OCAMLC stdlib__Queue.cmi
-   OCAMLC stdlib__Buffer.cmi
-   OCAMLC stdlib__Mutex.cmi
-   OCAMLC stdlib__Semaphore.cmi
-   OCAMLC stdlib__Domain.cmi
-   OCAMLC stdlib__Arg.cmi
-   OCAMLC stdlib__Fun.cmi
-   OCAMLC stdlib__Digest.cmi
-   OCAMLC stdlib__Complex.cmi
-   OCAMLC stdlib__Random.cmi
-   OCAMLC stdlib__Hashtbl.cmi
-   OCAMLC stdlib__Format.cmi
-   OCAMLC stdlib__Scanf.cmi
-   OCAMLC stdlib__Callback.cmi
-   OCAMLC stdlib__Filename.cmi
-   OCAMLC stdlib__ArrayLabels.cmi
-   OCAMLC stdlib__ListLabels.cmi
-   OCAMLC stdlib__BytesLabels.cmi
-   OCAMLC stdlib__StringLabels.cmi
-   OCAMLC stdlib__In_channel.cmi
-   OCAMLC stdlib__Out_channel.cmi
-   OCAMLC std_exit.cmi
-   OCAMLC stdlib__Either.cmo
-   OCAMLC stdlib__Sys.cmo
-   OCAMLC stdlib__Obj.cmi
-   OCAMLC stdlib__Atomic.cmo
-   OCAMLC stdlib__Lazy.cmi
-   OCAMLC stdlib__Option.cmi
-   OCAMLC stdlib__Result.cmi
-   OCAMLC stdlib__Bool.cmo
-   OCAMLC stdlib__Char.cmo
-   OCAMLC stdlib__Uchar.cmo
-   OCAMLC stdlib__List.cmi
-   OCAMLC stdlib__Int.cmo
-   OCAMLC stdlib__Bytes.cmi
-   OCAMLC stdlib__String.cmi
-   OCAMLC stdlib__Unit.cmo
-   OCAMLC stdlib__Array.cmi
-   OCAMLC stdlib__Float.cmi
-   OCAMLC stdlib__Int64.cmo
-   OCAMLC stdlib__Parsing.cmi
-   OCAMLC stdlib__Set.cmo
-   OCAMLC stdlib__Map.cmo
-   OCAMLC stdlib__Stack.cmo
-   OCAMLC stdlib__Queue.cmo
-   OCAMLC stdlib__Buffer.cmo
-   OCAMLC stdlib__Mutex.cmo
-   OCAMLC stdlib__Condition.cmi
-   OCAMLC camlinternalFormat.cmi
-   OCAMLC stdlib__Printf.cmi
-   OCAMLC stdlib__Printexc.cmi
-   OCAMLC stdlib__Digest.cmo
-   OCAMLC stdlib__Bigarray.cmi
-   OCAMLC stdlib__Hashtbl.cmo
-   OCAMLC stdlib__Weak.cmi
-   OCAMLC stdlib__Callback.cmo
-   OCAMLC camlinternalOO.cmi
-   OCAMLC camlinternalMod.cmi
-   OCAMLC stdlib__Ephemeron.cmi
-   OCAMLC stdlib__Filename.cmo
-   OCAMLC stdlib__Complex.cmo
-   OCAMLC stdlib__ArrayLabels.cmo
-   OCAMLC stdlib__ListLabels.cmo
-   OCAMLC stdlib__BytesLabels.cmo
-   OCAMLC stdlib__StringLabels.cmo
-   OCAMLC stdlib__MoreLabels.cmi
-   OCAMLC stdlib__StdLabels.cmi
-   OCAMLC stdlib__In_channel.cmo
-   OCAMLC stdlib__Out_channel.cmo
-   OCAMLC stdlib__Effect.cmi
-   OCAMLC std_exit.cmo
-   OCAMLC stdlib__Obj.cmo
-   OCAMLC stdlib__Type.cmo
-   OCAMLC camlinternalLazy.cmo
-   OCAMLC stdlib__Lazy.cmo
-   OCAMLC stdlib__Seq.cmo
-   OCAMLC stdlib__Option.cmo
-   OCAMLC stdlib__Result.cmo
-   OCAMLC stdlib__List.cmo
-   OCAMLC stdlib__Bytes.cmo
-   OCAMLC stdlib__String.cmo
-   OCAMLC stdlib__Marshal.cmo
-   OCAMLC stdlib__Array.cmo
-   OCAMLC stdlib__Float.cmo
-   OCAMLC stdlib__Lexing.cmo
-   OCAMLC stdlib__Parsing.cmo
-   OCAMLC stdlib__Condition.cmo
-   OCAMLC stdlib__Semaphore.cmo
-   OCAMLC stdlib__Domain.cmo
-   OCAMLC camlinternalFormat.cmo
-   OCAMLC stdlib__Printf.cmo
-   OCAMLC stdlib__Arg.cmo
-   OCAMLC stdlib__Printexc.cmo
-   OCAMLC stdlib__Fun.cmo
-   OCAMLC stdlib__Gc.cmi
-   OCAMLC stdlib__Bigarray.cmo
-   OCAMLC stdlib__Random.cmo
-   OCAMLC stdlib__Weak.cmo
-   OCAMLC stdlib__Format.cmo
-   OCAMLC stdlib__Scanf.cmo
-   OCAMLC camlinternalOO.cmo
-   OCAMLC stdlib__Oo.cmi
-   OCAMLC camlinternalMod.cmo
-   OCAMLC stdlib__Ephemeron.cmo
-   OCAMLC stdlib__MoreLabels.cmo
-   OCAMLC stdlib__StdLabels.cmo
-   OCAMLC stdlib__Effect.cmo
-   OCAMLC stdlib__Gc.cmo
-   OCAMLC stdlib__Oo.cmo
-   LINKC stdlib.cma
- rm -f boot/ocamlrun
- cp runtime/ocamlrun boot/ocamlrun
- cd boot; rm -f stdlib.cma std_exit.cmo *.cmi camlheader
- cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
- cd boot; ln -sf ../runtime/libcamlrun.a .
- /Library/Developer/CommandLineTools/usr/bin/make opt.opt
- /Library/Developer/CommandLineTools/usr/bin/make checkstack
-   CC tools/checkstack.o
-   MKEXE tools/checkstack
- tools/checkstack
- rm tools/checkstack tools/checkstack.o
- /Library/Developer/CommandLineTools/usr/bin/make coreall
- cd stdlib; ln -sf ../runtime/libcamlrun.a .
- /Library/Developer/CommandLineTools/usr/bin/make ocamlc
-   OCAMLC utils/warnings.cmi
-   OCAMLC parsing/longident.cmi
-   OCAMLC utils/build_path_prefix_map.cmi
-   OCAMLC utils/identifiable.cmi
-   OCAMLC utils/load_path.cmi
-   OCAMLC middle_end/flambda/allocated_const.cmi
-   GEN utils/config_main.ml
- cp utils/config.mli utils/config_main.mli
-   GEN utils/config_boot.ml
- cp utils/config.mli utils/config_boot.mli
-   OCAMLC utils/config.cmi
-   OCAMLC utils/arg_helper.cmi
-   OCAMLC utils/local_store.cmi
-   OCAMLC utils/profile.cmi
-   OCAMLC utils/terminfo.cmi
-   OCAMLC utils/ccomp.cmi
-   OCAMLC utils/targetint.cmi
-   OCAMLC utils/int_replace_polymorphic_compare.cmi
-   GEN utils/domainstate.ml
-   GEN utils/domainstate.mli
-   OCAMLC utils/binutils.cmi
-   OCAMLC utils/lazy_backtrack.cmi
-   GEN parsing/camlinternalMenhirLib.ml
-   GEN parsing/camlinternalMenhirLib.mli
-   OCAMLLEX parsing/lexer.ml
-   OCAMLC lambda/switch.cmi
-   GEN lambda/runtimedef.ml
-   OCAMLC lambda/runtimedef.cmi
-   OCAMLLEX tools/make_opcodes.ml
-   OCAMLC tools/make_opcodes.cmi
-   OCAMLC bytecomp/bytesections.cmi
-   OCAMLC bytecomp/dll.cmi
-   OCAMLC driver/main_args.cmi
-   OCAMLC driver/makedepend.cmi
-   OCAMLC bytecomp/bytelibrarian.cmi
-   OCAMLC driver/errors.cmi
-   OCAMLC driver/maindriver.cmi
-   OCAMLC driver/main.cmi
-   OCAMLC parsing/location.cmi
-   OCAMLC utils/misc.cmi
-   OCAMLC utils/config_main.cmi
-   OCAMLC utils/config_boot.cmi
-   GEN utils/config.ml
-   OCAMLC utils/build_path_prefix_map.cmo
-   OCAMLC utils/arg_helper.cmo
-   OCAMLC utils/local_store.cmo
-   OCAMLC utils/terminfo.cmo
-   OCAMLC utils/int_replace_polymorphic_compare.cmo
-   OCAMLC utils/domainstate.cmi
-   OCAMLC utils/binutils.cmo
-   OCAMLC utils/lazy_backtrack.cmo
-   OCAMLC parsing/syntaxerr.cmi
-   OCAMLC parsing/camlinternalMenhirLib.cmi
-   OCAMLC lambda/switch.cmo
-   OCAMLC lambda/runtimedef.cmo
-   OCAMLC tools/make_opcodes.cmo
-   OCAMLC bytecomp/bytesections.cmo
-   OCAMLC driver/errors.cmo
-   OCAMLC driver/main.cmo
-   OCAMLC parsing/asttypes.cmi
-   OCAMLC typing/annot.cmi
-   OCAMLC typing/ident.cmi
-   OCAMLC middle_end/linkage_name.cmi
-   OCAMLC middle_end/flambda/base_types/tag.cmi
-   OCAMLC middle_end/flambda/base_types/static_exception.cmi
-   OCAMLC utils/numbers.cmi
-   OCAMLC file_formats/cmxs_format.cmi
-   OCAMLC utils/config_main.cmo
-   OCAMLC utils/config_boot.cmo
-   OCAMLC utils/config.cmo
-   OCAMLC utils/misc.cmo
-   OCAMLC utils/identifiable.cmo
-   OCAMLC utils/load_path.cmo
-   OCAMLC utils/clflags.cmi
-   OCAMLC utils/profile.cmo
-   OCAMLC utils/warnings.cmo
-   OCAMLC utils/consistbl.cmi
-   OCAMLC utils/strongly_connected_components.cmi
-   OCAMLC utils/targetint.cmo
-   OCAMLC utils/domainstate.cmo
-   OCAMLC utils/diffing.cmi
-   OCAMLC parsing/location.cmo
-   OCAMLC parsing/longident.cmo
-   OCAMLC parsing/syntaxerr.cmo
-   OCAMLC parsing/camlinternalMenhirLib.cmo
-   OCAMLC typing/ident.cmo
-   LINKC tools/make_opcodes
-   OCAMLC bytecomp/dll.cmo
-   OCAMLC driver/compenv.cmi
-   OCAMLC parsing/parsetree.cmi
-   OCAMLC file_formats/cmo_format.cmi
-   OCAMLC typing/path.cmi
-   OCAMLC lambda/debuginfo.cmi
-   OCAMLC middle_end/compilation_unit.cmi
-   OCAMLC utils/numbers.cmo
-   OCAMLC utils/clflags.cmo
-   OCAMLC utils/ccomp.cmo
-   OCAMLC utils/consistbl.cmo
-   OCAMLC utils/strongly_connected_components.cmo
-   OCAMLC utils/diffing.cmo
-   OCAMLC utils/diffing_with_keys.cmi
-   OCAMLC parsing/docstrings.cmi
-   OCAMLC parsing/pprintast.cmi
-   OCAMLC parsing/parse.cmi
-   OCAMLC parsing/printast.cmi
-   OCAMLC parsing/ast_mapper.cmi
-   OCAMLC parsing/ast_iterator.cmi
-   OCAMLC parsing/attr_helper.cmi
-   OCAMLC parsing/builtin_attributes.cmi
-   OCAMLC parsing/ast_invariants.cmi
-   OCAMLC parsing/depend.cmi
-   OCAMLC typing/path.cmo
-   OCAMLC lambda/debuginfo.cmo
-   GEN bytecomp/opcodes.ml
-   OCAMLC driver/pparse.cmi
-   OCAMLC driver/compenv.cmo
-   OCAMLC driver/main_args.cmo
-   OCAMLC typing/type_immediacy.cmi
-   OCAMLC typing/shape.cmi
-   OCAMLC middle_end/flambda/base_types/set_of_closures_id.cmi
-   OCAMLC middle_end/flambda/base_types/export_id.cmi
-   OCAMLC middle_end/backend_var.cmi
-   OCAMLC utils/diffing_with_keys.cmo
-   OCAMLC parsing/docstrings.cmo
-   OCAMLC parsing/ast_helper.cmi
-   OCAMLC parsing/pprintast.cmo
-   OCAMLC parsing/printast.cmo
-   OCAMLC parsing/ast_iterator.cmo
-   OCAMLC parsing/attr_helper.cmo
-   OCAMLC parsing/builtin_attributes.cmo
-   OCAMLC parsing/ast_invariants.cmo
-   OCAMLC parsing/depend.cmo
-   OCAMLC typing/type_immediacy.cmo
-   OCAMLC typing/shape.cmo
-   GEN bytecomp/opcodes.mli
-   OCAMLC driver/pparse.cmo
-   OCAMLC typing/outcometree.cmi
-   OCAMLC middle_end/flambda/base_types/set_of_closures_origin.cmi
-   OCAMLC parsing/ast_helper.cmo
-   GEN parsing/parser.ml
-   GEN parsing/parser.mli
-   OCAMLC parsing/ast_mapper.cmo
-   OCAMLC typing/oprint.cmi
-   OCAMLC bytecomp/opcodes.cmi
-   OCAMLC typing/primitive.cmi
-   OCAMLC parsing/parser.cmi
-   OCAMLC typing/oprint.cmo
-   OCAMLC bytecomp/opcodes.cmo
-   OCAMLC typing/types.cmi
-   OCAMLC typing/primitive.cmo
-   OCAMLC parsing/parser.cmo
-   OCAMLC parsing/lexer.cmi
-   OCAMLC parsing/lexer.cmo
-   OCAMLC parsing/parse.cmo
-   OCAMLC typing/types.cmo
-   OCAMLC typing/btype.cmi
-   OCAMLC typing/predef.cmi
-   OCAMLC typing/datarepr.cmi
-   OCAMLC typing/errortrace.cmi
-   OCAMLC typing/signature_group.cmi
-   OCAMLC driver/makedepend.cmo
-   OCAMLC typing/subst.cmi
-   OCAMLC file_formats/cmi_format.cmi
-   OCAMLC typing/btype.cmo
-   OCAMLC typing/predef.cmo
-   OCAMLC typing/datarepr.cmo
-   OCAMLC file_formats/cmi_format.cmo
-   OCAMLC typing/persistent_env.cmi
-   OCAMLC typing/errortrace.cmo
-   OCAMLC typing/signature_group.cmo
-   OCAMLC typing/env.cmi
-   OCAMLC typing/subst.cmo
-   OCAMLC typing/persistent_env.cmo
-   OCAMLC lambda/lambda.cmi
-   OCAMLC typing/env.cmo
-   OCAMLC typing/typedtree.cmi
-   OCAMLC typing/ctype.cmi
-   OCAMLC typing/printtyp.cmi
-   OCAMLC typing/mtype.cmi
-   OCAMLC typing/envaux.cmi
-   OCAMLC typing/typedecl_properties.cmi
-   OCAMLC typing/typedecl_unboxed.cmi
-   OCAMLC driver/compmisc.cmi
-   OCAMLC bytecomp/bytepackager.cmi
-   OCAMLC middle_end/internal_variable_names.cmi
-   OCAMLC middle_end/clambda_primitives.cmi
-   OCAMLC typing/ctype.cmo
-   OCAMLC typing/printtyp.cmo
-   OCAMLC typing/includeclass.cmi
-   OCAMLC typing/mtype.cmo
-   OCAMLC typing/envaux.cmo
-   OCAMLC typing/typedecl_properties.cmo
-   OCAMLC typing/typedecl_unboxed.cmo
-   OCAMLC typing/typedecl_immediacy.cmi
-   OCAMLC typing/typedecl_separability.cmi
-   OCAMLC typing/typeopt.cmi
-   OCAMLC typing/rec_check.cmi
-   OCAMLC typing/typecore.cmi
-   OCAMLC typing/typeclass.cmi
-   OCAMLC lambda/lambda.cmo
-   OCAMLC lambda/printlambda.cmi
-   OCAMLC lambda/matching.cmi
-   OCAMLC lambda/translobj.cmi
-   OCAMLC lambda/translattribute.cmi
-   OCAMLC lambda/translprim.cmi
-   OCAMLC lambda/translcore.cmi
-   OCAMLC lambda/translclass.cmi
-   OCAMLC lambda/translmod.cmi
-   OCAMLC lambda/tmc.cmi
-   OCAMLC lambda/simplif.cmi
-   OCAMLC bytecomp/instruct.cmi
-   OCAMLC bytecomp/symtable.cmi
-   OCAMLC driver/compile_common.cmi
-   OCAMLC middle_end/variable.cmi
-   OCAMLC middle_end/clambda.cmi
-   OCAMLC typing/typedtree.cmo
-   OCAMLC typing/printtyped.cmi
-   OCAMLC typing/includeclass.cmo
-   OCAMLC typing/includecore.cmi
-   OCAMLC typing/tast_iterator.cmi
-   OCAMLC typing/tast_mapper.cmi
-   OCAMLC typing/stypes.cmi
-   OCAMLC file_formats/cmt_format.cmi
-   OCAMLC typing/untypeast.cmi
-   OCAMLC typing/includemod.cmi
-   OCAMLC typing/typetexp.cmi
-   OCAMLC typing/printpat.cmi
-   OCAMLC typing/patterns.cmi
-   OCAMLC typing/parmatch.cmi
-   OCAMLC typing/typedecl_variance.cmi
-   OCAMLC typing/typedecl_immediacy.cmo
-   OCAMLC typing/typedecl_separability.cmo
-   OCAMLC typing/typeopt.cmo
-   OCAMLC typing/rec_check.cmo
-   OCAMLC lambda/printlambda.cmo
-   OCAMLC lambda/matching.cmo
-   OCAMLC lambda/translobj.cmo
-   OCAMLC lambda/translattribute.cmo
-   OCAMLC lambda/translprim.cmo
-   OCAMLC lambda/translcore.cmo
-   OCAMLC lambda/translclass.cmo
-   OCAMLC lambda/translmod.cmo
-   OCAMLC lambda/tmc.cmo
-   OCAMLC lambda/simplif.cmo
-   OCAMLC bytecomp/meta.cmi
-   OCAMLC bytecomp/instruct.cmo
-   OCAMLC bytecomp/bytegen.cmi
-   OCAMLC bytecomp/printinstr.cmi
-   OCAMLC bytecomp/emitcode.cmi
-   OCAMLC bytecomp/bytelink.cmi
-   OCAMLC driver/compile.cmi
-   OCAMLC middle_end/flambda/base_types/closure_element.cmi
-   OCAMLC middle_end/symbol.cmi
-   OCAMLC middle_end/flambda/parameter.cmi
-   OCAMLC middle_end/flambda/base_types/mutable_variable.cmi
-   OCAMLC typing/printtyped.cmo
-   OCAMLC typing/includecore.cmo
-   OCAMLC typing/tast_iterator.cmo
-   OCAMLC typing/tast_mapper.cmo
-   OCAMLC typing/stypes.cmo
-   OCAMLC file_formats/cmt_format.cmo
-   OCAMLC typing/cmt2annot.cmi
-   OCAMLC typing/untypeast.cmo
-   OCAMLC typing/includemod.cmo
-   OCAMLC typing/includemod_errorprinter.cmi
-   OCAMLC typing/typetexp.cmo
-   OCAMLC typing/printpat.cmo
-   OCAMLC typing/patterns.cmo
-   OCAMLC typing/parmatch.cmo
-   OCAMLC typing/typedecl_variance.cmo
-   OCAMLC typing/typedecl.cmi
-   OCAMLC bytecomp/meta.cmo
-   OCAMLC bytecomp/symtable.cmo
-   OCAMLC bytecomp/bytegen.cmo
-   OCAMLC bytecomp/printinstr.cmo
-   OCAMLC bytecomp/emitcode.cmo
-   OCAMLC bytecomp/bytelink.cmo
-   OCAMLC bytecomp/bytelibrarian.cmo
-   OCAMLC driver/compile.cmo
-   OCAMLC driver/maindriver.cmo
-   OCAMLC middle_end/flambda/base_types/var_within_closure.cmi
-   OCAMLC middle_end/flambda/base_types/closure_id.cmi
-   OCAMLC typing/cmt2annot.cmo
-   OCAMLC typing/includemod_errorprinter.cmo
-   OCAMLC typing/typedecl.cmo
-   OCAMLC typing/typecore.cmo
-   OCAMLC typing/typeclass.cmo
-   OCAMLC typing/typemod.cmi
-   OCAMLC middle_end/flambda/projection.cmi
-   OCAMLC middle_end/flambda/base_types/closure_origin.cmi
-   OCAMLC typing/typemod.cmo
-   OCAMLC driver/compmisc.cmo
-   OCAMLC driver/compile_common.cmo
-   OCAMLC bytecomp/bytepackager.cmo
-   OCAMLC middle_end/flambda/flambda.cmi
-   OCAMLC middle_end/flambda/freshening.cmi
-   LINKC compilerlibs/ocamlbytecomp.cma
-   OCAMLC middle_end/flambda/simple_value_approx.cmi
-   OCAMLC middle_end/flambda/export_info.cmi
-   OCAMLC file_formats/cmx_format.cmi
-   LINKC compilerlibs/ocamlcommon.cma
-   LINKC ocamlc
- /Library/Developer/CommandLineTools/usr/bin/make ocamllex ocamltools library
-   CC yacc/closure.o
-   CC yacc/error.o
-   CC yacc/lalr.o
-   CC yacc/lr0.o
-   CC yacc/main.o
-   CC yacc/mkpar.o
-   CC yacc/output.o
-   CC yacc/reader.o
-   CC yacc/skeleton.o
-   CC yacc/symtab.o
-   CC yacc/verbose.o
-   CC yacc/warshall.o
- /Library/Developer/CommandLineTools/usr/bin/make -C stdlib all
-   OCAMLC camlinternalFormatBasics.cmi
-   OCAMLC camlinternalFormatBasics.cmo
-   OCAMLC stdlib.cmi
-   OCAMLC stdlib.cmo
-   OCAMLC stdlib__Either.cmi
-   OCAMLC stdlib__Sys.cmi
-   OCAMLC stdlib__Nativeint.cmi
-   OCAMLC stdlib__Int32.cmi
-   MKEXE yacc/ocamlyacc
-   OCAMLC stdlib__Type.cmi
-   OCAMLC stdlib__Atomic.cmi
-   OCAMLC camlinternalLazy.cmi
-   OCAMLC stdlib__Seq.cmi
-   OCAMLC stdlib__Bool.cmi
-   OCAMLC stdlib__Char.cmi
-   OCAMLC stdlib__Uchar.cmi
-   OCAMLC stdlib__Int.cmi
-   OCAMLC stdlib__Unit.cmi
-   OCAMLC stdlib__Marshal.cmi
- /Library/Developer/CommandLineTools/usr/bin/make lex-all
-   OCAMLC stdlib__Int32.cmo
-   OCAMLC stdlib__Int64.cmi
-   OCAMLC stdlib__Nativeint.cmo
-   OCAMLC stdlib__Lexing.cmi
-   OCAMLC stdlib__Set.cmi
-   OCAMLC stdlib__Map.cmi
-   OCAMLC stdlib__Stack.cmi
-   OCAMLC stdlib__Queue.cmi
-   OCAMLC stdlib__Buffer.cmi
-   OCAMLC stdlib__Mutex.cmi
-   OCAMLC stdlib__Semaphore.cmi
-   OCAMLC stdlib__Domain.cmi
-   OCAMLC stdlib__Arg.cmi
-   OCAMLC stdlib__Fun.cmi
-   OCAMLC stdlib__Digest.cmi
-   OCAMLC stdlib__Complex.cmi
-   OCAMLC stdlib__Random.cmi
-   OCAMLC stdlib__Hashtbl.cmi
-   OCAMLC stdlib__Format.cmi
-   OCAMLC stdlib__Scanf.cmi
-   OCAMLC stdlib__Callback.cmi
-   OCAMLC stdlib__Filename.cmi
-   OCAMLC stdlib__ArrayLabels.cmi
-   OCAMLC stdlib__ListLabels.cmi
-   OCAMLC stdlib__BytesLabels.cmi
-   OCAMLC stdlib__StringLabels.cmi
-   OCAMLC stdlib__In_channel.cmi
-   OCAMLC lex/cset.cmi
-   OCAMLYACC lex/parser.ml
-   OCAMLLEX lex/lexer.ml
-   OCAMLC lex/table.cmi
-   OCAMLC stdlib__Out_channel.cmi
-   OCAMLC lex/main.cmi
-   OCAMLC std_exit.cmi
-   OCAMLC lex/cset.cmo
-   OCAMLC stdlib__Either.cmo
-   OCAMLC lex/syntax.cmi
-   OCAMLC lex/table.cmo
-   OCAMLC stdlib__Sys.cmo
-   OCAMLC stdlib__Obj.cmi
-   OCAMLC stdlib__Atomic.cmo
-   OCAMLC stdlib__Lazy.cmi
-   OCAMLC stdlib__Option.cmi
-   OCAMLC lex/syntax.cmo
-   OCAMLC lex/parser.cmi
-   OCAMLC stdlib__Result.cmi
-   OCAMLC lex/lexgen.cmi
-   OCAMLC stdlib__Bool.cmo
-   OCAMLC stdlib__Char.cmo
-   OCAMLC stdlib__Uchar.cmo
-   OCAMLC lex/parser.cmo
-   OCAMLC lex/lexer.cmi
-   OCAMLC stdlib__List.cmi
-   OCAMLC lex/lexgen.cmo
-   OCAMLC lex/compact.cmi
-   OCAMLC lex/common.cmi
-   OCAMLC stdlib__Int.cmo
-   OCAMLC stdlib__Bytes.cmi
-   OCAMLC stdlib__String.cmi
-   OCAMLC stdlib__Unit.cmo
-   OCAMLC lex/lexer.cmo
-   OCAMLC lex/compact.cmo
-   OCAMLC stdlib__Array.cmi
-   OCAMLC lex/common.cmo
-   OCAMLC lex/output.cmi
-   OCAMLC lex/outputbis.cmi
-   OCAMLC stdlib__Float.cmi
-   OCAMLC stdlib__Int64.cmo
-   OCAMLC stdlib__Parsing.cmi
-   OCAMLC stdlib__Set.cmo
-   OCAMLC lex/output.cmo
-   OCAMLC lex/outputbis.cmo
-   OCAMLC stdlib__Map.cmo
-   OCAMLC lex/main.cmo
-   OCAMLC stdlib__Stack.cmo
-   OCAMLC stdlib__Queue.cmo
-   OCAMLC stdlib__Buffer.cmo
-   OCAMLC stdlib__Mutex.cmo
-   OCAMLC stdlib__Condition.cmi
-   OCAMLC camlinternalFormat.cmi
-   OCAMLC stdlib__Printf.cmi
-   OCAMLC stdlib__Printexc.cmi
-   OCAMLC stdlib__Digest.cmo
-   OCAMLC stdlib__Bigarray.cmi
-   OCAMLC stdlib__Hashtbl.cmo
-   OCAMLC stdlib__Weak.cmi
-   OCAMLC stdlib__Callback.cmo
-   OCAMLC camlinternalOO.cmi
-   OCAMLC camlinternalMod.cmi
-   OCAMLC stdlib__Ephemeron.cmi
-   OCAMLC stdlib__Filename.cmo
-   OCAMLC stdlib__Complex.cmo
-   OCAMLC stdlib__ArrayLabels.cmo
-   OCAMLC stdlib__ListLabels.cmo
-   OCAMLC stdlib__BytesLabels.cmo
-   OCAMLC stdlib__StringLabels.cmo
-   OCAMLC stdlib__MoreLabels.cmi
-   OCAMLC stdlib__StdLabels.cmi
-   OCAMLC stdlib__In_channel.cmo
-   OCAMLC stdlib__Out_channel.cmo
-   OCAMLC stdlib__Effect.cmi
-   OCAMLC std_exit.cmo
-   OCAMLC stdlib__Obj.cmo
-   OCAMLC stdlib__Type.cmo
-   OCAMLC camlinternalLazy.cmo
-   OCAMLC stdlib__Lazy.cmo
-   OCAMLC stdlib__Seq.cmo
-   OCAMLC stdlib__Option.cmo
-   OCAMLC stdlib__Result.cmo
-   OCAMLC stdlib__List.cmo
-   LINKC lex/ocamllex
-   OCAMLC stdlib__Bytes.cmo
-   OCAMLC stdlib__String.cmo
-   OCAMLC stdlib__Marshal.cmo
-   OCAMLC stdlib__Array.cmo
-   OCAMLC stdlib__Float.cmo
- /Library/Developer/CommandLineTools/usr/bin/make tools-all
-   OCAMLC stdlib__Lexing.cmo
-   OCAMLC stdlib__Parsing.cmo
-   OCAMLC stdlib__Condition.cmo
-   OCAMLC stdlib__Semaphore.cmo
-   OCAMLC stdlib__Domain.cmo
-   OCAMLC camlinternalFormat.cmo
-   OCAMLC stdlib__Printf.cmo
-   OCAMLC stdlib__Arg.cmo
-   OCAMLC stdlib__Printexc.cmo
-   OCAMLC stdlib__Fun.cmo
-   OCAMLC stdlib__Gc.cmi
-   OCAMLC stdlib__Bigarray.cmo
-   OCAMLC stdlib__Random.cmo
-   OCAMLC stdlib__Weak.cmo
-   OCAMLC stdlib__Format.cmo
-   OCAMLC stdlib__Scanf.cmo
-   OCAMLC tools/ocamldep.cmi
-   OCAMLC middle_end/backend_intf.cmi
-   OCAMLC camlinternalOO.cmo
-   OCAMLC middle_end/flambda/inlining_cost.cmi
-   OCAMLC middle_end/internal_variable_names.cmo
-   OCAMLC middle_end/linkage_name.cmo
-   OCAMLC stdlib__Oo.cmi
-   OCAMLC camlinternalMod.cmo
-   OCAMLC middle_end/compilation_unit.cmo
-   OCAMLC middle_end/variable.cmo
-   OCAMLC middle_end/flambda/base_types/closure_element.cmo
-   OCAMLC middle_end/flambda/base_types/closure_id.cmo
-   OCAMLC middle_end/symbol.cmo
-   OCAMLC middle_end/backend_var.cmo
-   OCAMLC stdlib__Ephemeron.cmo
-   OCAMLC middle_end/clambda_primitives.cmo
-   OCAMLC middle_end/printclambda_primitives.cmi
-   OCAMLC stdlib__MoreLabels.cmo
-   OCAMLC stdlib__StdLabels.cmo
-   OCAMLC middle_end/clambda.cmo
-   OCAMLC stdlib__Effect.cmo
-   OCAMLC stdlib__Gc.cmo
-   OCAMLC middle_end/printclambda.cmi
-   OCAMLC middle_end/semantics_of_primitives.cmi
-   OCAMLC stdlib__Oo.cmo
-   OCAMLC middle_end/convert_primitives.cmi
-   OCAMLC middle_end/flambda/base_types/id_types.cmi
-   OCAMLC middle_end/flambda/base_types/tag.cmo
-   OCAMLC middle_end/flambda/base_types/mutable_variable.cmo
-   OCAMLC middle_end/flambda/base_types/set_of_closures_origin.cmo
-   OCAMLC middle_end/flambda/base_types/closure_origin.cmo
-   OCAMLC middle_end/flambda/base_types/var_within_closure.cmo
-   OCAMLC middle_end/flambda/base_types/static_exception.cmo
-   OCAMLC middle_end/flambda/pass_wrapper.cmi
-   OCAMLC middle_end/flambda/allocated_const.cmo
-   OCAMLC middle_end/flambda/parameter.cmo
-   OCAMLC middle_end/flambda/projection.cmo
-   OCAMLC middle_end/flambda/flambda.cmo
-   OCAMLC middle_end/flambda/flambda_iterators.cmi
-   OCAMLC middle_end/flambda/flambda_utils.cmi
-   OCAMLC middle_end/flambda/effect_analysis.cmi
-   OCAMLC middle_end/flambda/export_info.cmo
-   OCAMLC middle_end/flambda/export_info_for_pack.cmi
-   OCAMLC middle_end/compilenv.cmi
-   OCAMLC middle_end/closure/closure.cmi
-   OCAMLC middle_end/closure/closure_middle_end.cmi
-   OCAMLC middle_end/flambda/import_approx.cmi
-   OCAMLC middle_end/flambda/lift_code.cmi
-   OCAMLC middle_end/flambda/closure_conversion_aux.cmi
-   OCAMLC middle_end/flambda/closure_conversion.cmi
-   OCAMLC middle_end/flambda/initialize_symbol_to_let_symbol.cmi
-   OCAMLC middle_end/flambda/lift_let_to_initialize_symbol.cmi
-   OCAMLC middle_end/flambda/find_recursive_functions.cmi
-   OCAMLC middle_end/flambda/invariant_params.cmi
-   OCAMLC middle_end/flambda/inconstant_idents.cmi
-   OCAMLC middle_end/flambda/alias_analysis.cmi
-   OCAMLC middle_end/flambda/lift_constants.cmi
-   OCAMLC middle_end/flambda/share_constants.cmi
-   OCAMLC middle_end/flambda/simplify_common.cmi
-   OCAMLC middle_end/flambda/remove_unused_arguments.cmi
-   OCAMLC middle_end/flambda/remove_unused_closure_vars.cmi
-   OCAMLC middle_end/flambda/remove_unused_program_constructs.cmi
-   OCAMLC middle_end/flambda/simplify_primitives.cmi
-   OCAMLC middle_end/flambda/remove_free_vars_equal_to_args.cmi
-   OCAMLC middle_end/flambda/ref_to_variables.cmi
-   OCAMLC middle_end/flambda/flambda_invariants.cmi
-   OCAMLC middle_end/flambda/traverse_for_exported_symbols.cmi
-   OCAMLC middle_end/flambda/build_export_info.cmi
-   OCAMLC middle_end/flambda/closure_offsets.cmi
-   OCAMLC middle_end/flambda/un_anf.cmi
-   OCAMLC middle_end/flambda/flambda_to_clambda.cmi
-   OCAMLC middle_end/flambda/flambda_middle_end.cmi
-   OCAMLC tools/objinfo.cmi
-   OCAMLC tools/ocamlcmt.cmi
-   OCAMLC tools/ocamlprof.cmi
-   OCAMLC tools/ocamlcp_common.cmi
-   OCAMLC tools/ocamlcp.cmi
-   OCAMLC tools/ocamlmklib.cmi
-   OCAMLC tools/ocamlmktop.cmi
-   OCAMLC tools/ocamloptp.cmi
-   GEN tools/opnames.ml
-   OCAMLC tools/opnames.cmi
-   OCAMLC tools/dumpobj.cmi
-   OCAMLC tools/primreq.cmi
-   OCAMLC tools/stripdebug.cmi
-   OCAMLC tools/cmpbyt.cmi
-   OCAMLC tools/profiling.cmi
-   OCAMLC tools/ocamldep.cmo
-   OCAMLC middle_end/flambda/inlining_stats_types.cmi
-   OCAMLC middle_end/flambda/simplify_boxed_integer_ops_intf.cmi
-   OCAMLC middle_end/printclambda_primitives.cmo
-   OCAMLC middle_end/printclambda.cmo
-   OCAMLC middle_end/semantics_of_primitives.cmo
-   OCAMLC middle_end/convert_primitives.cmo
-   OCAMLC middle_end/flambda/base_types/id_types.cmo
-   OCAMLC middle_end/flambda/base_types/export_id.cmo
-   OCAMLC middle_end/flambda/base_types/set_of_closures_id.cmo
-   OCAMLC middle_end/flambda/pass_wrapper.cmo
-   OCAMLC middle_end/flambda/flambda_iterators.cmo
-   OCAMLC middle_end/flambda/flambda_utils.cmo
-   OCAMLC middle_end/flambda/freshening.cmo
-   OCAMLC middle_end/flambda/effect_analysis.cmo
-   OCAMLC middle_end/flambda/inlining_cost.cmo
-   OCAMLC middle_end/flambda/simple_value_approx.cmo
-   OCAMLC middle_end/flambda/export_info_for_pack.cmo
-   OCAMLC middle_end/compilenv.cmo
-   OCAMLC middle_end/closure/closure.cmo
-   OCAMLC middle_end/closure/closure_middle_end.cmo
-   OCAMLC middle_end/flambda/import_approx.cmo
-   OCAMLC middle_end/flambda/lift_code.cmo
-   OCAMLC middle_end/flambda/closure_conversion_aux.cmo
-   OCAMLC middle_end/flambda/closure_conversion.cmo
-   OCAMLC middle_end/flambda/initialize_symbol_to_let_symbol.cmo
-   OCAMLC middle_end/flambda/lift_let_to_initialize_symbol.cmo
-   OCAMLC middle_end/flambda/find_recursive_functions.cmo
-   OCAMLC middle_end/flambda/invariant_params.cmo
-   OCAMLC middle_end/flambda/inconstant_idents.cmo
-   OCAMLC middle_end/flambda/alias_analysis.cmo
-   OCAMLC middle_end/flambda/lift_constants.cmo
-   OCAMLC middle_end/flambda/share_constants.cmo
-   OCAMLC middle_end/flambda/simplify_common.cmo
-   OCAMLC middle_end/flambda/remove_unused_arguments.cmo
-   OCAMLC middle_end/flambda/remove_unused_closure_vars.cmo
-   OCAMLC middle_end/flambda/remove_unused_program_constructs.cmo
-   OCAMLC middle_end/flambda/simplify_boxed_integer_ops.cmi
-   OCAMLC middle_end/flambda/inlining_stats_types.cmo
-   OCAMLC middle_end/flambda/inlining_stats.cmi
-   OCAMLC middle_end/flambda/remove_free_vars_equal_to_args.cmo
-   OCAMLC middle_end/flambda/ref_to_variables.cmo
-   OCAMLC middle_end/flambda/flambda_invariants.cmo
-   OCAMLC middle_end/flambda/traverse_for_exported_symbols.cmo
-   OCAMLC middle_end/flambda/closure_offsets.cmo
-   OCAMLC middle_end/flambda/un_anf.cmo
-   OCAMLC middle_end/flambda/flambda_to_clambda.cmo
-   OCAMLC tools/objinfo.cmo
-   OCAMLC tools/ocamlcmt.cmo
-   OCAMLC tools/ocamlprof.cmo
-   OCAMLC tools/ocamlcp_common.cmo
-   OCAMLC tools/ocamlcp.cmo
-   OCAMLC tools/ocamlmklib.cmo
-   OCAMLC tools/ocamlmktop.cmo
-   OCAMLC tools/ocamloptp.cmo
-   OCAMLC tools/opnames.cmo
-   OCAMLC tools/dumpobj.cmo
-   OCAMLC tools/primreq.cmo
-   OCAMLC tools/stripdebug.cmo
-   OCAMLC tools/cmpbyt.cmo
-   OCAMLC tools/profiling.cmo
-   LINKC tools/ocamldep
-   OCAMLC middle_end/flambda/inline_and_simplify_aux.cmi
-   OCAMLC middle_end/flambda/simplify_boxed_integer_ops.cmo
-   OCAMLC middle_end/flambda/simplify_primitives.cmo
-   OCAMLC middle_end/flambda/inlining_stats.cmo
-   LINKC tools/ocamlcmt
-   LINKC tools/ocamlprof
-   LINKC tools/ocamlcp
-   LINKC tools/ocamlmklib
-   LINKC tools/ocamlmktop
-   LINKC tools/ocamloptp
-   LINKC tools/primreq
-   LINKC tools/stripdebug
-   LINKC tools/cmpbyt
-   OCAMLC middle_end/flambda/inlining_decision_intf.cmi
-   OCAMLC middle_end/flambda/inline_and_simplify_aux.cmo
-   OCAMLC middle_end/flambda/extract_projections.cmi
-   OCAMLC middle_end/flambda/augment_specialised_args.cmi
-   OCAMLC middle_end/flambda/unbox_free_vars_of_closures.cmi
-   OCAMLC middle_end/flambda/unbox_specialised_args.cmi
-   OCAMLC middle_end/flambda/unbox_closures.cmi
-   OCAMLC middle_end/flambda/inlining_transforms.cmi
-   OCAMLC middle_end/flambda/inlining_decision.cmi
-   OCAMLC middle_end/flambda/inline_and_simplify.cmi
-   OCAMLC middle_end/flambda/build_export_info.cmo
-   OCAMLC middle_end/flambda/extract_projections.cmo
-   OCAMLC middle_end/flambda/augment_specialised_args.cmo
-   OCAMLC middle_end/flambda/unbox_free_vars_of_closures.cmo
-   OCAMLC middle_end/flambda/unbox_specialised_args.cmo
-   OCAMLC middle_end/flambda/unbox_closures.cmo
-   LINKC tools/dumpobj
-   OCAMLC middle_end/flambda/inline_and_simplify.cmo
-   OCAMLC middle_end/flambda/flambda_middle_end.cmo
-   LINKC stdlib.cma
-   OCAMLC middle_end/flambda/inlining_transforms.cmo
-   OCAMLC middle_end/flambda/inlining_decision.cmo
-   LINKC compilerlibs/ocamlmiddleend.cma
-   LINKC tools/ocamlobjinfo
- /Library/Developer/CommandLineTools/usr/bin/make ocaml
-   OCAMLC toplevel/expunge.cmi
-   OCAMLC toplevel/genprintval.cmi
-   OCAMLC toplevel/trace.cmi
-   OCAMLC toplevel/toploop.cmi
-   OCAMLC toplevel/topprinters.cmi
-   OCAMLC toplevel/topdirs.cmi
-   OCAMLC toplevel/topmain.cmi
-   OCAMLC toplevel/topstart.cmi
-   OCAMLC toplevel/expunge.cmo
- cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/byte
-   OCAMLC toplevel/topprinters.cmo
-   OCAMLC toplevel/topstart.cmo
-   OCAMLC toplevel/topcommon.cmi
-   OCAMLC toplevel/genprintval.cmo
- cp toplevel/trace.cmi toplevel/trace.mli toplevel/byte
-   LINKC expunge
-   OCAMLC toplevel/topeval.cmi
-   OCAMLC toplevel/topcommon.cmo
- cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/byte
-   OCAMLC toplevel/toploop.cmo
-   OCAMLC toplevel/topdirs.cmo
-   OCAMLC toplevel/byte/topeval.cmo
-   OCAMLC toplevel/byte/trace.cmo
-   OCAMLC toplevel/byte/topmain.cmo
-   LINKC compilerlibs/ocamltoplevel.cma
-   LINKC ocaml.tmp
-   GEN ocaml
- rm ocaml.tmp
- /Library/Developer/CommandLineTools/usr/bin/make opt-core
-   CC runtime/addrmap.n.o
-   CC runtime/afl.n.o
-   CC runtime/alloc.n.o
-   CC runtime/array.n.o
-   CC runtime/backtrace.n.o
-   CC runtime/bigarray.n.o
-   CC runtime/callback.n.o
-   CC runtime/codefrag.n.o
-   CC runtime/compare.n.o
-   CC runtime/custom.n.o
-   CC runtime/debugger.n.o
-   CC runtime/domain.n.o
-   CC runtime/dynlink.n.o
-   CC runtime/extern.n.o
-   CC runtime/fiber.n.o
-   CC runtime/finalise.n.o
-   CC runtime/floats.n.o
-   CC runtime/gc_ctrl.n.o
-   CC runtime/gc_stats.n.o
-   CC runtime/globroots.n.o
-   CC runtime/hash.n.o
-   CC runtime/intern.n.o
-   CC runtime/ints.n.o
-   CC runtime/io.n.o
-   CC runtime/lexing.n.o
-   CC runtime/lf_skiplist.n.o
-   CC runtime/main.n.o
-   CC runtime/major_gc.n.o
-   CC runtime/md5.n.o
-   CC runtime/memory.n.o
-   CC runtime/memprof.n.o
-   CC runtime/meta.n.o
-   CC runtime/minor_gc.n.o
-   CC runtime/misc.n.o
-   CC runtime/obj.n.o
-   CC runtime/parsing.n.o
-   CC runtime/platform.n.o
-   CC runtime/printexc.n.o
-   CC runtime/prng.n.o
-   CC runtime/roots.n.o
-   CC runtime/runtime_events.n.o
-   CC runtime/shared_heap.n.o
-   CC runtime/signals.n.o
-   CC runtime/skiplist.n.o
-   CC runtime/startup_aux.n.o
-   CC runtime/str.n.o
-   CC runtime/sync.n.o
-   CC runtime/sys.n.o
-   CC runtime/unix.n.o
-   CC runtime/weak.n.o
-   CC runtime/backtrace_nat.n.o
-   CC runtime/clambda_checks.n.o
-   CC runtime/dynlink_nat.n.o
-   CC runtime/fail_nat.n.o
-   CC runtime/frame_descriptors.n.o
-   CC runtime/startup_nat.n.o
-   CC runtime/signals_nat.n.o
-   ASM runtime/amd64.o
-   CC runtime/addrmap.nd.o
-   CC runtime/afl.nd.o
-   CC runtime/alloc.nd.o
-   CC runtime/array.nd.o
-   CC runtime/backtrace.nd.o
-   CC runtime/bigarray.nd.o
-   CC runtime/callback.nd.o
-   CC runtime/codefrag.nd.o
-   CC runtime/compare.nd.o
-   CC runtime/custom.nd.o
-   CC runtime/debugger.nd.o
-   CC runtime/domain.nd.o
-   CC runtime/dynlink.nd.o
-   CC runtime/extern.nd.o
-   CC runtime/fiber.nd.o
-   CC runtime/finalise.nd.o
-   CC runtime/floats.nd.o
-   CC runtime/gc_ctrl.nd.o
-   CC runtime/gc_stats.nd.o
-   CC runtime/globroots.nd.o
-   CC runtime/hash.nd.o
-   CC runtime/intern.nd.o
-   CC runtime/ints.nd.o
-   CC runtime/io.nd.o
-   CC runtime/lexing.nd.o
-   CC runtime/lf_skiplist.nd.o
-   CC runtime/main.nd.o
-   CC runtime/major_gc.nd.o
-   CC runtime/md5.nd.o
-   CC runtime/memory.nd.o
-   CC runtime/memprof.nd.o
-   CC runtime/meta.nd.o
-   CC runtime/minor_gc.nd.o
-   CC runtime/misc.nd.o
-   CC runtime/obj.nd.o
-   CC runtime/parsing.nd.o
-   CC runtime/platform.nd.o
-   CC runtime/printexc.nd.o
-   CC runtime/prng.nd.o
-   CC runtime/roots.nd.o
-   CC runtime/runtime_events.nd.o
-   CC runtime/shared_heap.nd.o
-   CC runtime/signals.nd.o
-   CC runtime/skiplist.nd.o
-   CC runtime/startup_aux.nd.o
-   CC runtime/str.nd.o
-   CC runtime/sync.nd.o
-   CC runtime/sys.nd.o
-   CC runtime/unix.nd.o
-   CC runtime/weak.nd.o
-   CC runtime/backtrace_nat.nd.o
-   CC runtime/clambda_checks.nd.o
-   CC runtime/dynlink_nat.nd.o
-   CC runtime/fail_nat.nd.o
-   CC runtime/frame_descriptors.nd.o
-   CC runtime/startup_nat.nd.o
-   CC runtime/signals_nat.nd.o
-   ASM runtime/amd64.d.o
-   CC runtime/addrmap.ni.o
-   CC runtime/afl.ni.o
-   CC runtime/alloc.ni.o
-   CC runtime/array.ni.o
-   CC runtime/backtrace.ni.o
-   CC runtime/bigarray.ni.o
-   CC runtime/callback.ni.o
-   CC runtime/codefrag.ni.o
-   CC runtime/compare.ni.o
-   CC runtime/custom.ni.o
-   CC runtime/debugger.ni.o
-   CC runtime/domain.ni.o
-   CC runtime/dynlink.ni.o
-   CC runtime/extern.ni.o
-   CC runtime/fiber.ni.o
-   CC runtime/finalise.ni.o
-   CC runtime/floats.ni.o
-   CC runtime/gc_ctrl.ni.o
-   CC runtime/gc_stats.ni.o
-   CC runtime/globroots.ni.o
-   CC runtime/hash.ni.o
-   CC runtime/intern.ni.o
-   CC runtime/ints.ni.o
-   CC runtime/io.ni.o
-   CC runtime/lexing.ni.o
-   CC runtime/lf_skiplist.ni.o
-   CC runtime/main.ni.o
-   CC runtime/major_gc.ni.o
-   CC runtime/md5.ni.o
-   CC runtime/memory.ni.o
-   CC runtime/memprof.ni.o
-   CC runtime/meta.ni.o
-   CC runtime/minor_gc.ni.o
-   CC runtime/misc.ni.o
-   CC runtime/obj.ni.o
-   CC runtime/parsing.ni.o
-   CC runtime/platform.ni.o
-   CC runtime/printexc.ni.o
-   CC runtime/prng.ni.o
-   CC runtime/roots.ni.o
-   CC runtime/runtime_events.ni.o
-   CC runtime/shared_heap.ni.o
-   CC runtime/signals.ni.o
-   CC runtime/skiplist.ni.o
-   CC runtime/startup_aux.ni.o
-   CC runtime/str.ni.o
-   CC runtime/sync.ni.o
-   CC runtime/sys.ni.o
-   CC runtime/unix.ni.o
-   CC runtime/weak.ni.o
-   CC runtime/backtrace_nat.ni.o
-   CC runtime/clambda_checks.ni.o
-   CC runtime/dynlink_nat.ni.o
-   CC runtime/fail_nat.ni.o
-   CC runtime/frame_descriptors.ni.o
-   CC runtime/startup_nat.ni.o
-   CC runtime/signals_nat.ni.o
-   ASM runtime/amd64.i.o
-   CC runtime/addrmap.npic.o
-   CC runtime/afl.npic.o
-   CC runtime/alloc.npic.o
-   CC runtime/array.npic.o
-   CC runtime/backtrace.npic.o
-   CC runtime/bigarray.npic.o
-   CC runtime/callback.npic.o
-   CC runtime/codefrag.npic.o
-   CC runtime/compare.npic.o
-   CC runtime/custom.npic.o
-   CC runtime/debugger.npic.o
-   CC runtime/domain.npic.o
-   CC runtime/dynlink.npic.o
-   CC runtime/extern.npic.o
-   CC runtime/fiber.npic.o
-   CC runtime/finalise.npic.o
-   CC runtime/floats.npic.o
-   CC runtime/gc_ctrl.npic.o
-   CC runtime/gc_stats.npic.o
-   CC runtime/globroots.npic.o
-   CC runtime/hash.npic.o
-   CC runtime/intern.npic.o
-   CC runtime/ints.npic.o
-   CC runtime/io.npic.o
-   CC runtime/lexing.npic.o
-   CC runtime/lf_skiplist.npic.o
-   CC runtime/main.npic.o
-   CC runtime/major_gc.npic.o
-   CC runtime/md5.npic.o
-   CC runtime/memory.npic.o
-   CC runtime/memprof.npic.o
-   CC runtime/meta.npic.o
-   CC runtime/minor_gc.npic.o
-   CC runtime/misc.npic.o
-   CC runtime/obj.npic.o
-   CC runtime/parsing.npic.o
-   CC runtime/platform.npic.o
-   CC runtime/printexc.npic.o
-   CC runtime/prng.npic.o
-   CC runtime/roots.npic.o
-   CC runtime/runtime_events.npic.o
-   CC runtime/shared_heap.npic.o
-   CC runtime/signals.npic.o
-   CC runtime/skiplist.npic.o
-   CC runtime/startup_aux.npic.o
-   CC runtime/str.npic.o
-   CC runtime/sync.npic.o
-   CC runtime/sys.npic.o
-   CC runtime/unix.npic.o
-   CC runtime/weak.npic.o
-   CC runtime/backtrace_nat.npic.o
-   CC runtime/clambda_checks.npic.o
-   CC runtime/dynlink_nat.npic.o
-   CC runtime/fail_nat.npic.o
-   CC runtime/frame_descriptors.npic.o
-   CC runtime/startup_nat.npic.o
-   CC runtime/signals_nat.npic.o
-   ASM runtime/amd64_libasmrunpic.o
-   MKLIB runtime/libasmrun.a
-   MKLIB runtime/libasmrund.a
-   MKLIB runtime/libasmruni.a
-   MKLIB runtime/libasmrun_pic.a
-   MKDLL runtime/libasmrun_shared.so
- cd stdlib; ln -sf ../runtime/libasmrun.a .
- /Library/Developer/CommandLineTools/usr/bin/make ocamlopt
-   OCAMLC asmcomp/x86_ast.cmi
- cd asmcomp; ln -sf amd64/arch.ml .
- cd asmcomp; ln -sf amd64/arch.mli .
-   OCAMLC asmcomp/cmm.cmi
- cd asmcomp; ln -sf amd64/proc.ml .
- cd asmcomp; ln -sf amd64/selection.ml .
- cd asmcomp; ln -sf amd64/CSE.ml .
-   OCAMLC asmcomp/coloring.cmi
- cd asmcomp; ln -sf amd64/reload.ml .
- cd asmcomp; ln -sf amd64/scheduling.ml .
-   OCAMLLEX tools/cvt_emit.ml
-   OCAMLC tools/cvt_emit.cmi
-   OCAMLC asmcomp/asmlink.cmi
-   OCAMLC asmcomp/asmlibrarian.cmi
-   OCAMLC asmcomp/asmpackager.cmi
-   OCAMLC driver/opterrors.cmi
-   OCAMLC driver/optcompile.cmi
-   OCAMLC driver/optmaindriver.cmi
-   OCAMLC driver/optmain.cmi
-   OCAMLC asmcomp/x86_proc.cmi
-   OCAMLC asmcomp/x86_dsl.cmi
-   OCAMLC asmcomp/x86_gas.cmi
-   OCAMLC asmcomp/x86_masm.cmi
-   OCAMLC asmcomp/arch.cmi
-   OCAMLC tools/cvt_emit.cmo
-   OCAMLC asmcomp/asmlibrarian.cmo
-   OCAMLC driver/opterrors.cmo
-   OCAMLC driver/optmain.cmo
-   OCAMLC asmcomp/cmm.cmo
-   OCAMLC asmcomp/printcmm.cmi
-   OCAMLC asmcomp/reg.cmi
-   OCAMLC asmcomp/afl_instrument.cmi
-   OCAMLC asmcomp/strmatch.cmi
-   OCAMLC asmcomp/cmmgen_state.cmi
-   OCAMLC asmcomp/cmmgen.cmi
-   OCAMLC asmcomp/cmm_invariants.cmi
-   OCAMLC asmcomp/x86_proc.cmo
-   OCAMLC asmcomp/x86_dsl.cmo
-   OCAMLC asmcomp/x86_gas.cmo
-   OCAMLC asmcomp/x86_masm.cmo
-   OCAMLC asmcomp/arch.cmo
-   OCAMLC asmcomp/printcmm.cmo
-   OCAMLC asmcomp/afl_instrument.cmo
-   OCAMLC asmcomp/strmatch.cmo
-   OCAMLC asmcomp/cmmgen_state.cmo
-   OCAMLC asmcomp/cmm_helpers.cmi
-   OCAMLC asmcomp/cmm_invariants.cmo
-   LINKC tools/cvt_emit
-   OCAMLC asmcomp/reg.cmo
-   OCAMLC asmcomp/mach.cmi
-   OCAMLC asmcomp/cmmgen.cmo
-   GEN asmcomp/emit.ml
-   OCAMLC asmcomp/mach.cmo
-   OCAMLC asmcomp/proc.cmi
-   OCAMLC asmcomp/interval.cmi
-   OCAMLC asmcomp/dataflow.cmi
-   OCAMLC asmcomp/polling.cmi
-   OCAMLC asmcomp/selectgen.cmi
-   OCAMLC asmcomp/selection.cmi
-   OCAMLC asmcomp/comballoc.cmi
-   OCAMLC asmcomp/CSEgen.cmi
-   OCAMLC asmcomp/CSE.cmi
-   OCAMLC asmcomp/liveness.cmi
-   OCAMLC asmcomp/spill.cmi
-   OCAMLC asmcomp/split.cmi
-   OCAMLC asmcomp/interf.cmi
-   OCAMLC asmcomp/coloring.cmo
-   OCAMLC asmcomp/linscan.cmi
-   OCAMLC asmcomp/reloadgen.cmi
-   OCAMLC asmcomp/reload.cmi
-   OCAMLC asmcomp/deadcode.cmi
-   OCAMLC asmcomp/linear.cmi
-   OCAMLC driver/optmaindriver.cmo
-   OCAMLC asmcomp/proc.cmo
-   OCAMLC asmcomp/cmm_helpers.cmo
-   OCAMLC asmcomp/interval.cmo
-   OCAMLC asmcomp/printmach.cmi
-   OCAMLC asmcomp/dataflow.cmo
-   OCAMLC asmcomp/polling.cmo
-   OCAMLC asmcomp/selectgen.cmo
-   OCAMLC asmcomp/selection.cmo
-   OCAMLC asmcomp/comballoc.cmo
-   OCAMLC asmcomp/CSEgen.cmo
-   OCAMLC asmcomp/CSE.cmo
-   OCAMLC asmcomp/liveness.cmo
-   OCAMLC asmcomp/spill.cmo
-   OCAMLC asmcomp/split.cmo
-   OCAMLC asmcomp/interf.cmo
-   OCAMLC asmcomp/linscan.cmo
-   OCAMLC asmcomp/reloadgen.cmo
-   OCAMLC asmcomp/reload.cmo
-   OCAMLC asmcomp/deadcode.cmo
-   OCAMLC asmcomp/linear.cmo
-   OCAMLC asmcomp/printlinear.cmi
-   OCAMLC asmcomp/linearize.cmi
-   OCAMLC file_formats/linear_format.cmi
-   OCAMLC asmcomp/schedgen.cmi
-   OCAMLC asmcomp/scheduling.cmi
-   OCAMLC asmcomp/branch_relaxation_intf.cmi
-   OCAMLC asmcomp/emitenv.cmi
-   OCAMLC asmcomp/emit.cmi
-   OCAMLC asmcomp/printmach.cmo
-   OCAMLC asmcomp/printlinear.cmo
-   OCAMLC asmcomp/linearize.cmo
-   OCAMLC file_formats/linear_format.cmo
-   OCAMLC asmcomp/schedgen.cmo
-   OCAMLC asmcomp/scheduling.cmo
-   OCAMLC asmcomp/branch_relaxation.cmi
-   OCAMLC asmcomp/emitaux.cmi
-   OCAMLC asmcomp/branch_relaxation.cmo
-   OCAMLC asmcomp/emitaux.cmo
-   OCAMLC asmcomp/emit.cmo
-   OCAMLC asmcomp/asmgen.cmi
-   OCAMLC asmcomp/asmgen.cmo
-   OCAMLC asmcomp/asmlink.cmo
-   OCAMLC asmcomp/asmpackager.cmo
-   OCAMLC driver/optcompile.cmo
-   LINKC compilerlibs/ocamloptcomp.cma
-   LINKC ocamlopt
- /Library/Developer/CommandLineTools/usr/bin/make libraryopt
- /Library/Developer/CommandLineTools/usr/bin/make -C stdlib allopt
-   OCAMLOPT camlinternalFormatBasics.cmx
-   OCAMLOPT stdlib.cmx
-   OCAMLOPT stdlib__Either.cmx
-   OCAMLOPT stdlib__Sys.cmx
-   OCAMLOPT stdlib__Atomic.cmx
-   OCAMLOPT stdlib__Bool.cmx
-   OCAMLOPT stdlib__Char.cmx
-   OCAMLOPT stdlib__Int.cmx
-   OCAMLOPT stdlib__Unit.cmx
-   OCAMLOPT stdlib__Int64.cmx
-   OCAMLOPT stdlib__Mutex.cmx
-   OCAMLOPT std_exit.cmx
-   OCAMLOPT stdlib__Nativeint.cmx
-   OCAMLOPT stdlib__Int32.cmx
-   OCAMLOPT stdlib__Condition.cmx
-   OCAMLOPT stdlib__Uchar.cmx
-   OCAMLOPT stdlib__Semaphore.cmx
-   OCAMLOPT stdlib__Obj.cmx
-   OCAMLOPT stdlib__Type.cmx
-   OCAMLOPT camlinternalLazy.cmx
-   OCAMLOPT stdlib__Callback.cmx
-   OCAMLOPT stdlib__Lazy.cmx
-   OCAMLOPT stdlib__Seq.cmx
-   OCAMLOPT stdlib__Option.cmx
-   OCAMLOPT stdlib__Result.cmx
-   OCAMLOPT stdlib__List.cmx
-   OCAMLOPT stdlib__Bytes.cmx
-   OCAMLOPT stdlib__Array.cmx
-   OCAMLOPT stdlib__Queue.cmx
-   OCAMLOPT stdlib__ArrayLabels.cmx
-   OCAMLOPT stdlib__Float.cmx
-   OCAMLOPT stdlib__Set.cmx
-   OCAMLOPT stdlib__Map.cmx
-   OCAMLOPT stdlib__Stack.cmx
-   OCAMLOPT stdlib__Domain.cmx
-   OCAMLOPT stdlib__ListLabels.cmx
-   OCAMLOPT stdlib__String.cmx
-   OCAMLOPT stdlib__BytesLabels.cmx
-   OCAMLOPT stdlib__Marshal.cmx
-   OCAMLOPT stdlib__Lexing.cmx
-   OCAMLOPT stdlib__Buffer.cmx
-   OCAMLOPT stdlib__Digest.cmx
-   OCAMLOPT stdlib__Complex.cmx
-   OCAMLOPT stdlib__StringLabels.cmx
-   OCAMLOPT stdlib__StdLabels.cmx
-   OCAMLOPT stdlib__Bigarray.cmx
-   OCAMLOPT camlinternalOO.cmx
-   OCAMLOPT stdlib__Parsing.cmx
-   OCAMLOPT camlinternalFormat.cmx
-   OCAMLOPT stdlib__Random.cmx
-   OCAMLOPT stdlib__Oo.cmx
-   OCAMLOPT camlinternalMod.cmx
-   OCAMLOPT stdlib__Hashtbl.cmx
-   OCAMLOPT stdlib__Weak.cmx
-   OCAMLOPT stdlib__Ephemeron.cmx
-   OCAMLOPT stdlib__MoreLabels.cmx
-   OCAMLOPT stdlib__Printf.cmx
-   OCAMLOPT stdlib__Format.cmx
-   OCAMLOPT stdlib__Arg.cmx
-   OCAMLOPT stdlib__Printexc.cmx
-   OCAMLOPT stdlib__Scanf.cmx
-   OCAMLOPT stdlib__Fun.cmx
-   OCAMLOPT stdlib__Effect.cmx
-   OCAMLOPT stdlib__Gc.cmx
-   OCAMLOPT stdlib__Filename.cmx
-   OCAMLOPT stdlib__In_channel.cmx
-   OCAMLOPT stdlib__Out_channel.cmx
-   LINKOPT stdlib.cmxa
- /Library/Developer/CommandLineTools/usr/bin/make ocamlc.opt
-   OCAMLOPT utils/config.cmx
-   OCAMLOPT utils/build_path_prefix_map.cmx
-   OCAMLOPT utils/arg_helper.cmx
-   OCAMLOPT utils/local_store.cmx
-   OCAMLOPT utils/terminfo.cmx
-   OCAMLOPT utils/int_replace_polymorphic_compare.cmx
-   OCAMLOPT utils/domainstate.cmx
-   OCAMLOPT utils/binutils.cmx
-   OCAMLOPT utils/lazy_backtrack.cmx
-   OCAMLOPT parsing/camlinternalMenhirLib.cmx
-   OCAMLOPT lambda/switch.cmx
-   OCAMLOPT lambda/runtimedef.cmx
-   OCAMLOPT bytecomp/opcodes.cmx
-   OCAMLOPT utils/misc.cmx
-   OCAMLOPT bytecomp/bytesections.cmx
-   OCAMLOPT utils/identifiable.cmx
-   OCAMLOPT utils/load_path.cmx
-   OCAMLOPT utils/profile.cmx
-   OCAMLOPT utils/warnings.cmx
-   OCAMLOPT utils/consistbl.cmx
-   OCAMLOPT utils/targetint.cmx
-   OCAMLOPT utils/diffing.cmx
-   OCAMLOPT parsing/longident.cmx
-   OCAMLOPT bytecomp/dll.cmx
-   OCAMLOPT utils/diffing_with_keys.cmx
-   OCAMLOPT utils/numbers.cmx
-   OCAMLOPT utils/clflags.cmx
-   OCAMLOPT utils/strongly_connected_components.cmx
-   OCAMLOPT utils/ccomp.cmx
-   OCAMLOPT parsing/location.cmx
-   OCAMLOPT typing/ident.cmx
-   OCAMLOPT typing/path.cmx
-   OCAMLOPT typing/shape.cmx
-   OCAMLOPT parsing/docstrings.cmx
-   OCAMLOPT parsing/syntaxerr.cmx
-   OCAMLOPT parsing/pprintast.cmx
-   OCAMLOPT parsing/ast_iterator.cmx
-   OCAMLOPT parsing/attr_helper.cmx
-   OCAMLOPT parsing/builtin_attributes.cmx
-   OCAMLOPT lambda/debuginfo.cmx
-   OCAMLOPT driver/compenv.cmx
-   OCAMLOPT driver/errors.cmx
-   OCAMLOPT typing/primitive.cmx
-   OCAMLOPT parsing/ast_helper.cmx
-   OCAMLOPT parsing/depend.cmx
-   OCAMLOPT typing/type_immediacy.cmx
-   OCAMLOPT typing/types.cmx
-   OCAMLOPT parsing/ast_invariants.cmx
-   OCAMLOPT driver/main_args.cmx
-   OCAMLOPT typing/btype.cmx
-   OCAMLOPT file_formats/cmi_format.cmx
-   OCAMLOPT typing/errortrace.cmx
-   OCAMLOPT parsing/parser.cmx
-   OCAMLOPT parsing/ast_mapper.cmx
-   OCAMLOPT typing/persistent_env.cmx
-   OCAMLOPT typing/predef.cmx
-   OCAMLOPT typing/datarepr.cmx
-   OCAMLOPT typing/signature_group.cmx
-   OCAMLOPT typing/subst.cmx
-   OCAMLOPT typing/env.cmx
-   OCAMLOPT parsing/printast.cmx
-   OCAMLOPT typing/oprint.cmx
-   OCAMLOPT typing/typedtree.cmx
-   OCAMLOPT typing/ctype.cmx
-   OCAMLOPT typing/typedecl_properties.cmx
-   OCAMLOPT lambda/lambda.cmx
-   OCAMLOPT typing/printtyped.cmx
-   OCAMLOPT typing/tast_iterator.cmx
-   OCAMLOPT typing/tast_mapper.cmx
-   OCAMLOPT typing/untypeast.cmx
-   OCAMLOPT typing/printpat.cmx
-   OCAMLOPT lambda/translobj.cmx
-   OCAMLOPT lambda/translattribute.cmx
-   OCAMLOPT lambda/tmc.cmx
-   OCAMLOPT bytecomp/instruct.cmx
-   OCAMLOPT bytecomp/meta.cmx
-   OCAMLOPT bytecomp/symtable.cmx
-   OCAMLOPT lambda/simplif.cmx
-   OCAMLOPT typing/printtyp.cmx
-   OCAMLOPT typing/mtype.cmx
-   OCAMLOPT typing/patterns.cmx
-   OCAMLOPT typing/typedecl_variance.cmx
-   OCAMLOPT typing/typedecl_unboxed.cmx
-   OCAMLOPT typing/typedecl_separability.cmx
-   OCAMLOPT typing/typedecl_immediacy.cmx
-   OCAMLOPT typing/typeopt.cmx
-   OCAMLOPT typing/parmatch.cmx
-   OCAMLOPT typing/rec_check.cmx
-   OCAMLOPT typing/includeclass.cmx
-   OCAMLOPT typing/envaux.cmx
-   OCAMLOPT typing/includecore.cmx
-   OCAMLOPT typing/stypes.cmx
-   OCAMLOPT typing/typetexp.cmx
-   OCAMLOPT lambda/printlambda.cmx
-   OCAMLOPT typing/typedecl.cmx
-   OCAMLOPT lambda/matching.cmx
-   OCAMLOPT bytecomp/printinstr.cmx
-   OCAMLOPT parsing/lexer.cmx
-   OCAMLOPT parsing/parse.cmx
-   OCAMLOPT file_formats/cmt_format.cmx
-   OCAMLOPT driver/pparse.cmx
-   OCAMLOPT typing/cmt2annot.cmx
-   OCAMLOPT typing/includemod.cmx
-   OCAMLOPT typing/typecore.cmx
-   OCAMLOPT driver/makedepend.cmx
-   OCAMLOPT typing/includemod_errorprinter.cmx
-   OCAMLOPT lambda/translprim.cmx
-   OCAMLOPT bytecomp/bytegen.cmx
-   OCAMLOPT typing/typeclass.cmx
-   OCAMLOPT lambda/translcore.cmx
-   OCAMLOPT lambda/translclass.cmx
-   OCAMLOPT typing/typemod.cmx
-   OCAMLOPT lambda/translmod.cmx
-   OCAMLOPT bytecomp/emitcode.cmx
-   OCAMLOPT bytecomp/bytelink.cmx
-   OCAMLOPT driver/compmisc.cmx
-   OCAMLOPT driver/compile_common.cmx
-   OCAMLOPT bytecomp/bytelibrarian.cmx
-   OCAMLOPT bytecomp/bytepackager.cmx
-   LINKOPT compilerlibs/ocamlcommon.cmxa
-   OCAMLOPT driver/compile.cmx
-   OCAMLOPT driver/maindriver.cmx
-   LINKOPT compilerlibs/ocamlbytecomp.cmxa
-   OCAMLOPT driver/main.cmx
-   LINKOPT ocamlc.opt
- ld: warning: ignoring duplicate libraries: '-lpthread'
- /Library/Developer/CommandLineTools/usr/bin/make otherlibraries ocamldebugger ocamldoc \
- 	  
- /Library/Developer/CommandLineTools/usr/bin/make lex-all
- make[3]: Nothing to be done for `lex-all'.
- /Library/Developer/CommandLineTools/usr/bin/make tools-all
- make[3]: Nothing to be done for `tools-all'.
- /Library/Developer/CommandLineTools/usr/bin/make -C otherlibs all
- for lib in dynlink runtime_events unix str systhreads; do (/Library/Developer/CommandLineTools/usr/bin/make -C $lib all) || exit $?; done
-   GEN dynlink_compilerlibs/Makefile
- 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/local_store.ml dynlink_compilerlibs/local_store.ml
- cp ../../utils/load_path.ml dynlink_compilerlibs/load_path.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/int_replace_polymorphic_compare.ml dynlink_compilerlibs/int_replace_polymorphic_compare.ml
- cp ../../utils/lazy_backtrack.ml dynlink_compilerlibs/lazy_backtrack.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/shape.ml dynlink_compilerlibs/shape.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/local_store.mli dynlink_compilerlibs/local_store.mli
- cp ../../utils/load_path.mli dynlink_compilerlibs/load_path.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/int_replace_polymorphic_compare.mli dynlink_compilerlibs/int_replace_polymorphic_compare.mli
- cp ../../utils/lazy_backtrack.mli dynlink_compilerlibs/lazy_backtrack.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/shape.mli dynlink_compilerlibs/shape.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
-   OCAMLDEP dynlink_compilerlibs/.depend
-   OCAMLC dynlink_compilerlibs/binutils.cmi
-   OCAMLC dynlink_compilerlibs/config.cmi
-   OCAMLC dynlink_compilerlibs/build_path_prefix_map.cmi
-   OCAMLC dynlink_compilerlibs/identifiable.cmi
-   OCAMLC dynlink_compilerlibs/arg_helper.cmi
-   OCAMLC dynlink_compilerlibs/local_store.cmi
-   OCAMLC dynlink_compilerlibs/load_path.cmi
-   OCAMLC dynlink_compilerlibs/profile.cmi
-   OCAMLC dynlink_compilerlibs/terminfo.cmi
-   OCAMLC dynlink_compilerlibs/warnings.cmi
-   OCAMLC dynlink_compilerlibs/int_replace_polymorphic_compare.cmi
-   OCAMLC dynlink_compilerlibs/lazy_backtrack.cmi
-   OCAMLC dynlink_compilerlibs/longident.cmi
-   OCAMLC dynlink_compilerlibs/runtimedef.cmi
-   OCAMLC dynlink_compilerlibs/opcodes.cmi
-   OCAMLC dynlink_compilerlibs/bytesections.cmi
-   OCAMLC dynlink_compilerlibs/dll.cmi
-   OCAMLC dynlink_types.cmi
- cp dynlink_platform_intf.ml dynlink_platform_intf.mli
-   OCAMLC dynlink.cmi
-   OCAMLC dynlink_compilerlibs/binutils.cmo
-   OCAMLC dynlink_compilerlibs/config.cmo
-   OCAMLC dynlink_compilerlibs/build_path_prefix_map.cmo
-   OCAMLC dynlink_compilerlibs/misc.cmi
-   OCAMLC dynlink_compilerlibs/arg_helper.cmo
-   OCAMLC dynlink_compilerlibs/local_store.cmo
-   OCAMLC dynlink_compilerlibs/terminfo.cmo
-   OCAMLC dynlink_compilerlibs/int_replace_polymorphic_compare.cmo
-   OCAMLC dynlink_compilerlibs/lazy_backtrack.cmo
-   OCAMLC dynlink_compilerlibs/location.cmi
-   OCAMLC dynlink_compilerlibs/runtimedef.cmo
-   OCAMLC dynlink_compilerlibs/opcodes.cmo
-   OCAMLC dynlink_compilerlibs/bytesections.cmo
-   OCAMLC dynlink_types.cmo
-   OCAMLC dynlink_platform_intf.cmi
- cp dynlink.cmi dynlink.mli byte/
-   OCAMLC dynlink_compilerlibs/numbers.cmi
-   OCAMLC dynlink_compilerlibs/asttypes.cmi
-   OCAMLC dynlink_compilerlibs/syntaxerr.cmi
-   OCAMLC dynlink_compilerlibs/ident.cmi
-   OCAMLC dynlink_compilerlibs/dll.cmo
-   OCAMLC dynlink_compilerlibs/cmxs_format.cmi
-   OCAMLC dynlink_compilerlibs/misc.cmo
-   OCAMLC dynlink_compilerlibs/identifiable.cmo
-   OCAMLC dynlink_compilerlibs/load_path.cmo
-   OCAMLC dynlink_compilerlibs/clflags.cmi
-   OCAMLC dynlink_compilerlibs/profile.cmo
-   OCAMLC dynlink_compilerlibs/consistbl.cmi
-   OCAMLC dynlink_compilerlibs/warnings.cmo
-   OCAMLC dynlink_compilerlibs/longident.cmo
-   OCAMLC dynlink_compilerlibs/parsetree.cmi
-   OCAMLC dynlink_compilerlibs/syntaxerr.cmo
-   OCAMLC dynlink_compilerlibs/path.cmi
-   OCAMLC dynlink_compilerlibs/debuginfo.cmi
-   OCAMLC dynlink_compilerlibs/cmo_format.cmi
-   OCAMLC dynlink_compilerlibs/asttypes.cmo
-   OCAMLC dynlink_compilerlibs/cmxs_format.cmo
-   OCAMLC dynlink_platform_intf.cmo
-   OCAMLC dynlink_common.cmi
-   OCAMLC dynlink_compilerlibs/numbers.cmo
-   OCAMLC dynlink_compilerlibs/clflags.cmo
-   OCAMLC dynlink_compilerlibs/consistbl.cmo
-   OCAMLC dynlink_compilerlibs/location.cmo
-   OCAMLC dynlink_compilerlibs/docstrings.cmi
-   OCAMLC dynlink_compilerlibs/ast_mapper.cmi
-   OCAMLC dynlink_compilerlibs/attr_helper.cmi
-   OCAMLC dynlink_compilerlibs/builtin_attributes.cmi
-   OCAMLC dynlink_compilerlibs/ident.cmo
-   OCAMLC dynlink_compilerlibs/path.cmo
-   OCAMLC dynlink_compilerlibs/type_immediacy.cmi
-   OCAMLC dynlink_compilerlibs/shape.cmi
-   OCAMLC dynlink_compilerlibs/debuginfo.cmo
-   OCAMLC dynlink_compilerlibs/parsetree.cmo
-   OCAMLC dynlink_compilerlibs/cmo_format.cmo
-   OCAMLC dynlink_compilerlibs/docstrings.cmo
-   OCAMLC dynlink_compilerlibs/ast_helper.cmi
-   OCAMLC dynlink_compilerlibs/attr_helper.cmo
-   OCAMLC dynlink_compilerlibs/builtin_attributes.cmo
-   OCAMLC dynlink_compilerlibs/outcometree.cmi
-   OCAMLC dynlink_compilerlibs/type_immediacy.cmo
-   OCAMLC dynlink_compilerlibs/shape.cmo
-   OCAMLC dynlink_compilerlibs/primitive.cmi
-   OCAMLC dynlink_compilerlibs/outcometree.cmo
-   OCAMLC dynlink_compilerlibs/ast_helper.cmo
-   OCAMLC dynlink_compilerlibs/ast_mapper.cmo
-   OCAMLC dynlink_compilerlibs/primitive.cmo
-   OCAMLC dynlink_compilerlibs/types.cmi
-   OCAMLC dynlink_compilerlibs/types.cmo
-   OCAMLC dynlink_compilerlibs/btype.cmi
-   OCAMLC dynlink_compilerlibs/subst.cmi
-   OCAMLC dynlink_compilerlibs/predef.cmi
-   OCAMLC dynlink_compilerlibs/datarepr.cmi
-   OCAMLC dynlink_compilerlibs/cmi_format.cmi
-   OCAMLC dynlink_compilerlibs/cmi_format.cmo
-   OCAMLC dynlink_compilerlibs/persistent_env.cmi
-   OCAMLC dynlink_compilerlibs/env.cmi
-   OCAMLC dynlink_compilerlibs/btype.cmo
-   OCAMLC dynlink_compilerlibs/subst.cmo
-   OCAMLC dynlink_compilerlibs/predef.cmo
-   OCAMLC dynlink_compilerlibs/datarepr.cmo
-   OCAMLC dynlink_compilerlibs/persistent_env.cmo
-   OCAMLC dynlink_compilerlibs/env.cmo
-   OCAMLC dynlink_compilerlibs/lambda.cmi
-   OCAMLC dynlink_compilerlibs/lambda.cmo
-   OCAMLC dynlink_compilerlibs/instruct.cmi
-   OCAMLC dynlink_compilerlibs/symtable.cmi
-   OCAMLC dynlink_compilerlibs/instruct.cmo
-   OCAMLC dynlink_compilerlibs/meta.cmi
-   OCAMLC dynlink_compilerlibs/meta.cmo
-   OCAMLC dynlink_compilerlibs/symtable.cmo
-   OCAMLC byte/dynlink_compilerlibs.cmo
-   OCAMLC dynlink_common.cmo
-   OCAMLC byte/dynlink.cmo
-   LINKC dynlink.cma
-   CC runtime_events_consumer.b.o
-   CC runtime_events_consumer.n.o
-   OCAMLC runtime_events.cmi
-   OCAMLC runtime_events.cmo
-   OCAMLMKLIB runtime_events.cma
-   OCAMLMKLIB libcamlruntime_eventsbyt.a
-   CC access.b.o
-   CC addrofstr.b.o
-   CC chdir.b.o
-   CC chmod.b.o
-   CC cst2constr.b.o
-   CC cstringv.b.o
-   CC execv.b.o
-   CC execve.b.o
-   CC execvp.b.o
-   CC fsync.b.o
-   CC mkdir.b.o
-   CC exit.b.o
-   CC getaddrinfo.b.o
-   CC getcwd.b.o
-   CC gethost.b.o
-   CC gethostname.b.o
-   CC getnameinfo.b.o
-   CC getproto.b.o
-   CC getserv.b.o
-   CC gmtime.b.o
-   CC mmap_ba.b.o
-   CC putenv.b.o
-   CC rmdir.b.o
-   CC socketaddr.b.o
-   CC strofaddr.b.o
-   CC time.b.o
-   CC unlink.b.o
-   CC accept_unix.b.o
-   CC bind_unix.b.o
-   CC channels_unix.b.o
-   CC close_unix.b.o
-   CC connect_unix.b.o
-   CC dup_unix.b.o
-   CC envir_unix.b.o
-   CC errmsg_unix.b.o
-   CC getpeername_unix.b.o
-   CC getpid_unix.b.o
-   CC getsockname_unix.b.o
-   CC gettimeofday_unix.b.o
-   CC isatty_unix.b.o
-   CC link_unix.b.o
-   CC listen_unix.b.o
-   CC lockf_unix.b.o
-   CC lseek_unix.b.o
-   CC mmap_unix.b.o
-   CC open_unix.b.o
-   CC pipe_unix.b.o
-   CC read_unix.b.o
-   CC readlink_unix.b.o
-   CC realpath_unix.b.o
-   CC rename_unix.b.o
-   CC select_unix.b.o
-   CC sendrecv_unix.b.o
-   CC shutdown_unix.b.o
-   CC sleep_unix.b.o
-   CC socket_unix.b.o
-   CC socketpair_unix.b.o
-   CC sockopt_unix.b.o
-   CC stat_unix.b.o
-   CC symlink_unix.b.o
-   CC times_unix.b.o
-   CC truncate_unix.b.o
-   CC unixsupport_unix.b.o
-   CC utimes_unix.b.o
-   CC write_unix.b.o
-   CC alarm.b.o
-   CC chown.b.o
-   CC chroot.b.o
-   CC closedir.b.o
-   CC dup2.b.o
-   CC fchmod.b.o
-   CC fchown.b.o
-   CC fcntl.b.o
-   CC fork.b.o
-   CC ftruncate.b.o
-   CC getegid.b.o
-   CC geteuid.b.o
-   CC getgid.b.o
-   CC getgr.b.o
-   CC getgroups.b.o
-   CC getlogin.b.o
-   CC getppid.b.o
-   CC getpw.b.o
-   CC getuid.b.o
-   CC initgroups.b.o
-   CC itimer.b.o
-   CC kill.b.o
-   CC mkfifo.b.o
-   CC nice.b.o
-   CC opendir.b.o
-   CC readdir.b.o
-   CC rewinddir.b.o
-   CC setgid.b.o
-   CC setgroups.b.o
-   CC setsid.b.o
-   CC setuid.b.o
-   CC signals.b.o
-   CC spawn.b.o
-   CC termios.b.o
-   CC umask.b.o
-   CC wait.b.o
-   CC access.n.o
-   CC addrofstr.n.o
-   CC chdir.n.o
-   CC chmod.n.o
-   CC cst2constr.n.o
-   CC cstringv.n.o
-   CC execv.n.o
-   CC execve.n.o
-   CC execvp.n.o
-   CC fsync.n.o
-   CC mkdir.n.o
-   CC exit.n.o
-   CC getaddrinfo.n.o
-   CC getcwd.n.o
-   CC gethost.n.o
-   CC gethostname.n.o
-   CC getnameinfo.n.o
-   CC getproto.n.o
-   CC getserv.n.o
-   CC gmtime.n.o
-   CC mmap_ba.n.o
-   CC putenv.n.o
-   CC rmdir.n.o
-   CC socketaddr.n.o
-   CC strofaddr.n.o
-   CC time.n.o
-   CC unlink.n.o
-   CC accept_unix.n.o
-   CC bind_unix.n.o
-   CC channels_unix.n.o
-   CC close_unix.n.o
-   CC connect_unix.n.o
-   CC dup_unix.n.o
-   CC envir_unix.n.o
-   CC errmsg_unix.n.o
-   CC getpeername_unix.n.o
-   CC getpid_unix.n.o
-   CC getsockname_unix.n.o
-   CC gettimeofday_unix.n.o
-   CC isatty_unix.n.o
-   CC link_unix.n.o
-   CC listen_unix.n.o
-   CC lockf_unix.n.o
-   CC lseek_unix.n.o
-   CC mmap_unix.n.o
-   CC open_unix.n.o
-   CC pipe_unix.n.o
-   CC read_unix.n.o
-   CC readlink_unix.n.o
-   CC realpath_unix.n.o
-   CC rename_unix.n.o
-   CC select_unix.n.o
-   CC sendrecv_unix.n.o
-   CC shutdown_unix.n.o
-   CC sleep_unix.n.o
-   CC socket_unix.n.o
-   CC socketpair_unix.n.o
-   CC sockopt_unix.n.o
-   CC stat_unix.n.o
-   CC symlink_unix.n.o
-   CC times_unix.n.o
-   CC truncate_unix.n.o
-   CC unixsupport_unix.n.o
-   CC utimes_unix.n.o
-   CC write_unix.n.o
-   CC alarm.n.o
-   CC chown.n.o
-   CC chroot.n.o
-   CC closedir.n.o
-   CC dup2.n.o
-   CC fchmod.n.o
-   CC fchown.n.o
-   CC fcntl.n.o
-   CC fork.n.o
-   CC ftruncate.n.o
-   CC getegid.n.o
-   CC geteuid.n.o
-   CC getgid.n.o
-   CC getgr.n.o
-   CC getgroups.n.o
-   CC getlogin.n.o
-   CC getppid.n.o
-   CC getpw.n.o
-   CC getuid.n.o
-   CC initgroups.n.o
-   CC itimer.n.o
-   CC kill.n.o
-   CC mkfifo.n.o
-   CC nice.n.o
-   CC opendir.n.o
-   CC readdir.n.o
-   CC rewinddir.n.o
-   CC setgid.n.o
-   CC setgroups.n.o
-   CC setsid.n.o
-   CC setuid.n.o
-   CC signals.n.o
-   CC spawn.n.o
-   CC termios.n.o
-   CC umask.n.o
-   CC wait.n.o
- cp unix_unix.ml unix.ml
-   OCAMLC unix.cmi
-   OCAMLC unix.cmo
-   OCAMLC unixLabels.cmi
-   OCAMLC unixLabels.cmo
-   OCAMLMKLIB libunixbyt.a
-   OCAMLMKLIB unix.cma
-   CC strstubs.b.o
-   CC strstubs.n.o
-   OCAMLC str.cmi
-   OCAMLC str.cmo
-   OCAMLMKLIB str.cma
-   OCAMLMKLIB libcamlstrbyt.a
-   CC st_stubs.b.o
-   OCAMLC thread.cmi
-   OCAMLC event.cmi
-   OCAMLC event.cmo
-   OCAMLC thread.cmo
-   OCAMLMKLIB threads.cma
-   OCAMLMKLIB libthreads.a
- /Library/Developer/CommandLineTools/usr/bin/make -C debugger all
- /Library/Developer/CommandLineTools/usr/bin/make -C ocamldoc all
-   OCAMLC odoc_config.cmi
-   OCAMLC int64ops.cmi
-   OCAMLC odoc_messages.cmi
-   OCAMLC primitives.cmi
-   OCAMLC odoc_types.cmi
-   OCAMLC unix_tools.cmi
-   OCAMLC debugger_config.cmi
-   OCAMLYACC odoc_text_parser.ml
-   OCAMLC parameters.cmi
-   OCAMLLEX odoc_text_lexer.ml
-   OCAMLLEX debugger_lexer.ml
-   OCAMLC odoc_name.cmi
-   OCAMLYACC debugger_parser.mli
-   OCAMLC question.cmi
-   OCAMLC odoc_print.cmi
-   OCAMLC exec.cmi
-   OCAMLC odoc_comments_global.cmi
-   OCAMLYACC odoc_parser.ml
-   OCAMLC source.cmi
-   OCAMLLEX odoc_lexer.ml
-   OCAMLC events.cmi
-   OCAMLLEX odoc_see_lexer.ml
-   OCAMLC program_loading.cmi
-   OCAMLC odoc_test.cmi
-   OCAMLC history.cmi
-   OCAMLLEX odoc_ocamlhtml.ml
-   OCAMLC show_source.cmi
-   OCAMLC odoc_ocamlhtml.cmi
-   OCAMLC time_travel.cmi
-   OCAMLC odoc_latex_style.cmi
-   OCAMLC odoc.cmi
-   OCAMLC program_management.cmi
-   OCAMLC frames.cmi
-   OCAMLC show_information.cmi
-   OCAMLC odoc_config.cmo
-   OCAMLC loadprinter.cmi
-   OCAMLC odoc_messages.cmo
-   OCAMLC odoc_global.cmi
-   OCAMLC command_line.cmi
-   OCAMLC odoc_types.cmo
-   OCAMLC int64ops.cmo
-   OCAMLC odoc_misc.cmi
-   OCAMLC primitives.cmo
-   OCAMLC odoc_text_parser.cmi
-   OCAMLC odoc_text.cmi
-   OCAMLC unix_tools.cmo
-   OCAMLC debugger_config.cmo
-   OCAMLC odoc_parameter.cmi
-   OCAMLC parameters.cmo
-   OCAMLC odoc_type.cmi
-   OCAMLC debugcom.cmi
-   OCAMLC input_handling.cmi
-   OCAMLC odoc_print.cmo
-   OCAMLC exec.cmo
-   OCAMLC source.cmo
-   OCAMLC pos.cmi
-   OCAMLC odoc_comments_global.cmo
-   OCAMLC odoc_parser.cmi
-   OCAMLC events.cmo
-   OCAMLC odoc_env.cmi
-   OCAMLC odoc_ocamlhtml.cmo
-   OCAMLC odoc_latex_style.cmo
-   OCAMLC program_loading.cmo
-   OCAMLC odoc_global.cmo
-   OCAMLC symbols.cmi
-   OCAMLC odoc_misc.cmo
-   OCAMLC breakpoints.cmi
-   OCAMLC odoc_text_parser.cmo
-   OCAMLC odoc_text_lexer.cmi
-   OCAMLC trap_barrier.cmi
-   OCAMLC show_source.cmo
-   OCAMLC odoc_name.cmo
-   OCAMLC parser_aux.cmi
-   OCAMLC odoc_parameter.cmo
-   OCAMLC odoc_value.cmi
-   OCAMLC odoc_type.cmo
-   OCAMLC odoc_extension.cmi
-   OCAMLC odoc_exception.cmi
-   OCAMLC input_handling.cmo
-   OCAMLC debugcom.cmo
-   OCAMLC odoc_parser.cmo
-   OCAMLC odoc_lexer.cmi
-   OCAMLC pos.cmo
-   OCAMLC odoc_see_lexer.cmi
-   OCAMLC checkpoints.cmi
-   OCAMLC printval.cmi
-   OCAMLC program_management.cmo
-   OCAMLC odoc_env.cmo
-   OCAMLC frames.cmo
-   OCAMLC eval.cmi
-   OCAMLC debugger_parser.cmi
-   OCAMLC checkpoints.cmo
-   OCAMLC symbols.cmo
-   OCAMLC odoc_text_lexer.cmo
-   OCAMLC breakpoints.cmo
-   OCAMLC trap_barrier.cmo
-   OCAMLC odoc_text.cmo
-   OCAMLC history.cmo
-   OCAMLC odoc_value.cmo
-   OCAMLC odoc_extension.cmo
-   OCAMLC printval.cmo
-   OCAMLC odoc_exception.cmo
-   OCAMLC time_travel.cmo
-   OCAMLC odoc_class.cmi
-   OCAMLC odoc_lexer.cmo
-   OCAMLC eval.cmo
-   OCAMLC odoc_see_lexer.cmo
-   OCAMLC show_information.cmo
-   OCAMLC loadprinter.cmo
-   OCAMLC debugger_parser.cmo
-   OCAMLC main.cmo
-   OCAMLC odoc_class.cmo
-   OCAMLC odoc_module.cmi
-   OCAMLC odoc_str.cmi
-   OCAMLC debugger_lexer.cmi
-   OCAMLC odoc_module.cmo
-   OCAMLC odoc_merge.cmi
-   OCAMLC odoc_sig.cmi
-   OCAMLC odoc_search.cmi
-   OCAMLC odoc_scan.cmi
-   OCAMLC odoc_cross.cmi
-   OCAMLC odoc_comments.cmi
-   OCAMLC odoc_dep.cmi
-   OCAMLC debugger_lexer.cmo
-   OCAMLC odoc_analyse.cmi
-   OCAMLC question.cmo
-   OCAMLC command_line.cmo
-   OCAMLC odoc_str.cmo
-   OCAMLC odoc_merge.cmo
-   OCAMLC odoc_comments.cmo
-   OCAMLC odoc_search.cmo
-   OCAMLC odoc_scan.cmo
-   OCAMLC odoc_cross.cmo
-   OCAMLC odoc_dep.cmo
-   OCAMLC odoc_info.cmi
-   OCAMLC odoc_sig.cmo
-   OCAMLC odoc_ast.cmi
-   OCAMLC odoc_info.cmo
-   OCAMLC odoc_texi.cmi
-   OCAMLC odoc_man.cmi
-   OCAMLC odoc_latex.cmi
-   OCAMLC odoc_dag2html.cmi
-   OCAMLC odoc_dot.cmi
-   OCAMLC odoc_to_text.cmi
-   OCAMLC ocamldebug.cmo
-   OCAMLC odoc_ast.cmo
-   OCAMLC odoc_analyse.cmo
-   OCAMLC odoc_html.cmi
-   OCAMLC odoc_dag2html.cmo
-   OCAMLC odoc_man.cmo
-   OCAMLC odoc_dot.cmo
-   OCAMLC odoc_to_text.cmo
-   OCAMLC odoc_latex.cmo
-   OCAMLC odoc_texi.cmo
-   OCAMLC ocamldebug_entry.cmo
-   LINKC ocamldebug
-   OCAMLC odoc_gen.cmi
-   OCAMLC odoc_html.cmo
-   OCAMLC generators/odoc_todo.cmi
-   OCAMLC generators/odoc_literate.cmi
-   OCAMLC odoc_args.cmi
-   OCAMLC odoc_gen.cmo
-   OCAMLC odoc_test.cmo
-   OCAMLC odoc_args.cmo
-   OCAMLC odoc.cmo
-   OCAMLC generators/odoc_todo.cmo
-   OCAMLC generators/odoc_literate.cmo
-   LINKC odoc_info.cma
-   LINKC ../ocamldoc/ocamldoc
- /Library/Developer/CommandLineTools/usr/bin/make ocamlopt.opt
-   OCAMLOPT middle_end/internal_variable_names.cmx
-   OCAMLOPT middle_end/linkage_name.cmx
-   OCAMLOPT middle_end/backend_var.cmx
-   OCAMLOPT middle_end/clambda_primitives.cmx
-   OCAMLOPT middle_end/flambda/base_types/id_types.cmx
-   OCAMLOPT middle_end/flambda/base_types/tag.cmx
-   OCAMLOPT middle_end/flambda/base_types/static_exception.cmx
-   OCAMLOPT middle_end/flambda/pass_wrapper.cmx
-   OCAMLOPT middle_end/flambda/allocated_const.cmx
-   OCAMLOPT asmcomp/x86_proc.cmx
-   OCAMLOPT asmcomp/arch.cmx
-   OCAMLOPT driver/opterrors.cmx
-   OCAMLOPT middle_end/printclambda_primitives.cmx
-   OCAMLOPT middle_end/semantics_of_primitives.cmx
-   OCAMLOPT middle_end/convert_primitives.cmx
-   OCAMLOPT middle_end/clambda.cmx
-   OCAMLOPT asmcomp/cmm.cmx
-   OCAMLOPT middle_end/compilation_unit.cmx
-   OCAMLOPT asmcomp/x86_dsl.cmx
-   OCAMLOPT asmcomp/x86_gas.cmx
-   OCAMLOPT asmcomp/x86_masm.cmx
-   OCAMLOPT middle_end/variable.cmx
-   OCAMLOPT middle_end/flambda/base_types/export_id.cmx
-   OCAMLOPT middle_end/flambda/base_types/set_of_closures_id.cmx
-   OCAMLOPT asmcomp/printcmm.cmx
-   OCAMLOPT asmcomp/reg.cmx
-   OCAMLOPT asmcomp/afl_instrument.cmx
-   OCAMLOPT asmcomp/strmatch.cmx
-   OCAMLOPT asmcomp/cmm_invariants.cmx
-   OCAMLOPT middle_end/printclambda.cmx
-   OCAMLOPT middle_end/flambda/base_types/set_of_closures_origin.cmx
-   OCAMLOPT asmcomp/mach.cmx
-   OCAMLOPT middle_end/flambda/base_types/closure_element.cmx
-   OCAMLOPT middle_end/symbol.cmx
-   OCAMLOPT middle_end/flambda/base_types/mutable_variable.cmx
-   OCAMLOPT middle_end/flambda/parameter.cmx
-   OCAMLOPT asmcomp/proc.cmx
-   OCAMLOPT asmcomp/dataflow.cmx
-   OCAMLOPT asmcomp/comballoc.cmx
-   OCAMLOPT asmcomp/split.cmx
-   OCAMLOPT asmcomp/reloadgen.cmx
-   OCAMLOPT asmcomp/deadcode.cmx
-   OCAMLOPT asmcomp/linear.cmx
-   OCAMLOPT middle_end/flambda/base_types/closure_id.cmx
-   OCAMLOPT middle_end/flambda/base_types/var_within_closure.cmx
-   OCAMLOPT middle_end/flambda/closure_conversion_aux.cmx
-   OCAMLOPT file_formats/linear_format.cmx
-   OCAMLOPT asmcomp/branch_relaxation.cmx
-   OCAMLOPT asmcomp/emitaux.cmx
-   OCAMLOPT asmcomp/polling.cmx
-   OCAMLOPT asmcomp/reload.cmx
-   OCAMLOPT middle_end/flambda/base_types/closure_origin.cmx
-   OCAMLOPT middle_end/flambda/projection.cmx
-   OCAMLOPT asmcomp/interval.cmx
-   OCAMLOPT asmcomp/CSEgen.cmx
-   OCAMLOPT asmcomp/spill.cmx
-   OCAMLOPT asmcomp/interf.cmx
-   OCAMLOPT asmcomp/coloring.cmx
-   OCAMLOPT asmcomp/linearize.cmx
-   OCAMLOPT asmcomp/schedgen.cmx
-   OCAMLOPT middle_end/flambda/un_anf.cmx
-   OCAMLOPT asmcomp/printmach.cmx
-   OCAMLOPT asmcomp/linscan.cmx
-   OCAMLOPT middle_end/flambda/flambda.cmx
-   OCAMLOPT asmcomp/selectgen.cmx
-   OCAMLOPT asmcomp/CSE.cmx
-   OCAMLOPT asmcomp/scheduling.cmx
-   OCAMLOPT asmcomp/liveness.cmx
-   OCAMLOPT asmcomp/printlinear.cmx
-   OCAMLOPT middle_end/flambda/flambda_iterators.cmx
-   OCAMLOPT middle_end/flambda/effect_analysis.cmx
-   OCAMLOPT middle_end/flambda/initialize_symbol_to_let_symbol.cmx
-   OCAMLOPT middle_end/flambda/alias_analysis.cmx
-   OCAMLOPT asmcomp/selection.cmx
-   OCAMLOPT middle_end/flambda/remove_unused_program_constructs.cmx
-   OCAMLOPT middle_end/flambda/flambda_utils.cmx
-   OCAMLOPT middle_end/flambda/inlining_cost.cmx
-   OCAMLOPT middle_end/flambda/lift_code.cmx
-   OCAMLOPT middle_end/flambda/share_constants.cmx
-   OCAMLOPT middle_end/flambda/ref_to_variables.cmx
-   OCAMLOPT middle_end/flambda/flambda_invariants.cmx
-   OCAMLOPT middle_end/flambda/inlining_stats_types.cmx
-   OCAMLOPT middle_end/flambda/inlining_stats.cmx
-   OCAMLOPT middle_end/flambda/freshening.cmx
-   OCAMLOPT middle_end/flambda/closure_conversion.cmx
-   OCAMLOPT middle_end/flambda/lift_let_to_initialize_symbol.cmx
-   OCAMLOPT middle_end/flambda/find_recursive_functions.cmx
-   OCAMLOPT middle_end/flambda/invariant_params.cmx
-   OCAMLOPT middle_end/flambda/inconstant_idents.cmx
-   OCAMLOPT middle_end/flambda/remove_unused_closure_vars.cmx
-   OCAMLOPT middle_end/flambda/remove_free_vars_equal_to_args.cmx
-   OCAMLOPT middle_end/flambda/closure_offsets.cmx
-   OCAMLOPT middle_end/flambda/remove_unused_arguments.cmx
-   OCAMLOPT middle_end/flambda/simple_value_approx.cmx
-   OCAMLOPT middle_end/flambda/export_info.cmx
-   OCAMLOPT middle_end/flambda/lift_constants.cmx
-   OCAMLOPT middle_end/flambda/simplify_common.cmx
-   OCAMLOPT middle_end/flambda/inline_and_simplify_aux.cmx
-   OCAMLOPT middle_end/flambda/simplify_boxed_integer_ops.cmx
-   OCAMLOPT middle_end/flambda/simplify_primitives.cmx
-   OCAMLOPT middle_end/flambda/export_info_for_pack.cmx
-   OCAMLOPT middle_end/compilenv.cmx
-   OCAMLOPT middle_end/flambda/traverse_for_exported_symbols.cmx
-   OCAMLOPT middle_end/flambda/extract_projections.cmx
-   OCAMLOPT middle_end/flambda/augment_specialised_args.cmx
-   OCAMLOPT middle_end/flambda/inlining_transforms.cmx
-   OCAMLOPT middle_end/flambda/unbox_free_vars_of_closures.cmx
-   OCAMLOPT middle_end/closure/closure.cmx
-   OCAMLOPT middle_end/flambda/import_approx.cmx
-   OCAMLOPT middle_end/flambda/build_export_info.cmx
-   OCAMLOPT middle_end/flambda/flambda_to_clambda.cmx
-   OCAMLOPT asmcomp/cmmgen_state.cmx
-   OCAMLOPT asmcomp/emit.cmx
-   OCAMLOPT middle_end/flambda/inlining_decision.cmx
-   OCAMLOPT asmcomp/cmm_helpers.cmx
-   OCAMLOPT middle_end/flambda/unbox_specialised_args.cmx
-   OCAMLOPT middle_end/flambda/unbox_closures.cmx
-   OCAMLOPT middle_end/flambda/inline_and_simplify.cmx
-   OCAMLOPT middle_end/closure/closure_middle_end.cmx
-   OCAMLOPT middle_end/flambda/flambda_middle_end.cmx
-   OCAMLOPT asmcomp/cmmgen.cmx
-   OCAMLOPT asmcomp/asmgen.cmx
-   OCAMLOPT asmcomp/asmlink.cmx
-   OCAMLOPT driver/optcompile.cmx
-   OCAMLOPT asmcomp/asmlibrarian.cmx
-   OCAMLOPT asmcomp/asmpackager.cmx
-   OCAMLOPT driver/optmaindriver.cmx
-   LINKOPT compilerlibs/ocamloptcomp.cmxa
-   OCAMLOPT driver/optmain.cmx
-   LINKOPT ocamlopt.opt
- /Library/Developer/CommandLineTools/usr/bin/make otherlibrariesopt
- /Library/Developer/CommandLineTools/usr/bin/make -C otherlibs allopt
- for lib in dynlink runtime_events unix str systhreads; do (/Library/Developer/CommandLineTools/usr/bin/make -C $lib allopt) || exit $?; done
-   OCAMLOPT dynlink_compilerlibs/binutils.cmx
-   OCAMLOPT dynlink_compilerlibs/config.cmx
-   OCAMLOPT dynlink_compilerlibs/build_path_prefix_map.cmx
-   OCAMLOPT dynlink_compilerlibs/arg_helper.cmx
-   OCAMLOPT dynlink_compilerlibs/local_store.cmx
-   OCAMLOPT dynlink_compilerlibs/terminfo.cmx
-   OCAMLOPT dynlink_compilerlibs/int_replace_polymorphic_compare.cmx
-   OCAMLOPT dynlink_compilerlibs/lazy_backtrack.cmx
-   OCAMLOPT dynlink_compilerlibs/runtimedef.cmx
-   OCAMLOPT dynlink_compilerlibs/opcodes.cmx
-   OCAMLOPT dynlink_types.cmx
- cp dynlink.cmi dynlink.mli native/
-   OCAMLOPT dynlink_platform_intf.cmx
-   OCAMLOPT dynlink_compilerlibs/misc.cmx
-   OCAMLOPT dynlink_compilerlibs/bytesections.cmx
-   OCAMLOPT dynlink_compilerlibs/identifiable.cmx
-   OCAMLOPT dynlink_compilerlibs/load_path.cmx
-   OCAMLOPT dynlink_compilerlibs/profile.cmx
-   OCAMLOPT dynlink_compilerlibs/consistbl.cmx
-   OCAMLOPT dynlink_compilerlibs/warnings.cmx
-   OCAMLOPT dynlink_compilerlibs/longident.cmx
-   OCAMLOPT dynlink_compilerlibs/dll.cmx
-   OCAMLOPT dynlink_compilerlibs/cmxs_format.cmx
-   OCAMLOPT dynlink_compilerlibs/numbers.cmx
-   OCAMLOPT dynlink_compilerlibs/clflags.cmx
-   OCAMLOPT dynlink_compilerlibs/location.cmx
-   OCAMLOPT dynlink_compilerlibs/ident.cmx
-   OCAMLOPT dynlink_compilerlibs/path.cmx
-   OCAMLOPT dynlink_compilerlibs/cmo_format.cmx
-   OCAMLOPT dynlink_compilerlibs/asttypes.cmx
-   OCAMLOPT dynlink_compilerlibs/syntaxerr.cmx
-   OCAMLOPT dynlink_compilerlibs/shape.cmx
-   OCAMLOPT dynlink_compilerlibs/parsetree.cmx
-   OCAMLOPT dynlink_compilerlibs/debuginfo.cmx
-   OCAMLOPT dynlink_compilerlibs/docstrings.cmx
-   OCAMLOPT dynlink_compilerlibs/attr_helper.cmx
-   OCAMLOPT dynlink_compilerlibs/builtin_attributes.cmx
-   OCAMLOPT dynlink_compilerlibs/ast_helper.cmx
-   OCAMLOPT dynlink_compilerlibs/type_immediacy.cmx
-   OCAMLOPT dynlink_compilerlibs/outcometree.cmx
-   OCAMLOPT dynlink_compilerlibs/primitive.cmx
-   OCAMLOPT dynlink_compilerlibs/ast_mapper.cmx
-   OCAMLOPT dynlink_compilerlibs/types.cmx
-   OCAMLOPT dynlink_compilerlibs/btype.cmx
-   OCAMLOPT dynlink_compilerlibs/cmi_format.cmx
-   OCAMLOPT dynlink_compilerlibs/persistent_env.cmx
-   OCAMLOPT dynlink_compilerlibs/subst.cmx
-   OCAMLOPT dynlink_compilerlibs/predef.cmx
-   OCAMLOPT dynlink_compilerlibs/datarepr.cmx
-   OCAMLOPT dynlink_compilerlibs/env.cmx
-   OCAMLOPT dynlink_compilerlibs/lambda.cmx
-   OCAMLOPT dynlink_compilerlibs/instruct.cmx
-   OCAMLOPT dynlink_compilerlibs/meta.cmx
-   OCAMLOPT dynlink_compilerlibs/symtable.cmx
-   OCAMLOPT native/dynlink_compilerlibs.cmx
-   OCAMLOPT dynlink_common.cmx
-   OCAMLOPT native/dynlink.cmx
-   LINKOPT dynlink.cmxa
- cp native/dynlink.cmx dynlink.cmx
-   OCAMLMKLIB libcamlruntime_eventsnat.a
-   OCAMLOPT runtime_events.cmx
-   OCAMLMKLIB runtime_events.cmxa
-   OCAMLOPT runtime_events.cmxs
-   OCAMLMKLIB libunixnat.a
-   OCAMLOPT unix.cmx
-   OCAMLOPT unixLabels.cmx
-   OCAMLMKLIB unix.cmxa
-   OCAMLOPT unix.cmxs
-   OCAMLMKLIB libcamlstrnat.a
-   OCAMLOPT str.cmx
-   OCAMLMKLIB str.cmxa
-   OCAMLOPT str.cmxs
-   CC st_stubs.n.o
-   OCAMLOPT thread.cmx
-   OCAMLOPT event.cmx
-   LINKOPT threads.cmxa
-   OCAMLMKLIB libthreadsnat.a
- /Library/Developer/CommandLineTools/usr/bin/make ocamllex.opt ocamltoolsopt ocamltoolsopt.opt ocamldoc.opt \
- 	   othertools ocamlnat
- /Library/Developer/CommandLineTools/usr/bin/make lex-allopt
- /Library/Developer/CommandLineTools/usr/bin/make tools-allopt
- /Library/Developer/CommandLineTools/usr/bin/make lex-all
-   OCAMLC tools/ocamltex.cmi
-   OCAMLC toplevel/native/tophooks.cmi
- cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/native
- cp toplevel/trace.cmi toplevel/trace.mli toplevel/native
- cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/native
-   OCAMLOPT toplevel/genprintval.cmx
-   OCAMLOPT toplevel/topprinters.cmx
-   OCAMLOPT toplevel/native/trace.cmx
-   OCAMLC tools/ocamltex.cmo
-   OCAMLOPT tools/profiling.cmx
-   OCAMLOPT lex/cset.cmx
-   OCAMLOPT lex/table.cmx
- make[3]: Nothing to be done for `lex-all'.
- /Library/Developer/CommandLineTools/usr/bin/make -C ocamldoc opt.opt
-   OCAMLOPT odoc_config.cmx
-   OCAMLOPT odoc_messages.cmx
-   OCAMLOPT odoc_print.cmx
-   OCAMLOPT odoc_comments_global.cmx
-   OCAMLOPT odoc_ocamlhtml.cmx
-   OCAMLOPT odoc_latex_style.cmx
-   OCAMLOPT lex/syntax.cmx
-   OCAMLOPT odoc_types.cmx
-   OCAMLOPT lex/parser.cmx
-   OCAMLOPT lex/lexgen.cmx
-   LINKC tools/ocamltex
-   OCAMLOPT odoc_global.cmx
-   OCAMLOPT odoc_misc.cmx
-   OCAMLOPT odoc_parameter.cmx
-   OCAMLOPT odoc_parser.cmx
-   OCAMLOPT toplevel/topcommon.cmx
-   OCAMLOPT odoc_lexer.cmx
-   OCAMLOPT odoc_see_lexer.cmx
-   OCAMLOPT odoc_text_parser.cmx
-   OCAMLOPT odoc_name.cmx
-   OCAMLOPT lex/lexer.cmx
-   OCAMLOPT odoc_text_lexer.cmx
-   OCAMLOPT odoc_value.cmx
-   OCAMLOPT odoc_type.cmx
-   OCAMLOPT odoc_env.cmx
-   OCAMLOPT odoc_extension.cmx
-   OCAMLOPT odoc_exception.cmx
-   OCAMLOPT odoc_class.cmx
-   OCAMLOPT odoc_text.cmx
-   OCAMLOPT toplevel/native/tophooks.cmx
-   OCAMLOPT odoc_module.cmx
-   OCAMLOPT odoc_str.cmx
-   OCAMLOPT odoc_merge.cmx
-   OCAMLOPT odoc_search.cmx
-   OCAMLOPT odoc_scan.cmx
-   OCAMLOPT odoc_dep.cmx
-   OCAMLOPT toplevel/native/topeval.cmx
-   OCAMLOPT lex/compact.cmx
-   OCAMLOPT lex/common.cmx
-   OCAMLOPT odoc_sig.cmx
-   OCAMLOPT odoc_cross.cmx
-   OCAMLOPT lex/output.cmx
-   OCAMLOPT lex/outputbis.cmx
-   OCAMLOPT toplevel/toploop.cmx
-   OCAMLOPT odoc_comments.cmx
-   OCAMLOPT odoc_ast.cmx
-   OCAMLOPT toplevel/topdirs.cmx
-   OCAMLOPT toplevel/native/topmain.cmx
-   OCAMLOPT lex/main.cmx
-   OCAMLOPT toplevel/topstart.cmx
-   OCAMLOPT odoc_analyse.cmx
-   LINKOPT lex/ocamllex.opt
-   OCAMLOPT odoc_info.cmx
-   OCAMLOPT odoc_dag2html.cmx
-   OCAMLOPT odoc_to_text.cmx
-   OCAMLOPT odoc_man.cmx
-   LINKOPT compilerlibs/ocamltoplevel.cmxa
-   OCAMLOPT odoc_dot.cmx
-   LINKOPT odoc_info.cmxa
-   LINKOPT ocamlnat
- /Library/Developer/CommandLineTools/usr/bin/make tools-allopt.opt
-   OCAMLOPT odoc_latex.cmx
-   OCAMLOPT odoc_texi.cmx
-   OCAMLOPT tools/ocamldep.cmx
-   LINKOPT compilerlibs/ocamlmiddleend.cmxa
-   OCAMLOPT tools/objinfo.cmx
-   OCAMLOPT odoc_html.cmx
-   LINKOPT tools/ocamldep.opt
-   LINKOPT tools/ocamlobjinfo.opt
-   OCAMLOPT odoc_gen.cmx
-   OCAMLOPT odoc_args.cmx
-   OCAMLOPT odoc.cmx
-   OCAMLOPT generators/odoc_todo.cmxs
-   OCAMLOPT generators/odoc_literate.cmxs
-   LINKOPT ../ocamldoc/ocamldoc.opt
- /Library/Developer/CommandLineTools/usr/bin/make manpages
- /Library/Developer/CommandLineTools/usr/bin/make -C api_docgen man
- /Library/Developer/CommandLineTools/usr/bin/make -C ocamldoc man
- mkdir -p build
- mkdir -p build/libref
- mkdir -p build/compilerlibref
- mkdir -p build/man
-   GEN build/Format_tutorial.mld
-   GEN build/Ocaml_operators.mld
-   OCAMLDOC build/libref/arg.odoc
-   OCAMLDOC build/libref/array.odoc
-   OCAMLDOC build/libref/arrayLabels.odoc
-   OCAMLDOC build/libref/atomic.odoc
-   OCAMLDOC build/libref/bigarray.odoc
-   OCAMLDOC build/libref/bool.odoc
-   OCAMLDOC build/libref/buffer.odoc
-   OCAMLDOC build/libref/bytes.odoc
-   OCAMLDOC build/libref/bytesLabels.odoc
-   OCAMLDOC build/libref/callback.odoc
-   OCAMLDOC build/libref/char.odoc
-   OCAMLDOC build/libref/complex.odoc
-   OCAMLDOC build/libref/condition.odoc
-   OCAMLDOC build/libref/digest.odoc
-   OCAMLDOC build/libref/domain.odoc
-   OCAMLDOC build/libref/dynlink.odoc
-   OCAMLDOC build/libref/effect.odoc
-   OCAMLDOC build/libref/either.odoc
-   OCAMLDOC build/libref/ephemeron.odoc
-   OCAMLDOC build/libref/event.odoc
-   OCAMLDOC build/libref/filename.odoc
-   OCAMLDOC build/libref/float.odoc
-   OCAMLDOC build/libref/format.odoc
-   OCAMLDOC build/libref/fun.odoc
-   OCAMLDOC build/libref/gc.odoc
-   OCAMLDOC build/libref/hashtbl.odoc
-   OCAMLDOC build/libref/in_channel.odoc
-   OCAMLDOC build/libref/int.odoc
-   OCAMLDOC build/libref/int32.odoc
-   OCAMLDOC build/libref/int64.odoc
-   OCAMLDOC build/libref/lazy.odoc
-   OCAMLDOC build/libref/lexing.odoc
-   OCAMLDOC build/libref/list.odoc
-   OCAMLDOC build/libref/listLabels.odoc
-   OCAMLDOC build/libref/map.odoc
-   OCAMLDOC build/libref/marshal.odoc
-   OCAMLDOC build/libref/moreLabels.odoc
-   OCAMLDOC build/libref/mutex.odoc
-   OCAMLDOC build/libref/nativeint.odoc
-   OCAMLDOC build/libref/obj.odoc
-   OCAMLDOC build/libref/oo.odoc
-   OCAMLDOC build/libref/option.odoc
-   OCAMLDOC build/libref/out_channel.odoc
-   OCAMLDOC build/libref/parsing.odoc
-   OCAMLDOC build/libref/printexc.odoc
-   OCAMLDOC build/libref/printf.odoc
-   OCAMLDOC build/libref/queue.odoc
-   OCAMLDOC build/libref/random.odoc
-   OCAMLDOC build/libref/result.odoc
-   OCAMLDOC build/libref/runtime_events.odoc
-   OCAMLDOC build/libref/scanf.odoc
-   OCAMLDOC build/libref/semaphore.odoc
-   OCAMLDOC build/libref/seq.odoc
-   OCAMLDOC build/libref/set.odoc
-   OCAMLDOC build/libref/stack.odoc
-   OCAMLDOC build/libref/stdLabels.odoc
-   OCAMLDOC build/libref/stdlib.odoc
-   OCAMLDOC build/libref/str.odoc
-   OCAMLDOC build/libref/string.odoc
-   OCAMLDOC build/libref/stringLabels.odoc
-   OCAMLDOC build/libref/sys.odoc
-   OCAMLDOC build/libref/thread.odoc
-   OCAMLDOC build/libref/type.odoc
-   OCAMLDOC build/libref/uchar.odoc
-   OCAMLDOC build/libref/unit.odoc
-   OCAMLDOC build/libref/unix.odoc
-   OCAMLDOC build/libref/unixLabels.odoc
-   OCAMLDOC build/libref/weak.odoc
-   OCAMLDOC build/libref/camlinternalFormat.odoc
-   OCAMLDOC build/libref/camlinternalFormatBasics.odoc
-   OCAMLDOC build/libref/camlinternalLazy.odoc
-   OCAMLDOC build/libref/camlinternalMod.odoc
-   OCAMLDOC build/libref/camlinternalOO.odoc
-   GEN build/Compiler_libs.mld
-   OCAMLDOC build/compilerlibref/ast_helper.odoc
-   OCAMLDOC build/compilerlibref/ast_invariants.odoc
-   OCAMLDOC build/compilerlibref/ast_iterator.odoc
-   OCAMLDOC build/compilerlibref/ast_mapper.odoc
-   OCAMLDOC build/compilerlibref/asttypes.odoc
-   OCAMLDOC build/compilerlibref/attr_helper.odoc
-   OCAMLDOC build/compilerlibref/builtin_attributes.odoc
-   OCAMLDOC build/compilerlibref/camlinternalMenhirLib.odoc
-   OCAMLDOC build/compilerlibref/depend.odoc
-   OCAMLDOC build/compilerlibref/docstrings.odoc
-   OCAMLDOC build/compilerlibref/lexer.odoc
-   OCAMLDOC build/compilerlibref/location.odoc
-   OCAMLDOC build/compilerlibref/longident.odoc
-   OCAMLDOC build/compilerlibref/parse.odoc
-   OCAMLDOC build/compilerlibref/parser.odoc
-   OCAMLDOC build/compilerlibref/parsetree.odoc
-   OCAMLDOC build/compilerlibref/pprintast.odoc
-   OCAMLDOC build/compilerlibref/printast.odoc
-   OCAMLDOC build/compilerlibref/syntaxerr.odoc
-   OCAMLDOC build/compilerlibref/arg_helper.odoc
-   OCAMLDOC build/compilerlibref/binutils.odoc
-   OCAMLDOC build/compilerlibref/build_path_prefix_map.odoc
-   OCAMLDOC build/compilerlibref/ccomp.odoc
-   OCAMLDOC build/compilerlibref/clflags.odoc
-   OCAMLDOC build/compilerlibref/config.odoc
-   OCAMLDOC build/compilerlibref/config_boot.odoc
-   OCAMLDOC build/compilerlibref/config_main.odoc
-   OCAMLDOC build/compilerlibref/consistbl.odoc
-   OCAMLDOC build/compilerlibref/diffing.odoc
-   OCAMLDOC build/compilerlibref/diffing_with_keys.odoc
-   OCAMLDOC build/compilerlibref/domainstate.odoc
-   OCAMLDOC build/compilerlibref/identifiable.odoc
-   OCAMLDOC build/compilerlibref/int_replace_polymorphic_compare.odoc
-   OCAMLDOC build/compilerlibref/lazy_backtrack.odoc
-   OCAMLDOC build/compilerlibref/load_path.odoc
-   OCAMLDOC build/compilerlibref/local_store.odoc
-   OCAMLDOC build/compilerlibref/misc.odoc
-   OCAMLDOC build/compilerlibref/numbers.odoc
-   OCAMLDOC build/compilerlibref/profile.odoc
-   OCAMLDOC build/compilerlibref/strongly_connected_components.odoc
-   OCAMLDOC build/compilerlibref/targetint.odoc
-   OCAMLDOC build/compilerlibref/terminfo.odoc
-   OCAMLDOC build/compilerlibref/warnings.odoc
-   OCAMLDOC build/compilerlibref/pparse.odoc
-   OCAMLDOC build/libref/Format_tutorial.odoc
-   OCAMLDOC build/libref/Ocaml_operators.odoc
-   OCAMLDOC build/compilerlibref/Compiler_libs.odoc
-   OCAMLDOC build/man/Stdlib.3o
-> compiled  ocaml-variants.5.1.0+options
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   ocaml.5.1.0
-> removed   ocaml-config.3
-> removed   ocaml-variants.5.1.0+options
Processing 12/20: [ocaml-variants: make install]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.5.1.0+options)
- mkdir -p "/Users/mac1000/.opam/4.14.2/bin"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- mkdir -p "/Users/mac1000/.opam/4.14.2/doc/ocaml"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/profiling"
- /usr/bin/install -c -p runtime/ocamlrun runtime/ocamlrund runtime/ocamlruni "/Users/mac1000/.opam/4.14.2/bin"
- /usr/bin/install -c -p -m 644 runtime/ld.conf runtime/libcamlrun.a runtime/libcamlrund.a runtime/libcamlruni.a runtime/libcamlrun_pic.a \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- /usr/bin/install -c -p  runtime/libcamlrun_shared.so \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- /usr/bin/install -c -p -m 644 runtime/caml/domain_state.tbl runtime/caml/*.h \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml"
- /usr/bin/install -c -p ocaml "/Users/mac1000/.opam/4.14.2/bin"
- ./boot/ocamlrun ./tools/stripdebug  ocamlc  ocamlc.tmp && /usr/bin/install -c -p  ocamlc.tmp "/Users/mac1000/.opam/4.14.2/bin/ocamlc.byte" && rm  ocamlc.tmp
- /Library/Developer/CommandLineTools/usr/bin/make -C stdlib install
- /usr/bin/install -c -p -m 644 \
- 	  stdlib.cma std_exit.cmo *.cmi camlheader_ur \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/stdlib"
- /usr/bin/install -c -p -m 644 META "/Users/mac1000/.opam/4.14.2/lib/ocaml/stdlib"
- /usr/bin/install -c -p -m 644 \
- 	  *.cmt *.cmti *.mli *.ml *.ml.in \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- /usr/bin/install -c -p -m 644 target_camlheader "/Users/mac1000/.opam/4.14.2/lib/ocaml/camlheader"
- /usr/bin/install -c -p -m 644 target_camlheaderd "/Users/mac1000/.opam/4.14.2/lib/ocaml/camlheaderd"
- /usr/bin/install -c -p -m 644 target_camlheaderi "/Users/mac1000/.opam/4.14.2/lib/ocaml/camlheaderi"
- /usr/bin/install -c -p lex/ocamllex \
- 	  "/Users/mac1000/.opam/4.14.2/bin/ocamllex.byte"
- for i in ocamldep ocamlobjinfo; \
- 	do \
- 	  /usr/bin/install -c -p "tools/$i" "/Users/mac1000/.opam/4.14.2/bin/$i.byte";\
- 	  if test -f "tools/$i".opt; then \
- 	    /usr/bin/install -c -p "tools/$i.opt" "/Users/mac1000/.opam/4.14.2/bin" && \
- 	    (cd "/Users/mac1000/.opam/4.14.2/bin" && ln -sf "$i.opt" "$i"); \
- 	  else \
- 	    (cd "/Users/mac1000/.opam/4.14.2/bin" && ln -sf "$i.byte" "$i"); \
- 	  fi; \
- 	done
- for i in ocamlcmt ocamlprof ocamlcp ocamlmklib ocamlmktop ocamloptp; \
- 	do \
- 	  /usr/bin/install -c -p "tools/$i" "/Users/mac1000/.opam/4.14.2/bin";\
- 	done
- /usr/bin/install -c -p yacc/ocamlyacc "/Users/mac1000/.opam/4.14.2/bin"
- /usr/bin/install -c -p -m 644 \
- 	   utils/*.cmi \
- 	   parsing/*.cmi \
- 	   typing/*.cmi \
- 	   bytecomp/*.cmi \
- 	   file_formats/*.cmi \
- 	   lambda/*.cmi \
- 	   driver/*.cmi \
- 	   toplevel/*.cmi \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	   toplevel/byte/*.cmi \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	   utils/*.cmt utils/*.cmti utils/*.mli \
- 	   parsing/*.cmt parsing/*.cmti parsing/*.mli \
- 	   typing/*.cmt typing/*.cmti typing/*.mli \
- 	   file_formats/*.cmt file_formats/*.cmti file_formats/*.mli \
- 	   lambda/*.cmt lambda/*.cmti lambda/*.mli \
- 	   bytecomp/*.cmt bytecomp/*.cmti bytecomp/*.mli \
- 	   driver/*.cmt driver/*.cmti driver/*.mli \
- 	   toplevel/*.cmt toplevel/*.cmti toplevel/*.mli \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	   toplevel/byte/*.cmt \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	  tools/profiling.cmt tools/profiling.cmti \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/profiling"
- /usr/bin/install -c -p -m 644 \
- 	  compilerlibs/*.cma compilerlibs/META \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	   driver/main.cmo toplevel/topstart.cmo \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p expunge "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- rm -f "/Users/mac1000/.opam/4.14.2/lib/ocaml"/topdirs.cm* "/Users/mac1000/.opam/4.14.2/lib/ocaml/topdirs.mli"
- rm -f "/Users/mac1000/.opam/4.14.2/lib/ocaml"/profiling.cm* "/Users/mac1000/.opam/4.14.2/lib/ocaml/profiling.o"
- /usr/bin/install -c -p -m 644 \
- 	  tools/profiling.cmi tools/profiling.cmo \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/profiling"
- /Library/Developer/CommandLineTools/usr/bin/make -C man install
- mkdir -p '/Users/mac1000/.opam/4.14.2/man/man1'
- /usr/bin/install -c -p -m 644 ocaml.1 ocamlc.1 ocamlc.opt.1 ocamlcp.1 ocamldebug.1 ocamldep.1 ocamldoc.1 ocamllex.1 ocamlmktop.1 ocamlopt.1 ocamlopt.opt.1 ocamloptp.1 ocamlprof.1 ocamlrun.1 ocamlyacc.1 '/Users/mac1000/.opam/4.14.2/man/man1'
- for i in dynlink runtime_events unix str systhreads; do \
- 	  /Library/Developer/CommandLineTools/usr/bin/make -C otherlibs/$i install || exit $?; \
- 	done
- rm -f "/Users/mac1000/.opam/4.14.2/lib/ocaml"/dynlink.cm* "/Users/mac1000/.opam/4.14.2/lib/ocaml/dynlink.mli" \
-         "/Users/mac1000/.opam/4.14.2/lib/ocaml/dynlink.a" \
-         "/Users/mac1000/.opam/4.14.2/lib/ocaml/"dynlink_compilerlibs.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml/"dynlink_types.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml/"dynlink_platform_intf.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml/"dynlink_common.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml/"dynlink.cmx
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/dynlink"
- /usr/bin/install -c -p -m 644 \
- 	  dynlink.cmi dynlink.cma META \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/dynlink"
- /usr/bin/install -c -p -m 644 \
- 	  dynlink.cmti dynlink.mli \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/dynlink"
- if test -f dllcamlruntime_eventsbyt.so; then \
- 	  /usr/bin/install -c -p \
- 	    dllcamlruntime_eventsbyt.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"; \
- 	fi
- /usr/bin/install -c -p -m 644 libcamlruntime_eventsbyt.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- rm -f "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.cma "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.cmi "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.cmti "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.cmxa "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml"/runtime_events.a
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/runtime_events"
- /usr/bin/install -c -p -m 644 \
- 	  runtime_events.cma runtime_events.cmi META \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/runtime_events/"
- /usr/bin/install -c -p -m 644 \
- 	  runtime_events.mli \
-           runtime_events.cmti \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/runtime_events/"
- if test -n "runtime_events_consumer.h"; then \
- 	  /usr/bin/install -c -p -m 644 runtime_events_consumer.h "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; \
- 	fi
- if test -f dllunixbyt.so; then \
- 	  /usr/bin/install -c -p \
- 	    dllunixbyt.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"; \
- 	fi
- /usr/bin/install -c -p -m 644 libunixbyt.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- rm -f "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.cma "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.cmi "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unixLabels.cmi "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unixLabels.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.cmti "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unixLabels.cmti "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unixLabels.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.cmxa "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml"/unix.a
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/unix"
- /usr/bin/install -c -p -m 644 \
- 	  unix.cma unix.cmi unixLabels.cmi META \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/unix/"
- /usr/bin/install -c -p -m 644 \
- 	  unix.mli unixLabels.mli \
-           unix.cmti unixLabels.cmti \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/unix/"
- if test -n "unixsupport.h socketaddr.h"; then \
- 	  /usr/bin/install -c -p -m 644 unixsupport.h socketaddr.h "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; \
- 	fi
- if test -f dllcamlstrbyt.so; then \
- 	  /usr/bin/install -c -p \
- 	    dllcamlstrbyt.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"; \
- 	fi
- /usr/bin/install -c -p -m 644 libcamlstrbyt.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- rm -f "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.cma "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.cmi "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.cmti "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.cmxa "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml"/str.a
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/str"
- /usr/bin/install -c -p -m 644 \
- 	  str.cma str.cmi META \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/str/"
- /usr/bin/install -c -p -m 644 \
- 	  str.mli \
-           str.cmti \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/str/"
- if test -n ""; then \
- 	  /usr/bin/install -c -p -m 644  "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; \
- 	fi
- if test -f dllthreads.so; then \
- 	  /usr/bin/install -c -p dllthreads.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"; \
- 	fi
- /usr/bin/install -c -p -m 644 libthreads.a "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/threads"
- /usr/bin/install -c -p -m 644 \
- 	  thread.cmi event.cmi threads.cma META \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/threads"
- /usr/bin/install -c -p -m 644 \
- 	  thread.cmti event.cmti \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/threads"
- /usr/bin/install -c -p -m 644 thread.mli event.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml/threads"
- /usr/bin/install -c -p -m 644 threads.h "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml"
- /Library/Developer/CommandLineTools/usr/bin/make -C ocamldoc install
- mkdir -p "/Users/mac1000/.opam/4.14.2/bin"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- /usr/bin/install -c -p ../ocamldoc/ocamldoc "/Users/mac1000/.opam/4.14.2/bin"
- /usr/bin/install -c -p -m 644 \
- 	  ocamldoc.hva *.cmi odoc_info.cma META \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- /usr/bin/install -c -p -m 644 \
- 	  odoc_dep.cmi odoc_dot.cmi odoc_extension.cmi odoc_html.cmi odoc_info.cmi odoc_latex.cmi odoc_latex_style.cmi odoc_man.cmi odoc_messages.cmi odoc_ocamlhtml.cmi odoc_parameter.cmi odoc_texi.cmi odoc_text_lexer.cmi odoc_to_text.cmi odoc_type.cmi odoc_value.cmi \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- /usr/bin/install -c -p -m 644 \
- 	  odoc_dep.mli odoc_dot.mli odoc_extension.mli odoc_html.mli odoc_info.mli odoc_latex.mli odoc_latex_style.mli odoc_man.mli odoc_messages.mli odoc_ocamlhtml.mli odoc_parameter.mli odoc_texi.mli odoc_text_lexer.mli odoc_to_text.mli odoc_type.mli odoc_value.mli odoc_dep.cmt odoc_dot.cmt odoc_extension.cmt odoc_html.cmt odoc_info.cmt odoc_latex.cmt odoc_latex_style.cmt odoc_man.cmt odoc_messages.cmt odoc_ocamlhtml.cmt odoc_parameter.cmt odoc_texi.cmt odoc_text_lexer.cmt odoc_to_text.cmt odoc_type.cmt odoc_value.cmt odoc_dep.cmti odoc_dot.cmti odoc_extension.cmti odoc_html.cmti odoc_info.cmti odoc_latex.cmti odoc_latex_style.cmti odoc_man.cmti odoc_messages.cmti odoc_ocamlhtml.cmti odoc_parameter.cmti odoc_texi.cmti odoc_text_lexer.cmti odoc_to_text.cmti odoc_type.cmti odoc_value.cmti \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- /Library/Developer/CommandLineTools/usr/bin/make -C api_docgen install
- /Library/Developer/CommandLineTools/usr/bin/make -C ocamldoc install
- mkdir -p "/Users/mac1000/.opam/4.14.2/man/man3"
- if test -d build/man; then \
- 	  /usr/bin/install -c -p -m 644 build/man/*.3o "/Users/mac1000/.opam/4.14.2/man/man3"; \
- 	fi
- if test -n "ocamldebugger"; then \
- 	  /Library/Developer/CommandLineTools/usr/bin/make -C debugger install; \
- 	fi
- /usr/bin/install -c -p ocamldebug "/Users/mac1000/.opam/4.14.2/bin"
- /usr/bin/install -c -p -m 644 Makefile.config "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- /usr/bin/install -c -p -m 644 Changes README.adoc README.win32.adoc LICENSE "/Users/mac1000/.opam/4.14.2/doc/ocaml"
- if test -f ocamlopt; then /Library/Developer/CommandLineTools/usr/bin/make installopt; else \
- 	   cd "/Users/mac1000/.opam/4.14.2/bin"; \
- 	   ln -sf ocamlc.byte ocamlc; \
- 	   ln -sf ocamllex.byte ocamllex; \
- 	   (test -f flexlink.byte && \
- 	      ln -sf flexlink.byte flexlink) || true; \
- 	fi
- /usr/bin/install -c -p -m 644 runtime/libasmrun.a runtime/libasmrund.a runtime/libasmruni.a runtime/libasmrun_pic.a "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- /usr/bin/install -c -p  runtime/libasmrun_shared.so "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- ./boot/ocamlrun ./tools/stripdebug  ocamlopt  ocamlopt.tmp && /usr/bin/install -c -p  ocamlopt.tmp "/Users/mac1000/.opam/4.14.2/bin/ocamlopt.byte" && rm  ocamlopt.tmp
- /Library/Developer/CommandLineTools/usr/bin/make -C stdlib installopt
- /usr/bin/install -c -p -m 644 \
- 	  stdlib.cmxa stdlib.a std_exit.o *.cmx \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/*.cmi \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/closure/*.cmi \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/flambda/*.cmi \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/flambda/base_types/*.cmi \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    asmcomp/*.cmi \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/*.cmt middle_end/*.cmti \
- 	    middle_end/*.mli \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/closure/*.cmt middle_end/closure/*.cmti \
- 	    middle_end/closure/*.mli \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/flambda/*.cmt middle_end/flambda/*.cmti \
- 	    middle_end/flambda/*.mli \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    middle_end/flambda/base_types/*.cmt \
-             middle_end/flambda/base_types/*.cmti \
- 	    middle_end/flambda/base_types/*.mli \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    asmcomp/*.cmt asmcomp/*.cmti \
- 	    asmcomp/*.mli \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	    driver/optmain.cmo \
- 	    "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /Library/Developer/CommandLineTools/usr/bin/make -C ocamldoc installopt
- if test -f ../ocamldoc/ocamldoc.opt; then /Library/Developer/CommandLineTools/usr/bin/make installopt_really ; fi
- mkdir -p "/Users/mac1000/.opam/4.14.2/bin"
- mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- /usr/bin/install -c -p ../ocamldoc/ocamldoc.opt "/Users/mac1000/.opam/4.14.2/bin"
- /usr/bin/install -c -p -m 644 \
- 	  odoc_dep.cmi odoc_dot.cmi odoc_extension.cmi odoc_html.cmi odoc_info.cmi odoc_latex.cmi odoc_latex_style.cmi odoc_man.cmi odoc_messages.cmi odoc_ocamlhtml.cmi odoc_parameter.cmi odoc_texi.cmi odoc_text_lexer.cmi odoc_to_text.cmi odoc_type.cmi odoc_value.cmi \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- /usr/bin/install -c -p -m 644 \
- 	  odoc_dep.mli odoc_dot.mli odoc_extension.mli odoc_html.mli odoc_info.mli odoc_latex.mli odoc_latex_style.mli odoc_man.mli odoc_messages.mli odoc_ocamlhtml.mli odoc_parameter.mli odoc_texi.mli odoc_text_lexer.mli odoc_to_text.mli odoc_type.mli odoc_value.mli odoc_dep.cmt odoc_dot.cmt odoc_extension.cmt odoc_html.cmt odoc_info.cmt odoc_latex.cmt odoc_latex_style.cmt odoc_man.cmt odoc_messages.cmt odoc_ocamlhtml.cmt odoc_parameter.cmt odoc_texi.cmt odoc_text_lexer.cmt odoc_to_text.cmt odoc_type.cmt odoc_value.cmt odoc_dep.cmti odoc_dot.cmti odoc_extension.cmti odoc_html.cmti odoc_info.cmti odoc_latex.cmti odoc_latex_style.cmti odoc_man.cmti odoc_messages.cmti odoc_ocamlhtml.cmti odoc_parameter.cmti odoc_texi.cmti odoc_text_lexer.cmti odoc_to_text.cmti odoc_type.cmti odoc_value.cmti \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- /usr/bin/install -c -p -m 644 \
- 	  ocamldoc.hva *.cmx odoc_info.a odoc_info.cmxa \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- for i in dynlink runtime_events unix str systhreads; do \
- 	  /Library/Developer/CommandLineTools/usr/bin/make -C otherlibs/$i installopt || exit $?; \
- 	done
- /usr/bin/install -c -p -m 644 \
- 	  native/dynlink_compilerlibs.cmx dynlink_types.cmx dynlink_platform_intf.cmx dynlink_common.cmx native/dynlink.cmx dynlink.cmxa dynlink.a \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/dynlink"
- /usr/bin/install -c -p -m 644 \
- 	   runtime_events.cmx runtime_events.cmxa runtime_events.a \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/runtime_events/"
- if test -f runtime_events.cmxs; then \
- 	  /usr/bin/install -c -p runtime_events.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/runtime_events"; \
- 	fi
- if test -f dllcamlruntime_eventsnat.so; then \
- 	  /usr/bin/install -c -p \
- 	    dllcamlruntime_eventsnat.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"; \
- 	fi
- /usr/bin/install -c -p -m 644 libcamlruntime_eventsnat.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- /usr/bin/install -c -p -m 644 \
- 	   unix.cmx unixLabels.cmx unix.cmxa unix.a \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/unix/"
- if test -f unix.cmxs; then \
- 	  /usr/bin/install -c -p unix.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/unix"; \
- 	fi
- if test -f dllunixnat.so; then \
- 	  /usr/bin/install -c -p \
- 	    dllunixnat.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"; \
- 	fi
- /usr/bin/install -c -p -m 644 libunixnat.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- /usr/bin/install -c -p -m 644 \
- 	   str.cmx str.cmxa str.a \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/str/"
- if test -f str.cmxs; then \
- 	  /usr/bin/install -c -p str.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/str"; \
- 	fi
- if test -f dllcamlstrnat.so; then \
- 	  /usr/bin/install -c -p \
- 	    dllcamlstrnat.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs"; \
- 	fi
- /usr/bin/install -c -p -m 644 libcamlstrnat.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- /usr/bin/install -c -p -m 644 libthreadsnat.a "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- /usr/bin/install -c -p -m 644 \
- 	  thread.cmx event.cmx threads.cmxa threads.a \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/threads"
- if test -f ocamlopt.opt; then /Library/Developer/CommandLineTools/usr/bin/make installoptopt; else \
- 	   cd "/Users/mac1000/.opam/4.14.2/bin"; \
- 	   ln -sf ocamlc.byte ocamlc; \
- 	   ln -sf ocamlopt.byte ocamlopt; \
- 	   ln -sf ocamllex.byte ocamllex; \
- 	   (test -f flexlink.byte && \
- 	     ln -sf flexlink.byte flexlink) || true; \
- 	fi
- /usr/bin/install -c -p ocamlc.opt "/Users/mac1000/.opam/4.14.2/bin"
- /usr/bin/install -c -p ocamlopt.opt "/Users/mac1000/.opam/4.14.2/bin"
- /usr/bin/install -c -p lex/ocamllex.opt "/Users/mac1000/.opam/4.14.2/bin"
- cd "/Users/mac1000/.opam/4.14.2/bin"; \
- 	   ln -sf ocamlc.opt ocamlc; \
- 	   ln -sf ocamlopt.opt ocamlopt; \
- 	   ln -sf ocamllex.opt ocamllex
- /usr/bin/install -c -p -m 644 \
- 	   utils/*.cmx parsing/*.cmx typing/*.cmx bytecomp/*.cmx \
- 	   toplevel/*.cmx toplevel/native/*.cmx \
- 	   toplevel/native/tophooks.cmi \
- 	   file_formats/*.cmx \
- 	   lambda/*.cmx \
- 	   driver/*.cmx asmcomp/*.cmx middle_end/*.cmx \
-            middle_end/closure/*.cmx \
-            middle_end/flambda/*.cmx \
-            middle_end/flambda/base_types/*.cmx \
-           "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	   compilerlibs/*.cmxa compilerlibs/*.a \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
- 	   driver/main.cmx driver/main.o \
- 	   driver/optmain.cmx driver/optmain.o \
- 	   toplevel/topstart.o \
- 	   "/Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs"
- /usr/bin/install -c -p -m 644 \
-           tools/profiling.cmx tools/profiling.o \
- 	  "/Users/mac1000/.opam/4.14.2/lib/ocaml/profiling"
-> installed ocaml-variants.5.1.0+options
[ocaml-config: subst] expanding opam variables in gen_ocaml_config.ml.in, generating gen_ocaml_config.ml
-> installed ocaml-config.3
Processing 15/20: [ocaml: ocaml 5.1.0]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "/Users/mac1000/.opam/4.14.2/share/ocaml-config/gen_ocaml_config.ml" "5.1.0" "ocaml" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml.5.1.0)
-> compiled  ocaml.5.1.0
-> installed ocaml.5.1.0
-> installed base-domains.base
-> installed base-nnp.base
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:51.02 ---> saved as "4de0d1ee536ac1addbee16daaadcded07757a5ead4789490f084c8ba07103d6e"
Job succeeded
2026-02-27 03:51.26: Job succeeded