Build:
- 0
2026-02-23 11:15.19: New job: test ocaml-variants.4.04.0+spacetime, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (eb625039bcf5bbcc82c8f591cc7d2b95d7c5596f)
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 eb625039
git fetch origin master
git merge --no-edit 8533409a78b7b71caafd68ec02d9bb6094bdfeac
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.4.04.0+spacetime 4.04.0+spacetime
RUN opam reinstall --update-invariant ocaml-variants.4.04.0+spacetime; \
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.4.04.0+spacetime' && 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.4.04.0+spacetime) || true
RUN opam reinstall --with-test --verbose --update-invariant ocaml-variants.4.04.0+spacetime; \
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.4.04.0+spacetime' && 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-23 11:15.19: Using cache hint "macos-homebrew-ocaml-4.14-ocaml-variants.4.04.0+spacetime-eb625039bcf5bbcc82c8f591cc7d2b95d7c5596f"
2026-02-23 11:15.19: 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.4.04.0+spacetime 4.04.0+spacetime"))
(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.4.04.0+spacetime;\
\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.4.04.0+spacetime' && 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.4.04.0+spacetime) || true"))
(run (shell "opam reinstall --with-test --verbose --update-invariant ocaml-variants.4.04.0+spacetime;\
\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.4.04.0+spacetime' && 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-23 11:15.19: Waiting for resource in pool OCluster
2026-02-24 07:42.37: Waiting for worker…
2026-02-24 12:26.36: Got resource from pool OCluster
Building on i7-worker-03
All commits already cached
Updating files: 31% (5698/18275)
Updating files: 32% (5848/18275)
Updating files: 33% (6031/18275)
Updating files: 34% (6214/18275)
Updating files: 35% (6397/18275)
Updating files: 36% (6579/18275)
Updating files: 37% (6762/18275)
Updating files: 38% (6945/18275)
Updating files: 39% (7128/18275)
Updating files: 40% (7310/18275)
Updating files: 41% (7493/18275)
Updating files: 42% (7676/18275)
Updating files: 43% (7859/18275)
Updating files: 44% (8041/18275)
Updating files: 45% (8224/18275)
Updating files: 46% (8407/18275)
Updating files: 47% (8590/18275)
Updating files: 48% (8772/18275)
Updating files: 49% (8955/18275)
Updating files: 50% (9138/18275)
Updating files: 51% (9321/18275)
Updating files: 52% (9503/18275)
Updating files: 53% (9686/18275)
Updating files: 54% (9869/18275)
Updating files: 55% (10052/18275)
Updating files: 56% (10234/18275)
Updating files: 57% (10417/18275)
Updating files: 58% (10600/18275)
Updating files: 58% (10613/18275)
Updating files: 59% (10783/18275)
Updating files: 60% (10965/18275)
Updating files: 61% (11148/18275)
Updating files: 62% (11331/18275)
Updating files: 63% (11514/18275)
Updating files: 64% (11696/18275)
Updating files: 65% (11879/18275)
Updating files: 66% (12062/18275)
Updating files: 67% (12245/18275)
Updating files: 68% (12427/18275)
Updating files: 69% (12610/18275)
Updating files: 70% (12793/18275)
Updating files: 71% (12976/18275)
Updating files: 72% (13158/18275)
Updating files: 73% (13341/18275)
Updating files: 74% (13524/18275)
Updating files: 75% (13707/18275)
Updating files: 76% (13889/18275)
Updating files: 77% (14072/18275)
Updating files: 78% (14255/18275)
Updating files: 79% (14438/18275)
Updating files: 80% (14620/18275)
Updating files: 81% (14803/18275)
Updating files: 82% (14986/18275)
Updating files: 83% (15169/18275)
Updating files: 84% (15351/18275)
Updating files: 85% (15534/18275)
Updating files: 86% (15717/18275)
Updating files: 87% (15900/18275)
Updating files: 87% (16060/18275)
Updating files: 88% (16082/18275)
Updating files: 89% (16265/18275)
Updating files: 90% (16448/18275)
Updating files: 91% (16631/18275)
Updating files: 92% (16813/18275)
Updating files: 93% (16996/18275)
Updating files: 94% (17179/18275)
Updating files: 95% (17362/18275)
Updating files: 96% (17544/18275)
Updating files: 97% (17727/18275)
Updating files: 98% (17910/18275)
Updating files: 99% (18093/18275)
Updating files: 100% (18275/18275)
Updating files: 100% (18275/18275), done.
HEAD is now at 8533409a78 Merge pull request #29443 from kit-ty-kate/opam-publish-opam-publish.3.0.0
Merge made by the 'ort' strategy.
.../ocaml-base-compiler/ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler/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 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
packages/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/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 +
packages/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 +
packages/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 +
packages/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 +
packages/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 +
packages/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/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 +
packages/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/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 +
packages/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/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/ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants/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/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/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/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/ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants/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/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/ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants/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/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/ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants/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/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/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/ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants/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/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/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/ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants/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 +
packages/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 +
packages/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 +
packages/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 | 17 +++++++++++++++++
432 files changed, 463 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from macos-homebrew-ocaml-4.14)
2026-02-24 12:26.41 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache
/: (user (uid 1000) (gid 1000))
/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-02-24 12:26.42 ---> 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-24 12:26.42 ---> 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-24 12:26.43 ---> 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-24 12:26.43 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache
/: (copy (src .) (dst opam-repository/))
2026-02-24 12:26.45 ---> using "7b9db465481ece556faedbee386f3e63dbf95f3ff657f40ee0de65f8e4050d27" from cache
/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-02-24 12:26.45 ---> using "9566fc73ee8952218e7887d36cd04b46269ba08f5e3084ce48f094ca27794421" 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.4%
## 3.2%
## 4.1%
### 4.9%
#### 5.8%
#### 6.7%
##### 7.6%
###### 8.4%
-
###### 9.2%
####### 10.1%
####### 11.0%
######## 11.8%
######### 12.6%
######### 13.6%
########## 14.4%
########## 15.2%
########### 16.2%
############ 17.0%
############ 17.8%
############# 18.7%
-
############## 19.6%
############## 20.4%
############### 21.2%
############### 22.1%
################ 23.0%
################# 23.8%
################# 24.8%
################## 25.6%
################### 26.4%
################### 27.2%
#################### 28.2%
-
#################### 29.0%
##################### 29.8%
###################### 30.8%
###################### 31.6%
####################### 32.4%
######################## 33.4%
######################## 34.1%
######################### 35.1%
######################### 36.0%
########################## 36.8%
########################### 37.6%
-
########################### 38.4%
############################ 39.4%
############################ 40.2%
############################# 41.1%
############################## 42.0%
############################## 42.8%
############################### 43.6%
############################### 44.4%
################################ 45.3%
################################# 46.2%
################################# 47.0%
-
################################## 47.8%
################################### 48.6%
################################### 49.6%
#################################### 50.4%
#################################### 51.3%
##################################### 52.2%
###################################### 53.1%
###################################### 53.9%
####################################### 54.9%
######################################## 55.7%
######################################## 56.6%
-
######################################### 57.5%
######################################### 58.3%
########################################## 59.2%
########################################### 60.1%
########################################### 60.9%
############################################ 61.8%
############################################# 62.6%
############################################# 63.5%
############################################## 64.3%
############################################## 65.2%
############################################### 65.8%
############################################### 66.2%
-
################################################ 66.7%
################################################ 67.1%
################################################ 67.5%
################################################# 68.1%
################################################# 68.9%
################################################## 69.7%
################################################## 70.5%
################################################### 71.5%
#################################################### 72.3%
#################################################### 73.2%
##################################################### 74.1%
-
##################################################### 74.9%
###################################################### 75.7%
####################################################### 76.5%
####################################################### 77.5%
######################################################## 78.3%
######################################################### 79.2%
######################################################### 80.2%
########################################################## 81.0%
########################################################## 81.8%
########################################################### 82.8%
############################################################ 83.6%
-
############################################################ 84.4%
############################################################# 85.2%
############################################################## 86.2%
############################################################## 87.0%
############################################################### 87.8%
############################################################### 88.7%
################################################################ 89.6%
################################################################# 90.4%
################################################################# 91.2%
################################################################## 92.1%
################################################################## 93.0%
################################################################### 93.9%
-
#################################################################### 94.8%
#################################################################### 95.6%
##################################################################### 96.4%
###################################################################### 97.2%
###################################################################### 98.2%
####################################################################### 99.0%
####################################################################### 99.8%
######################################################################## 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-24 12:26.46 ---> using "b33101815afcd07357ab30082a53be62884f10f840e3302bb58e79baf7c65947" from cache
/: (run (shell "opam pin add -k version -yn ocaml-variants.4.04.0+spacetime 4.04.0+spacetime"))
ocaml-variants is now pinned to version 4.04.0+spacetime
2026-02-24 12:26.46 ---> using "9b38277dd895d7fe8d1d34ef2a47731dfa68712969b2aca9fe48bdcc7847afa2" 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.4.04.0+spacetime;\
\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.4.04.0+spacetime' && 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.4.04.0+spacetime is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 2 packages
- remove ocaml-base-compiler 4.14.2 [conflicts with ocaml-variants]
- remove ocaml-options-vanilla 1
=== downgrade 2 packages
- downgrade ocaml 4.14.2 to 4.04.0 [uses ocaml-variants]
- downgrade ocaml-config 2 to 1 [uses ocaml-variants]
=== install 1 package
- install ocaml-variants 4.04.0+spacetime (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed ocaml.4.14.2
-> removed ocaml-config.2
-> removed ocaml-base-compiler.4.14.2
-> removed ocaml-options-vanilla.1
-> retrieved ocaml-config.1 (cached)
-> retrieved ocaml-variants.4.04.0+spacetime (cached)
-> installed ocaml-variants.4.04.0+spacetime
-> installed ocaml-config.1
-> installed ocaml.4.04.0
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "4.04.0+spacetime"} | "ocaml-system" {= "4.14.2"}]
Use `opam switch set-invariant' to change it.
Done.
<><> ocaml.4.04.0 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> The main opam-repository has archived all packages that are not compatible with OCaml 4.08. If you want to install those packages, you need to add the archive repository: 'opam repository add archive git+https://github.com/ocaml/opam-repository-archive' in this opam switch.
# To update the current shell environment, run: eval $(opam env)
2026-02-24 12:26.47 ---> using "c2323c3aeb7b90327a3ad8a86249a3784343ff5c585094a60700de1c5ec4e2f7" from cache
/: (run (network host)
(shell "(opam reinstall --with-test ocaml-variants.4.04.0+spacetime) || true"))
The following actions will be performed:
=== recompile 3 packages
- recompile ocaml 4.04.0 [uses ocaml-variants]
- recompile ocaml-config 1 [uses ocaml-variants]
- recompile ocaml-variants 4.04.0+spacetime (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-config.1 (2 extra sources)
-> retrieved ocaml-config.1 (2 extra sources)
-> retrieved ocaml-variants.4.04.0+spacetime (https://github.com/ocaml/ocaml/archive/4.04.0.tar.gz)
-> removed ocaml.4.04.0
-> removed ocaml-config.1
-> removed ocaml-variants.4.04.0+spacetime
-> installed ocaml-variants.4.04.0+spacetime
-> installed ocaml-config.1
-> installed ocaml.4.04.0
Done.
<><> ocaml.4.04.0 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> The main opam-repository has archived all packages that are not compatible with OCaml 4.08. If you want to install those packages, you need to add the archive repository: 'opam repository add archive git+https://github.com/ocaml/opam-repository-archive' in this opam switch.
# To update the current shell environment, run: eval $(opam env)
2026-02-24 12:32.44 ---> saved as "ac647a8cf2141de62074280860b0b2331c6c5473fb4d43b2130a8ec175a05131"
/: (run (shell "opam reinstall --with-test --verbose --update-invariant ocaml-variants.4.04.0+spacetime;\
\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.4.04.0+spacetime' && 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 3 packages
- recompile ocaml 4.04.0 [uses ocaml-variants]
- recompile ocaml-config 1 [uses ocaml-variants]
- recompile ocaml-variants 4.04.0+spacetime (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-config.1 (cached)
Processing 3/12: [ocaml-variants.4.04.0+spacetime: extract]
-> retrieved ocaml-variants.4.04.0+spacetime (cached)
[ocaml-variants: patch] applying fix-gcc10.patch
[ocaml-variants: patch] applying gpr1330.patch
[ocaml-variants: patch] applying alt-signal-stack.patch
Processing 4/12: [ocaml-variants: sed]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "sed" "-ib" "-e" "s/opts=\"\"/opts=\"-Wno-implicit-function-declaration\"/" "config/auto-aux/hasgot" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime)
Processing 4/12: [ocaml-variants: ./configure cc]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "-prefix" "/Users/mac1000/.opam/4.14.2" "-with-debug-runtime" "-spacetime" "-cc" "cc" "-aspp" "cc -c" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime)
- Configuring OCaml version 4.04.0
- Configuring for host x86_64-apple-darwin24.5.0 ...
- Configuring for target x86_64-apple-darwin24.5.0 ...
- Using compiler cc.
- Compiler family and version: clang-17-0.
- The C compiler is ISO C99 compliant.
- Checking the sizes of integers and pointers...
- Wow! A 64 bit architecture!
- This is a little-endian architecture.
- Doubles can be word-aligned.
- [WARNING] Something went wrong during alignment determination for
- 64-bit integers. I'm going to assume this architecture has
- alignment constraints. That's a safe bet: OCaml will work
- even if this architecture has actually no alignment
- constraints. echo #define ARCH_ALIGN_INT64
- ranlib found
- #! appears to work in shell scripts.
- POSIX signal handling found.
- expm1(), log1p(), hypot(), copysign() found.
- getrusage() found.
- times() found.
- termcap functions found (with libraries '-lcurses')
- You have BSD sockets.
- socklen_t is defined in <sys/socket.h>
- inet_aton() found.
- IPv6 is supported.
- stdint.h found.
- unistd.h found.
- off_t is defined in <sys/types.h>
- dirent.h found.
- rewinddir() found.
- lockf() found.
- mkfifo() found.
- getcwd() found.
- getwd() found.
- getpriority() found.
- utime() found.
- utimes() found.
- dup2() found.
- fchmod() found.
- truncate() found.
- sys/select.h found.
- select() found.
- nanosleep() found.
- symlink() found.
- waitpid() found.
- wait4() found.
- POSIX termios found.
- setitimer() found.
- gethostname() found.
- uname() found.
- gettimeofday() found.
- mktime() found.
- setsid() found.
- putenv() found.
- setlocale() and <locale.h> found.
- dlopen() found.
- Dynamic loading of shared libraries is supported.
- mmap() found.
- pwrite() found
- stat() supports nanosecond precision.
- mkstemp() found
- nice() found
- Replay debugger supported.
- System stack overflow can be detected.
- POSIX threads library supported.
- Options for linking with POSIX threads: -lpthread
- sigwait() found
- Bytecode threads library supported.
- X11 works
- Options for compiling for X11: -I/usr/X11R6/include
- Options for linking with X11: -L/usr/X11R6/lib -lX11
- [WARNING] BFD library not found, 'objinfo' will be unable to display info on .cmxs files.
- Assembler supports CFI
- Spacetime profiling will be available.
- libunwind support for Spacetime profiling will be available.
-
- ** Configuration summary **
-
- Directories where OCaml will be installed:
- binaries.................. /Users/mac1000/.opam/4.14.2/bin
- standard library.......... /Users/mac1000/.opam/4.14.2/lib/ocaml
- manual pages.............. /Users/mac1000/.opam/4.14.2/man (with extension .1)
- Configuration for the bytecode compiler:
- C compiler used........... cc
- options for compiling..... -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT
- options for linking....... -lcurses -lpthread
- shared libraries are supported
- options for compiling..... -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT
- command for building...... cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind -o lib.so /a/path objs
- Configuration for the native-code compiler:
- hardware architecture..... amd64
- OS variant................ macosx
- C compiler used........... cc
- options for compiling..... -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT
- options for linking.......
- assembler ................ clang -arch x86_64 -c
- preprocessed assembler ... cc -c
- assembler supports CFI ... yes
- with frame pointers....... no
- naked pointers forbidden.. no
- spacetime profiling....... yes
- ... with libunwind...... yes
- C plugins................. yes
- compile with -fPIC........ no
- native dynlink ........... true
- profiling with gprof ..... supported
- using flambda middle-end . no
- safe strings ............. no
- Source-level replay debugger: supported
- Debug runtime will be compiled and installed
- Additional libraries supported:
- unix str num dynlink bigarray raw_spacetime_lib systhreads threads graph
- Configuration for the "num" library:
- target architecture ...... amd64 (asm level 1)
- Configuration for the "graph" library:
- options for compiling .... -I/usr/X11R6/include
- options for linking ...... -L/usr/X11R6/lib -lX11
-
- ** OCaml configuration completed successfully **
-
Processing 4/12: [ocaml-variants: make world]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "make" "world" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime)
- /Library/Developer/CommandLineTools/usr/bin/make coldstart
- cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
- sed -n -e '/^ /s/ \([A-Z]\)/ \&\&lbl_\1/gp' \
- -e '/^}/q' caml/instruct.h > caml/jumptbl.h
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o interp.o interp.c
- interp.c:898:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 898 | accu = Primitive(*pc)(accu);
- | ^
- interp.c:904:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 904 | accu = Primitive(*pc)(accu, sp[1]);
- | ^
- interp.c:911:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 911 | accu = Primitive(*pc)(accu, sp[1], sp[2]);
- | ^
- interp.c:918:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 918 | accu = Primitive(*pc)(accu, sp[1], sp[2], sp[3]);
- | ^
- interp.c:925:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 925 | accu = Primitive(*pc)(accu, sp[1], sp[2], sp[3], sp[4]);
- | ^
- interp.c:934:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 934 | accu = Primitive(*pc)(sp + 1, nargs);
- | ^
- 6 warnings generated.
- ../tools/make-version-header.sh ../VERSION > caml/version.h
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o misc.o misc.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o stacks.o stacks.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o fix_code.o fix_code.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o startup_aux.o startup_aux.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o startup.o startup.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o freelist.o freelist.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o major_gc.o major_gc.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o minor_gc.o minor_gc.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o memory.o memory.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o alloc.o alloc.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o roots.o roots.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o globroots.o globroots.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o fail.o fail.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals.o signals.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals_byt.o signals_byt.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o printexc.o printexc.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o backtrace_prim.o backtrace_prim.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o backtrace.o backtrace.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compare.o compare.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o ints.o ints.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o floats.o floats.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o str.o str.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o array.o array.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o io.o io.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o extern.o extern.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o intern.o intern.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o hash.o hash.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o sys.o sys.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o meta.o meta.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o parsing.o parsing.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o gc_ctrl.o gc_ctrl.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o terminfo.o terminfo.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o md5.o md5.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o obj.o obj.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lexing.o lexing.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o callback.o callback.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o debugger.o debugger.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o weak.o weak.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compact.o compact.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o finalise.o finalise.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o custom.o custom.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o dynlink.o dynlink.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o spacetime.o spacetime.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o unix.o unix.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o main.o main.c
- ar rc libcamlrun.a interp.o misc.o stacks.o fix_code.o startup_aux.o startup.o freelist.o major_gc.o minor_gc.o memory.o alloc.o roots.o globroots.o fail.o signals.o signals_byt.o printexc.o backtrace_prim.o backtrace.o compare.o ints.o floats.o str.o array.o io.o extern.o intern.o hash.o sys.o meta.o parsing.o gc_ctrl.o terminfo.o md5.o obj.o lexing.o callback.o debugger.o weak.o compact.o finalise.o custom.o dynlink.o spacetime.o unix.o main.o
- ranlib libcamlrun.a
- sed -n -e "s/CAMLprim value \([a-z0-9_][a-z0-9_]*\).*/\1/p" alloc.c array.c compare.c extern.c floats.c gc_ctrl.c hash.c intern.c interp.c ints.c io.c lexing.c md5.c meta.c obj.c parsing.c signals.c str.c sys.c terminfo.c callback.c weak.c finalise.c stacks.c dynlink.c backtrace_prim.c backtrace.c spacetime.c \
- | sort | uniq > primitives
- (echo '#define CAML_INTERNALS'; \
- echo '#include "caml/mlvalues.h"'; \
- echo '#include "caml/prims.h"'; \
- sed -e 's/.*/extern value &();/' primitives; \
- echo 'c_primitive caml_builtin_cprim[] = {'; \
- sed -e 's/.*/ &,/' primitives; \
- echo ' 0 };'; \
- echo 'char * caml_names_of_builtin_cprim[] = {'; \
- sed -e 's/.*/ "&",/' primitives; \
- echo ' 0 };') > prims.c
- cc -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o prims.o prims.c
- prims.c:114:14: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a previous declaration [-Wdeprecated-non-prototype]
- 114 | extern value caml_get_public_method();
- | ^
- ./caml/mlvalues.h:223:18: note: conflicting prototype is here
- 223 | CAMLextern value caml_get_public_method (value obj, value tag);
- | ^
- prims.c:281:14: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a previous declaration [-Wdeprecated-non-prototype]
- 281 | extern value caml_set_oo_id();
- | ^
- ./caml/mlvalues.h:333:18: note: conflicting prototype is here
- 333 | CAMLextern value caml_set_oo_id(value obj);
- | ^
- 2 warnings generated.
- cc -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind -o ocamlrun \
- prims.o libcamlrun.a -lcurses -lpthread
- ld: warning: -keep_dwarf_unwind is obsolete
- echo "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs" > ld.conf
- echo "/Users/mac1000/.opam/4.14.2/lib/ocaml" >> ld.conf
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT interp.c -o interp.d.o
- interp.c:898:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 898 | accu = Primitive(*pc)(accu);
- | ^
- interp.c:904:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 904 | accu = Primitive(*pc)(accu, sp[1]);
- | ^
- interp.c:911:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 911 | accu = Primitive(*pc)(accu, sp[1], sp[2]);
- | ^
- interp.c:918:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 918 | accu = Primitive(*pc)(accu, sp[1], sp[2], sp[3]);
- | ^
- interp.c:925:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 925 | accu = Primitive(*pc)(accu, sp[1], sp[2], sp[3], sp[4]);
- | ^
- interp.c:934:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 934 | accu = Primitive(*pc)(sp + 1, nargs);
- | ^
- 6 warnings generated.
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT misc.c -o misc.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT stacks.c -o stacks.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT fix_code.c -o fix_code.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT startup_aux.c -o startup_aux.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT startup.c -o startup.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT freelist.c -o freelist.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT major_gc.c -o major_gc.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT minor_gc.c -o minor_gc.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT memory.c -o memory.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT alloc.c -o alloc.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT roots.c -o roots.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT globroots.c -o globroots.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT fail.c -o fail.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT signals.c -o signals.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT signals_byt.c -o signals_byt.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT printexc.c -o printexc.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT backtrace_prim.c -o backtrace_prim.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT backtrace.c -o backtrace.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT compare.c -o compare.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT ints.c -o ints.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT floats.c -o floats.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT str.c -o str.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT array.c -o array.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT io.c -o io.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT extern.c -o extern.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT intern.c -o intern.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT hash.c -o hash.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT sys.c -o sys.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT meta.c -o meta.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT parsing.c -o parsing.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT gc_ctrl.c -o gc_ctrl.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT terminfo.c -o terminfo.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT md5.c -o md5.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT obj.c -o obj.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT lexing.c -o lexing.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT callback.c -o callback.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT debugger.c -o debugger.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT weak.c -o weak.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT compact.c -o compact.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT finalise.c -o finalise.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT custom.c -o custom.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT dynlink.c -o dynlink.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT spacetime.c -o spacetime.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT unix.c -o unix.d.o
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT main.c -o main.d.o
- sed -e '/\/\*/d' \
- -e '/^#/d' \
- -e 's/enum /char * names_of_/' \
- -e 's/{$/[] = {/' \
- -e 's/\([[:upper:]][[:upper:]_0-9]*\)/"\1"/g' caml/instruct.h \
- > caml/opnames.h
- cc -c -DCAML_NAME_SPACE -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT instrtrace.c -o instrtrace.d.o
- instrtrace.c:41:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 41 | void caml_disasm_instr(pc)
- | ^
- 1 warning generated.
- ar rc libcamlrund.a interp.d.o misc.d.o stacks.d.o fix_code.d.o startup_aux.d.o startup.d.o freelist.d.o major_gc.d.o minor_gc.d.o memory.d.o alloc.d.o roots.d.o globroots.d.o fail.d.o signals.d.o signals_byt.d.o printexc.d.o backtrace_prim.d.o backtrace.d.o compare.d.o ints.d.o floats.d.o str.d.o array.d.o io.d.o extern.d.o intern.d.o hash.d.o sys.d.o meta.d.o parsing.d.o gc_ctrl.d.o terminfo.d.o md5.d.o obj.d.o lexing.d.o callback.d.o debugger.d.o weak.d.o compact.d.o finalise.d.o custom.d.o dynlink.d.o spacetime.d.o unix.d.o main.d.o instrtrace.d.o
- ranlib libcamlrund.a
- cc -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind -g -o ocamlrund \
- prims.o libcamlrund.a -lcurses -lpthread
- ld: warning: -keep_dwarf_unwind is obsolete
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT interp.c -o interp.pic.o
- interp.c:898:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 898 | accu = Primitive(*pc)(accu);
- | ^
- interp.c:904:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 904 | accu = Primitive(*pc)(accu, sp[1]);
- | ^
- interp.c:911:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 911 | accu = Primitive(*pc)(accu, sp[1], sp[2]);
- | ^
- interp.c:918:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 918 | accu = Primitive(*pc)(accu, sp[1], sp[2], sp[3]);
- | ^
- interp.c:925:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 925 | accu = Primitive(*pc)(accu, sp[1], sp[2], sp[3], sp[4]);
- | ^
- interp.c:934:28: warning: passing arguments to a function without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
- 934 | accu = Primitive(*pc)(sp + 1, nargs);
- | ^
- 6 warnings generated.
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT misc.c -o misc.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT stacks.c -o stacks.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT fix_code.c -o fix_code.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT startup_aux.c -o startup_aux.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT startup.c -o startup.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT freelist.c -o freelist.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT major_gc.c -o major_gc.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT minor_gc.c -o minor_gc.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT memory.c -o memory.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT alloc.c -o alloc.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT roots.c -o roots.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT globroots.c -o globroots.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT fail.c -o fail.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT signals.c -o signals.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT signals_byt.c -o signals_byt.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT printexc.c -o printexc.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT backtrace_prim.c -o backtrace_prim.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT backtrace.c -o backtrace.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT compare.c -o compare.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT ints.c -o ints.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT floats.c -o floats.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT str.c -o str.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT array.c -o array.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT io.c -o io.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT extern.c -o extern.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT intern.c -o intern.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT hash.c -o hash.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT sys.c -o sys.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT meta.c -o meta.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT parsing.c -o parsing.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT gc_ctrl.c -o gc_ctrl.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT terminfo.c -o terminfo.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT md5.c -o md5.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT obj.c -o obj.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT lexing.c -o lexing.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT callback.c -o callback.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT debugger.c -o debugger.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT weak.c -o weak.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT compact.c -o compact.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT finalise.c -o finalise.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT custom.c -o custom.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT dynlink.c -o dynlink.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT spacetime.c -o spacetime.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT unix.c -o unix.pic.o
- cc -c -DCAML_NAME_SPACE -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT main.c -o main.pic.o
- ar rc libcamlrun_pic.a interp.pic.o misc.pic.o stacks.pic.o fix_code.pic.o startup_aux.pic.o startup.pic.o freelist.pic.o major_gc.pic.o minor_gc.pic.o memory.pic.o alloc.pic.o roots.pic.o globroots.pic.o fail.pic.o signals.pic.o signals_byt.pic.o printexc.pic.o backtrace_prim.pic.o backtrace.pic.o compare.pic.o ints.pic.o floats.pic.o str.pic.o array.pic.o io.pic.o extern.pic.o intern.pic.o hash.pic.o sys.pic.o meta.pic.o parsing.pic.o gc_ctrl.pic.o terminfo.pic.o md5.pic.o obj.pic.o lexing.pic.o callback.pic.o debugger.pic.o weak.pic.o compact.pic.o finalise.pic.o custom.pic.o dynlink.pic.o spacetime.pic.o unix.pic.o main.pic.o
- ranlib libcamlrun_pic.a
- cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind -o libcamlrun_shared.so interp.pic.o misc.pic.o stacks.pic.o fix_code.pic.o startup_aux.pic.o startup.pic.o freelist.pic.o major_gc.pic.o minor_gc.pic.o memory.pic.o alloc.pic.o roots.pic.o globroots.pic.o fail.pic.o signals.pic.o signals_byt.pic.o printexc.pic.o backtrace_prim.pic.o backtrace.pic.o compare.pic.o ints.pic.o floats.pic.o str.pic.o array.pic.o io.pic.o extern.pic.o intern.pic.o hash.pic.o sys.pic.o meta.pic.o parsing.pic.o gc_ctrl.pic.o terminfo.pic.o md5.pic.o obj.pic.o lexing.pic.o callback.pic.o debugger.pic.o weak.pic.o compact.pic.o finalise.pic.o custom.pic.o dynlink.pic.o spacetime.pic.o unix.pic.o main.pic.o -lcurses -lpthread
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- cp byterun/ocamlrun boot/ocamlrun
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o closure.o closure.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o error.o error.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lalr.o lalr.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lr0.o lr0.c
- echo "#define OCAML_VERSION \"`sed -e 1q ../VERSION`\"" >version.h
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o main.o main.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o mkpar.o mkpar.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o output.o output.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o reader.o reader.c
- reader.c:1036:7: warning: variable 'n' set but not used [-Wunused-but-set-variable]
- 1036 | int n;
- | ^
- 1 warning generated.
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o skeleton.o skeleton.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o symtab.o symtab.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o verbose.o verbose.c
- cc -DNDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o warshall.o warshall.c
- cc -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind -o ocamlyacc closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o skeleton.o symtab.o verbose.o warshall.o
- ld: warning: -keep_dwarf_unwind is obsolete
- cp yacc/ocamlyacc boot/ocamlyacc
- cd stdlib; \
- /Library/Developer/CommandLineTools/usr/bin/make COMPILER="../boot/ocamlc -use-prims ../byterun/primitives" all
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormatBasics.cmi` -c camlinternalFormatBasics.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormatBasics.cmo` -c camlinternalFormatBasics.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags pervasives.cmi` -c pervasives.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags pervasives.cmo` -c pervasives.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags list.cmi` -c list.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags list.cmo` -c list.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags char.cmi` -c char.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags char.cmo` -c char.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytes.cmi` -c bytes.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytes.cmo` -c bytes.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags string.cmi` -c string.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags string.cmo` -c string.ml
- sed -e "s|%%VERSION%%|`sed -e 1q ../VERSION`|" sys.mlp >sys.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sys.cmi` -c sys.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sys.cmo` -c sys.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags array.cmi` -c array.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sort.cmi` -c sort.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sort.cmo` -c sort.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags marshal.cmi` -c marshal.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags marshal.cmo` -c marshal.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int32.cmi` -c int32.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags obj.cmi` -c obj.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags obj.cmo` -c obj.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags array.cmo` -c array.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int32.cmo` -c int32.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int64.cmi` -c int64.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int64.cmo` -c int64.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags nativeint.cmi` -c nativeint.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags nativeint.cmo` -c nativeint.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lexing.cmi` -c lexing.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lexing.cmo` -c lexing.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags parsing.cmi` -c parsing.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags parsing.cmo` -c parsing.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags set.cmi` -c set.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags set.cmo` -c set.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags map.cmi` -c map.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags map.cmo` -c map.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stack.cmi` -c stack.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stack.cmo` -c stack.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags queue.cmi` -c queue.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags queue.cmo` -c queue.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalLazy.cmi` -c camlinternalLazy.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalLazy.cmo` -c camlinternalLazy.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lazy.cmi` -c lazy.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lazy.cmo` -c lazy.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stream.cmi` -c stream.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stream.cmo` -c stream.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags buffer.cmi` -c buffer.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags buffer.cmo` -c buffer.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormat.cmi` -c camlinternalFormat.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormat.cmo` -c camlinternalFormat.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printf.cmi` -c printf.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printf.cmo` -c printf.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arg.cmi` -c arg.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arg.cmo` -c arg.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printexc.cmi` -c printexc.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printexc.cmo` -c printexc.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags gc.cmi` -c gc.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags gc.cmo` -c gc.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags digest.cmi` -c digest.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags digest.cmo` -c digest.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags random.cmi` -c random.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags random.cmo` -c random.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags hashtbl.cmi` -c hashtbl.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags hashtbl.cmo` -c hashtbl.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags weak.cmi` -c weak.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags weak.cmo` -c weak.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags format.cmi` -c format.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags format.cmo` -c format.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags uchar.cmi` -c uchar.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags uchar.cmo` -c uchar.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags scanf.cmi` -c scanf.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags scanf.cmo` -c scanf.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags callback.cmi` -c callback.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags callback.cmo` -c callback.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalOO.cmi` -c camlinternalOO.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalOO.cmo` -c camlinternalOO.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags oo.cmi` -c oo.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags oo.cmo` -c oo.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalMod.cmi` -c camlinternalMod.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalMod.cmo` -c camlinternalMod.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags genlex.cmi` -c genlex.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags genlex.cmo` -c genlex.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags ephemeron.cmi` -c ephemeron.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags ephemeron.cmo` -c ephemeron.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags filename.cmi` -c filename.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags filename.cmo` -c filename.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags complex.cmi` -c complex.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags complex.cmo` -c complex.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arrayLabels.cmi` -c arrayLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arrayLabels.cmo` -c arrayLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags listLabels.cmi` -c listLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags listLabels.cmo` -c listLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytesLabels.cmi` -c bytesLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytesLabels.cmo` -c bytesLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stringLabels.cmi` -c stringLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stringLabels.cmo` -c stringLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags moreLabels.cmi` -c moreLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags moreLabels.cmo` -c moreLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stdLabels.cmi` -c stdLabels.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stdLabels.cmo` -c stdLabels.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags spacetime.cmi` -c spacetime.mli
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags spacetime.cmo` -c spacetime.ml
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -a -o stdlib.cma camlinternalFormatBasics.cmo pervasives.cmo list.cmo char.cmo bytes.cmo string.cmo sys.cmo sort.cmo marshal.cmo obj.cmo array.cmo int32.cmo int64.cmo nativeint.cmo lexing.cmo parsing.cmo set.cmo map.cmo stack.cmo queue.cmo camlinternalLazy.cmo lazy.cmo stream.cmo buffer.cmo camlinternalFormat.cmo printf.cmo arg.cmo printexc.cmo gc.cmo digest.cmo random.cmo hashtbl.cmo weak.cmo format.cmo uchar.cmo scanf.cmo callback.cmo camlinternalOO.cmo oo.cmo camlinternalMod.cmo genlex.cmo ephemeron.cmo filename.cmo complex.cmo arrayLabels.cmo listLabels.cmo bytesLabels.cmo stringLabels.cmo moreLabels.cmo stdLabels.cmo spacetime.cmo
- ../boot/ocamlrun ../boot/ocamlc -use-prims ../byterun/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags std_exit.cmo` -c std_exit.ml
- if true; then \
- for suff in '' d i; do \
- echo '#!/Users/mac1000/.opam/4.14.2/bin/ocamlrun'$suff > camlheader$suff && \
- echo '#!/Users/mac1000/.opam/4.14.2/bin/ocamlrun'$suff >target_camlheader$suff; \
- done && \
- echo '#!' | tr -d '\012' > camlheader_ur; \
- else \
- for suff in '' d i; do \
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
- -DRUNTIME_NAME='"/Users/mac1000/.opam/4.14.2/bin/ocamlrun'$suff'"' \
- header.c -o tmpheader && \
- strip tmpheader && \
- mv tmpheader camlheader$suff && \
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
- -DRUNTIME_NAME='"/Users/mac1000/.opam/4.14.2/bin/ocamlrun'$suff'"' \
- header.c -o tmpheader && \
- strip tmpheader && \
- mv tmpheader target_camlheader$suff; \
- done && \
- cp camlheader camlheader_ur; \
- fi
- cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
- if test -f boot/libcamlrun.a; then :; else \
- ln -s ../byterun/libcamlrun.a boot/libcamlrun.a; fi
- if test -d stdlib/caml; then :; else \
- ln -s ../byterun/caml stdlib/caml; fi
- /Library/Developer/CommandLineTools/usr/bin/make all
- /Library/Developer/CommandLineTools/usr/bin/make runtime
- cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- if test -f stdlib/libcamlrun.a; then :; else \
- ln -s ../byterun/libcamlrun.a stdlib/libcamlrun.a; fi
- /Library/Developer/CommandLineTools/usr/bin/make coreall
- /Library/Developer/CommandLineTools/usr/bin/make ocamlc
- sed -e 's|%%LIBDIR%%|/Users/mac1000/.opam/4.14.2/lib/ocaml|' \
- -e 's|%%BYTERUN%%|/Users/mac1000/.opam/4.14.2/bin/ocamlrun|' \
- -e 's|%%CCOMPTYPE%%|cc|' \
- -e 's|%%BYTECC%%|cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT |' \
- -e 's|%%NATIVECC%%|cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT|' \
- -e '/c_compiler =/s| -Werror||' \
- -e 's|%%PACKLD%%|ld -r -o\ |' \
- -e 's|%%BYTECCLIBS%%|-lcurses -lpthread |' \
- -e 's|%%NATIVECCLIBS%%||' \
- -e 's|%%RANLIBCMD%%|ranlib|' \
- -e 's|%%ARCMD%%|ar|' \
- -e 's|%%CC_PROFILE%%|-pg|' \
- -e 's|%%ARCH%%|amd64|' \
- -e 's|%%MODEL%%|default|' \
- -e 's|%%SYSTEM%%|macosx|' \
- -e 's|%%EXT_OBJ%%|.o|' \
- -e 's|%%EXT_ASM%%|.s|' \
- -e 's|%%EXT_LIB%%|.a|' \
- -e 's|%%EXT_DLL%%|.so|' \
- -e 's|%%SYSTHREAD_SUPPORT%%|true|' \
- -e 's|%%ASM%%|clang -arch x86_64 -c|' \
- -e 's|%%ASM_CFI_SUPPORTED%%|true|' \
- -e 's|%%WITH_FRAME_POINTERS%%|false|' \
- -e 's|%%WITH_SPACETIME%%|true|' \
- -e 's|%%PROFINFO_WIDTH%%|26|' \
- -e 's|%%LIBUNWIND_AVAILABLE%%|true|' \
- -e 's|%%LIBUNWIND_LINK_FLAGS%%|-framework System|' \
- -e 's|%%MKDLL%%|cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind|' \
- -e 's|%%MKEXE%%|cc -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind|' \
- -e 's|%%MKMAINDLL%%|cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind|' \
- -e 's|%%HOST%%|x86_64-apple-darwin24.5.0|' \
- -e 's|%%TARGET%%|x86_64-apple-darwin24.5.0|' \
- -e 's|%%FLAMBDA%%|false|' \
- -e 's|%%SAFE_STRING%%|false|' \
- utils/config.mlp > utils/config.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/config.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/config.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/misc.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/misc.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/identifiable.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/identifiable.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/numbers.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/numbers.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/arg_helper.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/arg_helper.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/clflags.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/clflags.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/tbl.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/tbl.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/timings.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/timings.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/terminfo.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/terminfo.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/ccomp.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/ccomp.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/warnings.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/warnings.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/consistbl.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/consistbl.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/strongly_connected_components.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/strongly_connected_components.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/location.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/location.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/longident.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/longident.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/asttypes.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/parsetree.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/docstrings.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/docstrings.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_helper.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_helper.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.ml
- boot/ocamlyacc -v --strict parsing/parser.mly
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/parser.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/parser.ml
- boot/ocamlrun boot/ocamllex parsing/lexer.mll
- 215 states, 5363 transitions, table size 22742 bytes
- 2518 additional bytes used for bindings
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/lexer.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/lexer.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/parse.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/parse.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/printast.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/printast.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/pprintast.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/pprintast.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_iterator.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_iterator.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/attr_helper.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/attr_helper.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/builtin_attributes.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/builtin_attributes.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_invariants.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_invariants.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/depend.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/depend.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/ident.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/ident.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/path.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/path.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/outcometree.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/primitive.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/primitive.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/types.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/types.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/btype.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/btype.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/oprint.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/oprint.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/subst.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/subst.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/predef.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/predef.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/datarepr.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/datarepr.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/cmi_format.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/cmi_format.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/env.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/env.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtree.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtree.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/printtyped.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/printtyped.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/ctype.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/ctype.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/printtyp.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/printtyp.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includeclass.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includeclass.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/mtype.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/mtype.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/envaux.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/envaux.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includecore.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includecore.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtreeIter.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtreeIter.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtreeMap.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtreeMap.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/tast_mapper.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/tast_mapper.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/cmt_format.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/cmt_format.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/untypeast.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/untypeast.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includemod.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includemod.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typetexp.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typetexp.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/parmatch.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/parmatch.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/annot.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/stypes.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/stypes.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typecore.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typecore.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typeclass.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typeclass.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typemod.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typemod.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/lambda.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/lambda.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printlambda.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printlambda.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/typeopt.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/typeopt.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/switch.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/switch.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/matching.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/matching.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translobj.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translobj.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translattribute.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translattribute.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translcore.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translcore.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translclass.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translclass.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translmod.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translmod.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/simplif.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/simplif.ml
- (echo 'let builtin_exceptions = [|'; \
- sed -n -e 's|.*/\* \("[A-Za-z_]*"\) \*/$| \1;|p' \
- byterun/caml/fail.h; \
- echo '|]'; \
- echo 'let builtin_primitives = [|'; \
- sed -e 's/.*/ "&";/' byterun/primitives; \
- echo '|]') > bytecomp/runtimedef.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/runtimedef.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/runtimedef.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/pparse.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/pparse.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/main_args.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/main_args.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compenv.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compenv.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compmisc.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compmisc.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -a -linkall -o compilerlibs/ocamlcommon.cma utils/config.cmo utils/misc.cmo utils/identifiable.cmo utils/numbers.cmo utils/arg_helper.cmo utils/clflags.cmo utils/tbl.cmo utils/timings.cmo utils/terminfo.cmo utils/ccomp.cmo utils/warnings.cmo utils/consistbl.cmo utils/strongly_connected_components.cmo parsing/location.cmo parsing/longident.cmo parsing/docstrings.cmo parsing/ast_helper.cmo parsing/syntaxerr.cmo parsing/parser.cmo parsing/lexer.cmo parsing/parse.cmo parsing/printast.cmo parsing/pprintast.cmo parsing/ast_mapper.cmo parsing/ast_iterator.cmo parsing/attr_helper.cmo parsing/builtin_attributes.cmo parsing/ast_invariants.cmo parsing/depend.cmo typing/ident.cmo typing/path.cmo typing/primitive.cmo typing/types.cmo typing/btype.cmo typing/oprint.cmo typing/subst.cmo typing/predef.cmo typing/datarepr.cmo typing/cmi_format.cmo typing/env.cmo typing/typedtree.cmo typing/printtyped.cmo typing/ctype.cmo typing/printtyp.cmo typing/includeclass.cmo typing/mtype.cmo typing/envaux.cmo typing/includecore.cmo typing/typedtreeIter.cmo typing/typedtreeMap.cmo typing/tast_mapper.cmo typing/cmt_format.cmo typing/untypeast.cmo typing/includemod.cmo typing/typetexp.cmo typing/parmatch.cmo typing/stypes.cmo typing/typedecl.cmo typing/typecore.cmo typing/typeclass.cmo typing/typemod.cmo bytecomp/lambda.cmo bytecomp/printlambda.cmo bytecomp/typeopt.cmo bytecomp/switch.cmo bytecomp/matching.cmo bytecomp/translobj.cmo bytecomp/translattribute.cmo bytecomp/translcore.cmo bytecomp/translclass.cmo bytecomp/translmod.cmo bytecomp/simplif.cmo bytecomp/runtimedef.cmo driver/pparse.cmo driver/main_args.cmo driver/compenv.cmo driver/compmisc.cmo
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/instruct.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/meta.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/meta.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/instruct.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.ml
- sed -n -e '/^enum/p' -e 's/,//g' -e '/^ /p' byterun/caml/instruct.h | \
- awk -f tools/make-opcodes > bytecomp/opcodes.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/cmo_format.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/dll.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/dll.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/symtable.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/symtable.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.ml
- cp otherlibs/dynlink/dynlink.mli driver/compdynlink.mli
- grep -v 'REMOVE_ME for ../../debugger/dynlink.ml' \
- otherlibs/dynlink/dynlink.ml >driver/compdynlink.mlbyte
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compdynlink.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c -impl driver/compdynlink.mlbyte
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compplugin.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compplugin.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/errors.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/errors.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compile.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compile.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -a -o compilerlibs/ocamlbytecomp.cma bytecomp/meta.cmo bytecomp/instruct.cmo bytecomp/bytegen.cmo bytecomp/printinstr.cmo bytecomp/opcodes.cmo bytecomp/emitcode.cmo bytecomp/bytesections.cmo bytecomp/dll.cmo bytecomp/symtable.cmo bytecomp/bytelink.cmo bytecomp/bytelibrarian.cmo bytecomp/bytepackager.cmo driver/compdynlink.cmo driver/compplugin.cmo driver/errors.cmo driver/compile.cmo
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/main.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/main.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -compat-32 -o ocamlc \
- compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma \
- driver/main.cmo
- /Library/Developer/CommandLineTools/usr/bin/make ocamllex ocamlyacc ocamltools library
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- make[4]: Nothing to be done for `all'.
- cd lex; /Library/Developer/CommandLineTools/usr/bin/make all
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot cset.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot cset.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot syntax.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot syntax.ml
- ../boot/ocamlyacc -v parser.mly
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot parser.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot parser.ml
- ../boot/ocamlrun ../boot/ocamllex lexer.mll
- 98 states, 1199 transitions, table size 5384 bytes
- 1802 additional bytes used for bindings
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexer.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexer.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot table.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot table.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot compact.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot compact.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot common.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot common.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot output.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot output.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.mli
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot main.ml
- ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives -compat-32 -o ocamllex cset.cmo syntax.cmo parser.cmo lexer.cmo table.cmo lexgen.cmo compact.cmo common.cmo output.cmo outputbis.cmo main.cmo
- make[3]: Nothing to be done for `ocamlyacc'.
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/linkage_name.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/compilation_unit.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/variable.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/closure_element.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/var_within_closure.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/tag.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/symbol.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/static_exception.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/mutable_variable.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/set_of_closures_id.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/set_of_closures_origin.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/closure_id.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/projection.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/debuginfo.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/allocated_const.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/freshening.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/export_id.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simple_value_approx.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/export_info.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/clambda.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmx_format.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printclambda.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printclambda.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/debuginfo.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/tag.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/linkage_name.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/compilation_unit.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/variable.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/mutable_variable.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/id_types.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/id_types.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/set_of_closures_id.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/set_of_closures_origin.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/closure_element.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/closure_id.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/var_within_closure.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/static_exception.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/export_id.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/symbol.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/pass_wrapper.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/pass_wrapper.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/semantics_of_primitives.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/semantics_of_primitives.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/allocated_const.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/projection.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_iterators.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_iterators.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/backend_intf.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_utils.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_utils.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_cost.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_cost.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/effect_analysis.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/effect_analysis.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/freshening.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simple_value_approx.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_code.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_code.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure_conversion_aux.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure_conversion_aux.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure_conversion.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure_conversion.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/initialize_symbol_to_let_symbol.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/initialize_symbol_to_let_symbol.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_let_to_initialize_symbol.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_let_to_initialize_symbol.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/find_recursive_functions.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/find_recursive_functions.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/invariant_params.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/invariant_params.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inconstant_idents.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inconstant_idents.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/alias_analysis.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/alias_analysis.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_constants.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_constants.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/share_constants.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/share_constants.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_common.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_common.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_arguments.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_arguments.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_closure_vars.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_closure_vars.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_program_constructs.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_program_constructs.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_boxed_integer_ops_intf.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_boxed_integer_ops.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_boxed_integer_ops.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_primitives.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_primitives.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_stats_types.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_stats_types.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_stats.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_stats.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inline_and_simplify_aux.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inline_and_simplify_aux.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_free_vars_equal_to_args.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_free_vars_equal_to_args.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/extract_projections.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/extract_projections.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/augment_specialised_args.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/augment_specialised_args.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_free_vars_of_closures.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_free_vars_of_closures.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_specialised_args.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_specialised_args.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_closures.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_closures.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_decision_intf.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_transforms.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_transforms.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_decision.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_decision.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inline_and_simplify.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inline_and_simplify.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/ref_to_variables.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/ref_to_variables.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_invariants.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_invariants.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/middle_end.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/middle_end.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -a -o compilerlibs/ocamlmiddleend.cma middle_end/debuginfo.cmo middle_end/base_types/tag.cmo middle_end/base_types/linkage_name.cmo middle_end/base_types/compilation_unit.cmo middle_end/base_types/variable.cmo middle_end/base_types/mutable_variable.cmo middle_end/base_types/id_types.cmo middle_end/base_types/set_of_closures_id.cmo middle_end/base_types/set_of_closures_origin.cmo middle_end/base_types/closure_element.cmo middle_end/base_types/closure_id.cmo middle_end/base_types/var_within_closure.cmo middle_end/base_types/static_exception.cmo middle_end/base_types/export_id.cmo middle_end/base_types/symbol.cmo middle_end/pass_wrapper.cmo middle_end/semantics_of_primitives.cmo middle_end/allocated_const.cmo middle_end/projection.cmo middle_end/flambda.cmo middle_end/flambda_iterators.cmo middle_end/flambda_utils.cmo middle_end/inlining_cost.cmo middle_end/effect_analysis.cmo middle_end/freshening.cmo middle_end/simple_value_approx.cmo middle_end/lift_code.cmo middle_end/closure_conversion_aux.cmo middle_end/closure_conversion.cmo middle_end/initialize_symbol_to_let_symbol.cmo middle_end/lift_let_to_initialize_symbol.cmo middle_end/find_recursive_functions.cmo middle_end/invariant_params.cmo middle_end/inconstant_idents.cmo middle_end/alias_analysis.cmo middle_end/lift_constants.cmo middle_end/share_constants.cmo middle_end/simplify_common.cmo middle_end/remove_unused_arguments.cmo middle_end/remove_unused_closure_vars.cmo middle_end/remove_unused_program_constructs.cmo middle_end/simplify_boxed_integer_ops.cmo middle_end/simplify_primitives.cmo middle_end/inlining_stats_types.cmo middle_end/inlining_stats.cmo middle_end/inline_and_simplify_aux.cmo middle_end/remove_free_vars_equal_to_args.cmo middle_end/extract_projections.cmo middle_end/augment_specialised_args.cmo middle_end/unbox_free_vars_of_closures.cmo middle_end/unbox_specialised_args.cmo middle_end/unbox_closures.cmo middle_end/inlining_transforms.cmo middle_end/inlining_decision.cmo middle_end/inline_and_simplify.cmo middle_end/ref_to_variables.cmo middle_end/flambda_invariants.cmo middle_end/middle_end.cmo
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/export_info.ml
- cd tools ; /Library/Developer/CommandLineTools/usr/bin/make all
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - ocamldep.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -compat-32 -I .. -o ocamldep timings.cmo misc.cmo config.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo terminfo.cmo warnings.cmo location.cmo longident.cmo docstrings.cmo syntaxerr.cmo ast_helper.cmo parser.cmo lexer.cmo parse.cmo ccomp.cmo ast_mapper.cmo ast_iterator.cmo builtin_attributes.cmo ast_invariants.cmo pparse.cmo compenv.cmo depend.cmo ocamldep.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - profiling.mli
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - profiling.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - ocamlprof.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlprof misc.cmo config.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo terminfo.cmo warnings.cmo location.cmo longident.cmo docstrings.cmo syntaxerr.cmo ast_helper.cmo parser.cmo lexer.cmo parse.cmo profiling.cmo ocamlprof.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - ocamlcp.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlcp misc.cmo warnings.cmo config.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo main_args.cmo ocamlcp.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - ocamloptp.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamloptp misc.cmo warnings.cmo config.cmo identifiable.cmo numbers.cmo arg_helper.cmo clflags.cmo main_args.cmo ocamloptp.cmo
- (echo 'let bindir = "/Users/mac1000/.opam/4.14.2/bin"'; \
- echo 'let supports_shared_libraries = true';\
- echo 'let byteccrpath = ""'; \
- echo 'let nativeccrpath = ""'; \
- echo 'let mksharedlibrpath = ""'; \
- echo 'let toolpref = ""'; \
- sed -n -e 's/^#ml //p' ../config/Makefile) \
- > ocamlmklibconfig.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - ocamlmklibconfig.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - ocamlmklib.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlmklib ocamlmklibconfig.cmo config.cmo ocamlmklib.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - ocamlmktop.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlmktop misc.cmo identifiable.cmo numbers.cmo config.cmo arg_helper.cmo clflags.cmo ccomp.cmo ocamlmktop.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - cmt2annot.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - read_cmt.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o read_cmt ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma cmt2annot.cmo read_cmt.cmo
- unset LC_ALL || : ; \
- unset LC_CTYPE || : ; \
- unset LC_COLLATE LANG || : ; \
- sed -e '/[/][*]/d' \
- -e '/^#/d' \
- -e 's/enum \(.*\) {/let names_of_\1 = [|/' \
- -e 's/.*};$/ |]/' \
- -e 's/\([A-Z][A-Z_0-9a-z]*\)/"\1"/g' \
- -e 's/,/;/g' \
- ../byterun/caml/instruct.h > opnames.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - opnames.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - dumpobj.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o dumpobj misc.cmo identifiable.cmo numbers.cmo tbl.cmo config.cmo ident.cmo opcodes.cmo bytesections.cmo opnames.cmo dumpobj.cmo
- cc -o objinfo_helper -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
- '-Dsymbol_prefix="_"' objinfo_helper.c
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - objinfo.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlobjinfo ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ../compilerlibs/ocamlmiddleend.cma ../asmcomp/printclambda.cmo ../asmcomp/export_info.cmo objinfo.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - primreq.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o primreq config.cmo primreq.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - stripdebug.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o stripdebug ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma stripdebug.cmo
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - cmpbyt.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o cmpbyt ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma cmpbyt.cmo
- cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make all
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormatBasics.cmi` -c camlinternalFormatBasics.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormatBasics.cmo` -c camlinternalFormatBasics.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags pervasives.cmi` -c pervasives.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags pervasives.cmo` -c pervasives.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags list.cmi` -c list.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags list.cmo` -c list.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags char.cmi` -c char.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags char.cmo` -c char.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytes.cmi` -c bytes.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytes.cmo` -c bytes.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags string.cmi` -c string.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags string.cmo` -c string.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sys.cmi` -c sys.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sys.cmo` -c sys.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags array.cmi` -c array.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sort.cmi` -c sort.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sort.cmo` -c sort.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags marshal.cmi` -c marshal.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags marshal.cmo` -c marshal.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int32.cmi` -c int32.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags obj.cmi` -c obj.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags obj.cmo` -c obj.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags array.cmo` -c array.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int32.cmo` -c int32.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int64.cmi` -c int64.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int64.cmo` -c int64.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags nativeint.cmi` -c nativeint.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags nativeint.cmo` -c nativeint.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lexing.cmi` -c lexing.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lexing.cmo` -c lexing.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags parsing.cmi` -c parsing.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags parsing.cmo` -c parsing.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags set.cmi` -c set.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags set.cmo` -c set.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags map.cmi` -c map.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags map.cmo` -c map.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stack.cmi` -c stack.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stack.cmo` -c stack.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags queue.cmi` -c queue.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags queue.cmo` -c queue.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalLazy.cmi` -c camlinternalLazy.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalLazy.cmo` -c camlinternalLazy.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lazy.cmi` -c lazy.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lazy.cmo` -c lazy.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stream.cmi` -c stream.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stream.cmo` -c stream.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags buffer.cmi` -c buffer.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags buffer.cmo` -c buffer.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormat.cmi` -c camlinternalFormat.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormat.cmo` -c camlinternalFormat.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printf.cmi` -c printf.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printf.cmo` -c printf.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arg.cmi` -c arg.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arg.cmo` -c arg.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printexc.cmi` -c printexc.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printexc.cmo` -c printexc.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags gc.cmi` -c gc.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags gc.cmo` -c gc.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags digest.cmi` -c digest.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags digest.cmo` -c digest.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags random.cmi` -c random.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags random.cmo` -c random.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags hashtbl.cmi` -c hashtbl.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags hashtbl.cmo` -c hashtbl.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags weak.cmi` -c weak.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags weak.cmo` -c weak.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags format.cmi` -c format.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags format.cmo` -c format.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags uchar.cmi` -c uchar.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags uchar.cmo` -c uchar.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags scanf.cmi` -c scanf.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags scanf.cmo` -c scanf.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags callback.cmi` -c callback.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags callback.cmo` -c callback.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalOO.cmi` -c camlinternalOO.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalOO.cmo` -c camlinternalOO.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags oo.cmi` -c oo.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags oo.cmo` -c oo.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalMod.cmi` -c camlinternalMod.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalMod.cmo` -c camlinternalMod.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags genlex.cmi` -c genlex.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags genlex.cmo` -c genlex.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags ephemeron.cmi` -c ephemeron.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags ephemeron.cmo` -c ephemeron.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags filename.cmi` -c filename.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags filename.cmo` -c filename.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags complex.cmi` -c complex.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags complex.cmo` -c complex.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arrayLabels.cmi` -c arrayLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arrayLabels.cmo` -c arrayLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags listLabels.cmi` -c listLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags listLabels.cmo` -c listLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytesLabels.cmi` -c bytesLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytesLabels.cmo` -c bytesLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stringLabels.cmi` -c stringLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stringLabels.cmo` -c stringLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags moreLabels.cmi` -c moreLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags moreLabels.cmo` -c moreLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stdLabels.cmi` -c stdLabels.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stdLabels.cmo` -c stdLabels.ml
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags spacetime.cmi` -c spacetime.mli
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags spacetime.cmo` -c spacetime.ml
- ../boot/ocamlrun ../ocamlc -a -o stdlib.cma camlinternalFormatBasics.cmo pervasives.cmo list.cmo char.cmo bytes.cmo string.cmo sys.cmo sort.cmo marshal.cmo obj.cmo array.cmo int32.cmo int64.cmo nativeint.cmo lexing.cmo parsing.cmo set.cmo map.cmo stack.cmo queue.cmo camlinternalLazy.cmo lazy.cmo stream.cmo buffer.cmo camlinternalFormat.cmo printf.cmo arg.cmo printexc.cmo gc.cmo digest.cmo random.cmo hashtbl.cmo weak.cmo format.cmo uchar.cmo scanf.cmo callback.cmo camlinternalOO.cmo oo.cmo camlinternalMod.cmo genlex.cmo ephemeron.cmo filename.cmo complex.cmo arrayLabels.cmo listLabels.cmo bytesLabels.cmo stringLabels.cmo moreLabels.cmo stdLabels.cmo spacetime.cmo
- ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags std_exit.cmo` -c std_exit.ml
- /Library/Developer/CommandLineTools/usr/bin/make ocaml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/genprintval.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/genprintval.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/toploop.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/toploop.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/trace.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/trace.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/topdirs.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/topdirs.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/topmain.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/topmain.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -a -o compilerlibs/ocamltoplevel.cma toplevel/genprintval.cmo toplevel/toploop.cmo toplevel/trace.cmo toplevel/topdirs.cmo toplevel/topmain.cmo
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/topstart.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c toplevel/expunge.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -o expunge compilerlibs/ocamlcommon.cma \
- compilerlibs/ocamlbytecomp.cma toplevel/expunge.cmo
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -linkall -o ocaml.tmp \
- compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma \
- compilerlibs/ocamltoplevel.cma toplevel/topstart.cmo
- boot/ocamlrun ./expunge ocaml.tmp ocaml spacetime arg array arrayLabels buffer bytes bytesLabels callback camlinternalFormat camlinternalFormatBasics camlinternalLazy camlinternalMod camlinternalOO char complex digest filename format gc genlex hashtbl int32 int64 lazy lexing list listLabels map marshal moreLabels nativeint obj oo parsing pervasives printexc printf queue random scanf set sort stack stdLabels stream string stringLabels sys uchar weak outcometree topdirs toploop
- rm -f ocaml.tmp
- /Library/Developer/CommandLineTools/usr/bin/make otherlibraries ocamldebugger \
- ocamldoc
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- cd lex; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- cd tools ; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- for i in unix str num dynlink bigarray raw_spacetime_lib systhreads threads graph; do \
- (cd otherlibs/$i; /Library/Developer/CommandLineTools/usr/bin/make all) || exit $?; \
- done
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c accept.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c access.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c addrofstr.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c alarm.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c bind.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c chdir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c chmod.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c chown.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c chroot.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c close.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c closedir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c connect.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c cst2constr.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c cstringv.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c dup.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c dup2.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c envir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c errmsg.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c execv.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c execve.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c execvp.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c exit.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c fchmod.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c fchown.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c fcntl.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c fork.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c ftruncate.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getaddrinfo.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getcwd.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getegid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c geteuid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getgid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getgr.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getgroups.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c gethost.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c gethostname.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getlogin.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getnameinfo.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getpeername.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getpid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getppid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getproto.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getpw.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c gettimeofday.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getserv.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getsockname.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c getuid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c gmtime.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c initgroups.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c isatty.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c itimer.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c kill.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c link.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c listen.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c lockf.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c lseek.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c mkdir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c mkfifo.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c nice.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c open.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c opendir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c pipe.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c putenv.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c read.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c readdir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c readlink.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c rename.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c rewinddir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c rmdir.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c select.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c sendrecv.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c setgid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c setgroups.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c setsid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c setuid.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c shutdown.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c signals.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c sleep.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c socket.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c socketaddr.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c socketpair.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c sockopt.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c stat.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c strofaddr.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c symlink.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c termios.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c time.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c times.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c truncate.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c umask.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c unixsupport.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c unlink.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c utimes.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c wait.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c write.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -oc unix accept.o access.o addrofstr.o alarm.o bind.o chdir.o chmod.o chown.o chroot.o close.o closedir.o connect.o cst2constr.o cstringv.o dup.o dup2.o envir.o errmsg.o execv.o execve.o execvp.o exit.o fchmod.o fchown.o fcntl.o fork.o ftruncate.o getaddrinfo.o getcwd.o getegid.o geteuid.o getgid.o getgr.o getgroups.o gethost.o gethostname.o getlogin.o getnameinfo.o getpeername.o getpid.o getppid.o getproto.o getpw.o gettimeofday.o getserv.o getsockname.o getuid.o gmtime.o initgroups.o isatty.o itimer.o kill.o link.o listen.o lockf.o lseek.o mkdir.o mkfifo.o nice.o open.o opendir.o pipe.o putenv.o read.o readdir.o readlink.o rename.o rewinddir.o rmdir.o select.o sendrecv.o setgid.o setgroups.o setsid.o setuid.o shutdown.o signals.o sleep.o socket.o socketaddr.o socketpair.o sockopt.o stat.o strofaddr.o symlink.o termios.o time.o times.o truncate.o umask.o unixsupport.o unlink.o utimes.o wait.o write.o
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unix.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unix.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unixLabels.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unixLabels.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
- unix.cmo unixLabels.cmo
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -c strstubs.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -oc camlstr strstubs.o
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats str.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats str.ml
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 98, characters 29-43:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 98, characters 55-69:
- Warning 3: deprecated: Char.uppercase
- Use Char.uppercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 221, characters 38-52:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 278, characters 43-57:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 287, characters 45-59:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 301, characters 51-67:
- Warning 3: deprecated: String.lowercase
- Use String.lowercase_ascii instead.
- ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
- str.cmo
- Makefile:19: warning: overriding commands for target `depend'
- Makefile.shared:34: warning: ignoring old commands for target `depend'
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -DBNG_ARCH_amd64 -DBNG_ASM_LEVEL=1 -c bng.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -DBNG_ARCH_amd64 -DBNG_ASM_LEVEL=1 -c nat_stubs.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -oc nums bng.o nat_stubs.o
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats int_misc.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats int_misc.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats nat.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats nat.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats big_int.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats big_int.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats arith_flags.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats arith_flags.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats ratio.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats ratio.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats num.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats num.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats arith_status.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats arith_status.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o nums -oc nums -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
- int_misc.cmo nat.cmo big_int.cmo arith_flags.cmo ratio.cmo num.cmo arith_status.cmo
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -absname -w +a-4-9-41-42-44-45-48 -bin-annot -g -I ../../stdlib -warn-error A -safe-string -strict-sequence -strict-formats -pack -o dynlinkaux.cmo ../../utils/misc.cmo ../../utils/config.cmo ../../utils/identifiable.cmo ../../utils/numbers.cmo ../../utils/arg_helper.cmo ../../utils/clflags.cmo ../../utils/tbl.cmo ../../utils/consistbl.cmo ../../utils/terminfo.cmo ../../utils/warnings.cmo ../../parsing/asttypes.cmi ../../parsing/location.cmo ../../parsing/longident.cmo ../../parsing/docstrings.cmo ../../parsing/ast_helper.cmo ../../parsing/ast_mapper.cmo ../../parsing/ast_iterator.cmo ../../parsing/attr_helper.cmo ../../parsing/builtin_attributes.cmo ../../typing/ident.cmo ../../typing/path.cmo ../../typing/primitive.cmo ../../typing/types.cmo ../../typing/btype.cmo ../../typing/subst.cmo ../../typing/predef.cmo ../../typing/datarepr.cmo ../../typing/cmi_format.cmo ../../typing/env.cmo ../../bytecomp/lambda.cmo ../../bytecomp/instruct.cmo ../../bytecomp/cmo_format.cmi ../../bytecomp/opcodes.cmo ../../bytecomp/runtimedef.cmo ../../bytecomp/bytesections.cmo ../../bytecomp/dll.cmo ../../bytecomp/meta.cmo ../../bytecomp/symtable.cmo
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -absname -w +a-4-9-41-42-44-45-48 -bin-annot -g -I ../../stdlib -warn-error A -safe-string -strict-sequence -strict-formats dynlink.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -absname -w +a-4-9-41-42-44-45-48 -bin-annot -g -I ../../stdlib -warn-error A -safe-string -strict-sequence -strict-formats dynlink.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -absname -w +a-4-9-41-42-44-45-48 -bin-annot -g -I ../../stdlib -warn-error A -safe-string -strict-sequence -strict-formats -ccopt "" -a -o dynlink.cma \
- dynlinkaux.cmo dynlink.cmo
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -absname -w +a-4-9-41-42-44-45-48 -bin-annot -g -I ../../stdlib -warn-error A -safe-string -strict-sequence -strict-formats extract_crc.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -o extract_crc dynlink.cma extract_crc.cmo
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I../unix -DIN_OCAML_BIGARRAY -DCAML_NAME_SPACE -c bigarray_stubs.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I../unix -DIN_OCAML_BIGARRAY -DCAML_NAME_SPACE -c mmap_unix.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -oc bigarray bigarray_stubs.o mmap_unix.o
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -I ../unix bigarray.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -I ../unix bigarray.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o bigarray -oc bigarray -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
- bigarray.cmo
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string raw_spacetime_lib.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string raw_spacetime_lib.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -a -o raw_spacetime_lib.cma -linkall raw_spacetime_lib.cmo
- cc -I../../byterun -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
- -c st_stubs.c
- mv st_stubs.o st_stubs_b.o
- ../../boot/ocamlrun ../../tools/ocamlmklib -o threads st_stubs_b.o -lpthread
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string thread.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string thread.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string mutex.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string mutex.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string condition.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string condition.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string event.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string event.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string threadUnix.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string threadUnix.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -o threads thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo \
- -cclib -lunix -cclib -lpthread
- cc -I../../byterun -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -g -c -o scheduler.o scheduler.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -o threads -oc vmthreads scheduler.o
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ln -s -f ../unix/unix.mli unix.mli
- ln -s -f ../unix/unix.cmi unix.cmi
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -w +33..39 -warn-error A -bin-annot -g -safe-string -c unix.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string thread.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string thread.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string mutex.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string mutex.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string condition.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string condition.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string event.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string event.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string threadUnix.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -bin-annot -g -safe-string threadUnix.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -o threads -oc vmthreads thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo
- ln -s ../../stdlib/pervasives.mli pervasives.mli
- ln -s ../../stdlib/pervasives.cmi pervasives.cmi
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -w +33..39 -warn-error A -bin-annot -g -safe-string -nopervasives -c pervasives.ml
- ln -s ../../stdlib/marshal.mli marshal.mli
- ln -s ../../stdlib/marshal.cmi marshal.cmi
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -w +33..39 -warn-error A -bin-annot -g -safe-string -c marshal.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -a -o stdlib.cma ../../stdlib/camlinternalFormatBasics.cmo pervasives.cmo ../../stdlib/array.cmo ../../stdlib/list.cmo ../../stdlib/char.cmo ../../stdlib/bytes.cmo ../../stdlib/string.cmo ../../stdlib/sys.cmo ../../stdlib/sort.cmo marshal.cmo ../../stdlib/obj.cmo ../../stdlib/int32.cmo ../../stdlib/int64.cmo ../../stdlib/nativeint.cmo ../../stdlib/lexing.cmo ../../stdlib/parsing.cmo ../../stdlib/set.cmo ../../stdlib/map.cmo ../../stdlib/stack.cmo ../../stdlib/queue.cmo ../../stdlib/camlinternalLazy.cmo ../../stdlib/lazy.cmo ../../stdlib/stream.cmo ../../stdlib/buffer.cmo ../../stdlib/camlinternalFormat.cmo ../../stdlib/printf.cmo ../../stdlib/arg.cmo ../../stdlib/printexc.cmo ../../stdlib/gc.cmo ../../stdlib/digest.cmo ../../stdlib/random.cmo ../../stdlib/hashtbl.cmo ../../stdlib/format.cmo ../../stdlib/scanf.cmo ../../stdlib/callback.cmo ../../stdlib/camlinternalOO.cmo ../../stdlib/oo.cmo ../../stdlib/camlinternalMod.cmo ../../stdlib/genlex.cmo ../../stdlib/weak.cmo ../../stdlib/ephemeron.cmo ../../stdlib/filename.cmo ../../stdlib/complex.cmo ../../stdlib/arrayLabels.cmo ../../stdlib/listLabels.cmo ../../stdlib/bytesLabels.cmo ../../stdlib/stringLabels.cmo ../../stdlib/moreLabels.cmo ../../stdlib/stdLabels.cmo
- ../../boot/ocamlrun ../../tools/ocamlmklib -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -o unix -linkall unix.cmo ../unix/unixLabels.cmo
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c open.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c draw.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c fill.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c color.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c text.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c image.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c make_img.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c dump_img.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c point_col.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c sound.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c events.c
- cc -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -I/usr/X11R6/include -c subwindow.c
- ../../boot/ocamlrun ../../tools/ocamlmklib -oc graphics open.o draw.o fill.o color.o text.o image.o make_img.o dump_img.o point_col.o sound.o events.o subwindow.o -ldopt "-L/usr/X11R6/lib -lX11"
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats graphics.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats graphics.ml
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats graphicsX11.mli
- ../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats graphicsX11.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o graphics -oc graphics -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
- graphics.cmo graphicsX11.cmo -cclib "\"-L/usr/X11R6/lib -lX11\""
- cd debugger; /Library/Developer/CommandLineTools/usr/bin/make all
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats int64ops.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats int64ops.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats primitives.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats primitives.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats unix_tools.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats unix_tools.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats debugger_config.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats debugger_config.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats parameters.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats parameters.ml
- ../boot/ocamlrun ../boot/ocamllex lexer.mll
- 41 states, 1026 transitions, table size 4350 bytes
- 1285 additional bytes used for bindings
- ../boot/ocamlyacc parser.mly
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats parser_aux.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats parser.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats lexer.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats lexer.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats input_handling.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats input_handling.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats question.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats question.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats debugcom.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats debugcom.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats exec.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats exec.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats source.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats source.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats pos.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats pos.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats checkpoints.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats checkpoints.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats events.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats events.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats program_loading.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats program_loading.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats symbols.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats symbols.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats breakpoints.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats breakpoints.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats trap_barrier.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats trap_barrier.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats history.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats history.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats printval.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats printval.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats show_source.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats show_source.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats time_travel.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats time_travel.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats program_management.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats program_management.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats frames.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats frames.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats eval.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats eval.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats show_information.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats show_information.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats loadprinter.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats loadprinter.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats parser.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats command_line.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats command_line.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -c -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats main.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -linkall -I ../otherlibs/unix -o ocamldebug -linkall ../otherlibs/unix/unix.cma ../utils/config.cmo ../utils/tbl.cmo ../utils/misc.cmo ../utils/identifiable.cmo ../utils/numbers.cmo ../utils/arg_helper.cmo ../utils/clflags.cmo ../utils/consistbl.cmo ../utils/warnings.cmo ../utils/terminfo.cmo ../parsing/location.cmo ../parsing/longident.cmo ../parsing/docstrings.cmo ../parsing/ast_helper.cmo ../parsing/ast_mapper.cmo ../parsing/ast_iterator.cmo ../parsing/attr_helper.cmo ../parsing/builtin_attributes.cmo ../typing/ident.cmo ../typing/path.cmo ../typing/types.cmo ../typing/btype.cmo ../typing/primitive.cmo ../typing/typedtree.cmo ../typing/subst.cmo ../typing/predef.cmo ../typing/datarepr.cmo ../typing/cmi_format.cmo ../typing/env.cmo ../typing/oprint.cmo ../typing/ctype.cmo ../typing/printtyp.cmo ../typing/mtype.cmo ../typing/envaux.cmo ../bytecomp/runtimedef.cmo ../bytecomp/bytesections.cmo ../bytecomp/dll.cmo ../bytecomp/meta.cmo ../bytecomp/symtable.cmo ../bytecomp/opcodes.cmo ../driver/compdynlink.cmo ../toplevel/genprintval.cmo int64ops.cmo primitives.cmo unix_tools.cmo debugger_config.cmo parameters.cmo lexer.cmo input_handling.cmo question.cmo debugcom.cmo exec.cmo source.cmo pos.cmo checkpoints.cmo events.cmo program_loading.cmo symbols.cmo breakpoints.cmo trap_barrier.cmo history.cmo printval.cmo show_source.cmo time_travel.cmo program_management.cmo frames.cmo eval.cmo show_information.cmo loadprinter.cmo parser.cmo command_line.cmo main.cmo
- cd ocamldoc && /Library/Developer/CommandLineTools/usr/bin/make all
- /Library/Developer/CommandLineTools/usr/bin/make exe
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_config.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_config.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_messages.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_types.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_global.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_global.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_types.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_misc.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_misc.ml
- ../boot/ocamlyacc -v odoc_text_parser.mly
- 5 shift/reduce conflicts.
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text_parser.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text_parser.ml
- ../boot/ocamlrun ../boot/ocamllex odoc_text_lexer.mll
- 251 states, 2458 transitions, table size 11338 bytes
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text_lexer.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_name.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_name.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_parameter.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_value.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_type.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_extension.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_exception.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_class.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_module.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_print.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_print.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_str.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_str.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_comments_global.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_comments_global.ml
- ../boot/ocamlyacc -v odoc_parser.mly
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_parser.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_parser.ml
- ../boot/ocamlrun ../boot/ocamllex odoc_lexer.mll
- 50 states, 614 transitions, table size 2756 bytes
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_lexer.ml
- ../boot/ocamlrun ../boot/ocamllex odoc_see_lexer.mll
- 20 states, 264 transitions, table size 1176 bytes
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_see_lexer.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_env.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_env.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_merge.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_merge.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_sig.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_sig.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_ast.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_ast.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_control.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_inherit.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_search.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_search.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_scan.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_cross.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_cross.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_comments.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_comments.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_dep.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_analyse.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_analyse.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_info.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_info.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_dag2html.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_dag2html.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_to_text.ml
- ../boot/ocamlrun ../boot/ocamllex odoc_ocamlhtml.mll
- 111 states, 2871 transitions, table size 12150 bytes
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_ocamlhtml.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_html.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_man.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_latex_style.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_latex.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_texi.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_dot.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_gen.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_gen.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_args.mli
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_args.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -o ocamldoc -linkall unix.cma str.cma dynlink.cma \
- ../compilerlibs/ocamlcommon.cma \
- -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -nostdlib odoc_config.cmo odoc_messages.cmo odoc_global.cmo odoc_types.cmo odoc_misc.cmo odoc_text_parser.cmo odoc_text_lexer.cmo odoc_text.cmo odoc_name.cmo odoc_parameter.cmo odoc_value.cmo odoc_type.cmo odoc_extension.cmo odoc_exception.cmo odoc_class.cmo odoc_module.cmo odoc_print.cmo odoc_str.cmo odoc_comments_global.cmo odoc_parser.cmo odoc_lexer.cmo odoc_see_lexer.cmo odoc_env.cmo odoc_merge.cmo odoc_sig.cmo odoc_ast.cmo odoc_control.cmo odoc_inherit.cmo odoc_search.cmo odoc_scan.cmo odoc_cross.cmo odoc_comments.cmo odoc_dep.cmo odoc_analyse.cmo odoc_info.cmo odoc_dag2html.cmo odoc_to_text.cmo odoc_ocamlhtml.cmo odoc_html.cmo odoc_man.cmo odoc_latex_style.cmo odoc_latex.cmo odoc_texi.cmo odoc_dot.cmo odoc_gen.cmo odoc_args.cmo odoc.cmo
- /Library/Developer/CommandLineTools/usr/bin/make lib
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -a -o odoc_info.cma -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -nostdlib \
- odoc_config.cmo odoc_messages.cmo odoc_global.cmo odoc_types.cmo odoc_misc.cmo odoc_text_parser.cmo odoc_text_lexer.cmo odoc_text.cmo odoc_name.cmo odoc_parameter.cmo odoc_value.cmo odoc_type.cmo odoc_extension.cmo odoc_exception.cmo odoc_class.cmo odoc_module.cmo odoc_print.cmo odoc_str.cmo odoc_comments_global.cmo odoc_parser.cmo odoc_lexer.cmo odoc_see_lexer.cmo odoc_env.cmo odoc_merge.cmo odoc_sig.cmo odoc_ast.cmo odoc_control.cmo odoc_inherit.cmo odoc_search.cmo odoc_scan.cmo odoc_cross.cmo odoc_comments.cmo odoc_dep.cmo odoc_analyse.cmo odoc_info.cmo
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_test.ml
- /Library/Developer/CommandLineTools/usr/bin/make generators
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c generators/odoc_todo.ml
- ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c generators/odoc_literate.ml
- /Library/Developer/CommandLineTools/usr/bin/make manpages
- mkdir -p stdlib_man
- ../boot/ocamlrun -I ../otherlibs/unix -I ../otherlibs/str ./ocamldoc -man -d stdlib_man -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph \
- -t "OCaml library" -man-mini \
- ../stdlib/*.mli ../parsing/*.mli ../otherlibs/unix/unix.mli ../otherlibs/str/str.mli ../otherlibs/bigarray/bigarray.mli ../otherlibs/num/num.mli
Processing 4/12: [ocaml-variants: make world.opt]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "make" "world.opt" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime)
- /Library/Developer/CommandLineTools/usr/bin/make coldstart
- cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
- make[2]: Nothing to be done for `all'.
- cp byterun/ocamlrun boot/ocamlrun
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- make[2]: Nothing to be done for `all'.
- cp yacc/ocamlyacc boot/ocamlyacc
- cd stdlib; \
- /Library/Developer/CommandLineTools/usr/bin/make COMPILER="../boot/ocamlc -use-prims ../byterun/primitives" all
- make[2]: Nothing to be done for `all'.
- cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
- if test -f boot/libcamlrun.a; then :; else \
- ln -s ../byterun/libcamlrun.a boot/libcamlrun.a; fi
- if test -d stdlib/caml; then :; else \
- ln -s ../byterun/caml stdlib/caml; fi
- /Library/Developer/CommandLineTools/usr/bin/make opt.opt
- /Library/Developer/CommandLineTools/usr/bin/make checkstack
- ld: warning: -keep_dwarf_unwind is obsolete
- /Library/Developer/CommandLineTools/usr/bin/make runtime
- cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- if test -f stdlib/libcamlrun.a; then :; else \
- ln -s ../byterun/libcamlrun.a stdlib/libcamlrun.a; fi
- /Library/Developer/CommandLineTools/usr/bin/make core
- /Library/Developer/CommandLineTools/usr/bin/make coldstart
- cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
- make[4]: Nothing to be done for `all'.
- cp byterun/ocamlrun boot/ocamlrun
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- make[4]: Nothing to be done for `all'.
- cp yacc/ocamlyacc boot/ocamlyacc
- cd stdlib; \
- /Library/Developer/CommandLineTools/usr/bin/make COMPILER="../boot/ocamlc -use-prims ../byterun/primitives" all
- make[4]: Nothing to be done for `all'.
- cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
- if test -f boot/libcamlrun.a; then :; else \
- ln -s ../byterun/libcamlrun.a boot/libcamlrun.a; fi
- if test -d stdlib/caml; then :; else \
- ln -s ../byterun/caml stdlib/caml; fi
- /Library/Developer/CommandLineTools/usr/bin/make coreall
- /Library/Developer/CommandLineTools/usr/bin/make ocamlc
- make[4]: `ocamlc' is up to date.
- /Library/Developer/CommandLineTools/usr/bin/make ocamllex ocamlyacc ocamltools library
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- make[5]: Nothing to be done for `all'.
- cd lex; /Library/Developer/CommandLineTools/usr/bin/make all
- make[5]: Nothing to be done for `all'.
- make[4]: Nothing to be done for `ocamlyacc'.
- cd tools ; /Library/Developer/CommandLineTools/usr/bin/make all
- make[5]: Nothing to be done for `all'.
- cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make all
- make[5]: Nothing to be done for `all'.
- /Library/Developer/CommandLineTools/usr/bin/make ocaml
- make[2]: `ocaml' is up to date.
- /Library/Developer/CommandLineTools/usr/bin/make opt-core
- /Library/Developer/CommandLineTools/usr/bin/make runtimeopt
- cd asmrun; /Library/Developer/CommandLineTools/usr/bin/make all
- ln -s ../byterun/startup_aux.c startup_aux.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o startup_aux.o startup_aux.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o startup.o startup.c
- ln -s ../byterun/main.c main.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o main.o main.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o fail.o fail.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o roots.o roots.c
- ln -s ../byterun/globroots.c globroots.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o globroots.o globroots.c
- ln -s ../byterun/signals.c signals.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals.o signals.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals_asm.o signals_asm.c
- ln -s ../byterun/freelist.c freelist.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o freelist.o freelist.c
- ln -s ../byterun/misc.c misc.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o misc.o misc.c
- ln -s ../byterun/major_gc.c major_gc.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o major_gc.o major_gc.c
- ln -s ../byterun/minor_gc.c minor_gc.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o minor_gc.o minor_gc.c
- ln -s ../byterun/memory.c memory.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o memory.o memory.c
- ln -s ../byterun/alloc.c alloc.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o alloc.o alloc.c
- ln -s ../byterun/compare.c compare.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compare.o compare.c
- ln -s ../byterun/ints.c ints.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o ints.o ints.c
- ln -s ../byterun/floats.c floats.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o floats.o floats.c
- ln -s ../byterun/str.c str.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o str.o str.c
- ln -s ../byterun/array.c array.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o array.o array.c
- ln -s ../byterun/io.c io.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o io.o io.c
- ln -s ../byterun/extern.c extern.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o extern.o extern.c
- ln -s ../byterun/intern.c intern.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o intern.o intern.c
- ln -s ../byterun/hash.c hash.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o hash.o hash.c
- ln -s ../byterun/sys.c sys.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o sys.o sys.c
- ln -s ../byterun/parsing.c parsing.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o parsing.o parsing.c
- ln -s ../byterun/gc_ctrl.c gc_ctrl.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o gc_ctrl.o gc_ctrl.c
- ln -s ../byterun/terminfo.c terminfo.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o terminfo.o terminfo.c
- ln -s ../byterun/md5.c md5.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o md5.o md5.c
- ln -s ../byterun/obj.c obj.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o obj.o obj.c
- ln -s ../byterun/lexing.c lexing.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lexing.o lexing.c
- ln -s ../byterun/printexc.c printexc.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o printexc.o printexc.c
- ln -s ../byterun/callback.c callback.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o callback.o callback.c
- ln -s ../byterun/weak.c weak.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o weak.o weak.c
- ln -s ../byterun/compact.c compact.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compact.o compact.c
- ln -s ../byterun/finalise.c finalise.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o finalise.o finalise.c
- ln -s ../byterun/custom.c custom.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o custom.o custom.c
- ln -s ../byterun/unix.c unix.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o unix.o unix.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o backtrace_prim.o backtrace_prim.c
- ln -s ../byterun/backtrace.c backtrace.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o backtrace.o backtrace.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o natdynlink.o natdynlink.c
- ln -s ../byterun/debugger.c debugger.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o debugger.o debugger.c
- ln -s ../byterun/meta.c meta.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o meta.o meta.c
- ln -s ../byterun/dynlink.c dynlink.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o dynlink.o dynlink.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o clambda_checks.o clambda_checks.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o spacetime.o spacetime.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o spacetime_snapshot.o spacetime_snapshot.c
- cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -O0 -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o spacetime_offline.o spacetime_offline.c
- cc -c -DSYS_macosx -DMODEL_default -o amd64.o amd64.S || \
- { echo "If your assembler produced syntax errors, it is probably";\
- echo "unhappy with the preprocessor. Check your assembler, or";\
- echo "try producing amd64.o by hand.";\
- exit 2; }
- rm -f libasmrun.a
- ar rc libasmrun.a startup_aux.o startup.o main.o fail.o roots.o globroots.o signals.o signals_asm.o freelist.o misc.o major_gc.o minor_gc.o memory.o alloc.o compare.o ints.o floats.o str.o array.o io.o extern.o intern.o hash.o sys.o parsing.o gc_ctrl.o terminfo.o md5.o obj.o lexing.o printexc.o callback.o weak.o compact.o finalise.o custom.o unix.o backtrace_prim.o backtrace.o natdynlink.o debugger.o meta.o dynlink.o clambda_checks.o spacetime.o spacetime_snapshot.o spacetime_offline.o amd64.o
- ranlib libasmrun.a
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup_aux.d.o startup_aux.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup.d.o startup.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o main.d.o main.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o fail.d.o fail.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o roots.d.o roots.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o globroots.d.o globroots.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals.d.o signals.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals_asm.d.o signals_asm.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o freelist.d.o freelist.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o misc.d.o misc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o major_gc.d.o major_gc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o minor_gc.d.o minor_gc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o memory.d.o memory.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o alloc.d.o alloc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compare.d.o compare.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o ints.d.o ints.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o floats.d.o floats.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o str.d.o str.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o array.d.o array.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o io.d.o io.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o extern.d.o extern.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o intern.d.o intern.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o hash.d.o hash.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o sys.d.o sys.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o parsing.d.o parsing.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o gc_ctrl.d.o gc_ctrl.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o terminfo.d.o terminfo.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o md5.d.o md5.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o obj.d.o obj.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o lexing.d.o lexing.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o printexc.d.o printexc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o callback.d.o callback.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o weak.d.o weak.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compact.d.o compact.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o finalise.d.o finalise.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o custom.d.o custom.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o unix.d.o unix.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace_prim.d.o backtrace_prim.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace.d.o backtrace.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o natdynlink.d.o natdynlink.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o debugger.d.o debugger.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o meta.d.o meta.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o dynlink.d.o dynlink.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o clambda_checks.d.o clambda_checks.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime.d.o spacetime.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime_snapshot.d.o spacetime_snapshot.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -g -DDEBUG -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime_offline.d.o spacetime_offline.c
- rm -f libasmrund.a
- ar rc libasmrund.a startup_aux.d.o startup.d.o main.d.o fail.d.o roots.d.o globroots.d.o signals.d.o signals_asm.d.o freelist.d.o misc.d.o major_gc.d.o minor_gc.d.o memory.d.o alloc.d.o compare.d.o ints.d.o floats.d.o str.d.o array.d.o io.d.o extern.d.o intern.d.o hash.d.o sys.d.o parsing.d.o gc_ctrl.d.o terminfo.d.o md5.d.o obj.d.o lexing.d.o printexc.d.o callback.d.o weak.d.o compact.d.o finalise.d.o custom.d.o unix.d.o backtrace_prim.d.o backtrace.d.o natdynlink.d.o debugger.d.o meta.d.o dynlink.d.o clambda_checks.d.o spacetime.d.o spacetime_snapshot.d.o spacetime_offline.d.o amd64.o
- ranlib libasmrund.a
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup_aux.p.o startup_aux.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup.p.o startup.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o main.p.o main.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o fail.p.o fail.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o roots.p.o roots.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o globroots.p.o globroots.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals.p.o signals.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals_asm.p.o signals_asm.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o freelist.p.o freelist.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o misc.p.o misc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o major_gc.p.o major_gc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o minor_gc.p.o minor_gc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o memory.p.o memory.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o alloc.p.o alloc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compare.p.o compare.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o ints.p.o ints.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o floats.p.o floats.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o str.p.o str.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o array.p.o array.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o io.p.o io.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o extern.p.o extern.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o intern.p.o intern.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o hash.p.o hash.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o sys.p.o sys.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o parsing.p.o parsing.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o gc_ctrl.p.o gc_ctrl.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o terminfo.p.o terminfo.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o md5.p.o md5.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o obj.p.o obj.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o lexing.p.o lexing.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o printexc.p.o printexc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o callback.p.o callback.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o weak.p.o weak.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compact.p.o compact.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o finalise.p.o finalise.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o custom.p.o custom.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o unix.p.o unix.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace_prim.p.o backtrace_prim.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace.p.o backtrace.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o natdynlink.p.o natdynlink.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o debugger.p.o debugger.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o meta.p.o meta.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o dynlink.p.o dynlink.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o clambda_checks.p.o clambda_checks.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime.p.o spacetime.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime_snapshot.p.o spacetime_snapshot.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -pg -DPROFILING -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime_offline.p.o spacetime_offline.c
- cc -c -DSYS_macosx -DMODEL_default -DPROFILING -o amd64.p.o amd64.S
- rm -f libasmrunp.a
- ar rc libasmrunp.a startup_aux.p.o startup.p.o main.p.o fail.p.o roots.p.o globroots.p.o signals.p.o signals_asm.p.o freelist.p.o misc.p.o major_gc.p.o minor_gc.p.o memory.p.o alloc.p.o compare.p.o ints.p.o floats.p.o str.p.o array.p.o io.p.o extern.p.o intern.p.o hash.p.o sys.p.o parsing.p.o gc_ctrl.p.o terminfo.p.o md5.p.o obj.p.o lexing.p.o printexc.p.o callback.p.o weak.p.o compact.p.o finalise.p.o custom.p.o unix.p.o backtrace_prim.p.o backtrace.p.o natdynlink.p.o debugger.p.o meta.p.o dynlink.p.o clambda_checks.p.o spacetime.p.o spacetime_snapshot.p.o spacetime_offline.p.o amd64.p.o
- ranlib libasmrunp.a
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup_aux.pic.o startup_aux.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup.pic.o startup.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o main.pic.o main.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o fail.pic.o fail.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o roots.pic.o roots.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o globroots.pic.o globroots.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals.pic.o signals.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals_asm.pic.o signals_asm.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o freelist.pic.o freelist.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o misc.pic.o misc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o major_gc.pic.o major_gc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o minor_gc.pic.o minor_gc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o memory.pic.o memory.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o alloc.pic.o alloc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compare.pic.o compare.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o ints.pic.o ints.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o floats.pic.o floats.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o str.pic.o str.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o array.pic.o array.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o io.pic.o io.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o extern.pic.o extern.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o intern.pic.o intern.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o hash.pic.o hash.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o sys.pic.o sys.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o parsing.pic.o parsing.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o gc_ctrl.pic.o gc_ctrl.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o terminfo.pic.o terminfo.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o md5.pic.o md5.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o obj.pic.o obj.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o lexing.pic.o lexing.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o printexc.pic.o printexc.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o callback.pic.o callback.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o weak.pic.o weak.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compact.pic.o compact.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o finalise.pic.o finalise.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o custom.pic.o custom.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o unix.pic.o unix.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace_prim.pic.o backtrace_prim.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace.pic.o backtrace.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o natdynlink.pic.o natdynlink.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o debugger.pic.o debugger.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o meta.pic.o meta.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o dynlink.pic.o dynlink.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o clambda_checks.pic.o clambda_checks.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime.pic.o spacetime.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime_snapshot.pic.o spacetime_snapshot.c
- cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DMODEL_default -DSYS_macosx -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o spacetime_offline.pic.o spacetime_offline.c
- cc -c -DSYS_macosx -DMODEL_default -o amd64.pic.o amd64.S
- rm -f libasmrun_pic.a
- ar rc libasmrun_pic.a startup_aux.pic.o startup.pic.o main.pic.o fail.pic.o roots.pic.o globroots.pic.o signals.pic.o signals_asm.pic.o freelist.pic.o misc.pic.o major_gc.pic.o minor_gc.pic.o memory.pic.o alloc.pic.o compare.pic.o ints.pic.o floats.pic.o str.pic.o array.pic.o io.pic.o extern.pic.o intern.pic.o hash.pic.o sys.pic.o parsing.pic.o gc_ctrl.pic.o terminfo.pic.o md5.pic.o obj.pic.o lexing.pic.o printexc.pic.o callback.pic.o weak.pic.o compact.pic.o finalise.pic.o custom.pic.o unix.pic.o backtrace_prim.pic.o backtrace.pic.o natdynlink.pic.o debugger.pic.o meta.pic.o dynlink.pic.o clambda_checks.pic.o spacetime.pic.o spacetime_snapshot.pic.o spacetime_offline.pic.o amd64.pic.o
- ranlib libasmrun_pic.a
- cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind -Wl,-keep_dwarf_unwind -o libasmrun_shared.so startup_aux.pic.o startup.pic.o main.pic.o fail.pic.o roots.pic.o globroots.pic.o signals.pic.o signals_asm.pic.o freelist.pic.o misc.pic.o major_gc.pic.o minor_gc.pic.o memory.pic.o alloc.pic.o compare.pic.o ints.pic.o floats.pic.o str.pic.o array.pic.o io.pic.o extern.pic.o intern.pic.o hash.pic.o sys.pic.o parsing.pic.o gc_ctrl.pic.o terminfo.pic.o md5.pic.o obj.pic.o lexing.pic.o printexc.pic.o callback.pic.o weak.pic.o compact.pic.o finalise.pic.o custom.pic.o unix.pic.o backtrace_prim.pic.o backtrace.pic.o natdynlink.pic.o debugger.pic.o meta.pic.o dynlink.pic.o clambda_checks.pic.o spacetime.pic.o spacetime_snapshot.pic.o spacetime_offline.pic.o amd64.pic.o
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- cp asmrun/libasmrun.a stdlib/libasmrun.a
- /Library/Developer/CommandLineTools/usr/bin/make ocamlopt
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_ast.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_proc.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_proc.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_dsl.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_dsl.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_gas.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_gas.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_masm.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_masm.ml
- ln -s amd64/arch.ml asmcomp/arch.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/arch.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reg.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reg.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/mach.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/mach.ml
- ln -s amd64/proc.ml asmcomp/proc.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/proc.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/proc.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/clambda.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/export_info_for_pack.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/export_info_for_pack.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/compilenv.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/compilenv.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/closure.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/closure.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/build_export_info.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/build_export_info.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/closure_offsets.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/closure_offsets.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/flambda_to_clambda.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/flambda_to_clambda.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/import_approx.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/import_approx.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/un_anf.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/un_anf.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printmach.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printmach.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spacetime_profiling.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spacetime_profiling.ml
- ln -s amd64/selection.ml asmcomp/selection.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selection.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selection.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.ml
- ln -s amd64/CSE.ml asmcomp/CSE.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSE.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/liveness.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/liveness.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spill.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spill.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/split.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/split.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interf.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interf.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/coloring.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/coloring.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.ml
- ln -s amd64/reload.ml asmcomp/reload.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reload.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reload.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linearize.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linearize.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.ml
- ln -s amd64/scheduling.ml asmcomp/scheduling.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation_intf.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.ml
- cd tools && /Library/Developer/CommandLineTools/usr/bin/make cvt_emit
- ../boot/ocamlrun ../boot/ocamllex cvt_emit.mll
- 16 states, 280 transitions, table size 1216 bytes
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel - cvt_emit.ml
- ../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -o cvt_emit cvt_emit.cmo
- echo \# 1 \"amd64/emit.mlp\" > asmcomp/emit.ml
- boot/ocamlrun tools/cvt_emit <asmcomp/amd64/emit.mlp \
- >>asmcomp/emit.ml \
- || { rm -f asmcomp/emit.ml; exit 2; }
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emit.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emit.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/opterrors.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/opterrors.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/optcompile.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/optcompile.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -a -o compilerlibs/ocamloptcomp.cma middle_end/debuginfo.cmo middle_end/base_types/tag.cmo middle_end/base_types/linkage_name.cmo middle_end/base_types/compilation_unit.cmo middle_end/base_types/variable.cmo middle_end/base_types/mutable_variable.cmo middle_end/base_types/id_types.cmo middle_end/base_types/set_of_closures_id.cmo middle_end/base_types/set_of_closures_origin.cmo middle_end/base_types/closure_element.cmo middle_end/base_types/closure_id.cmo middle_end/base_types/var_within_closure.cmo middle_end/base_types/static_exception.cmo middle_end/base_types/export_id.cmo middle_end/base_types/symbol.cmo middle_end/pass_wrapper.cmo middle_end/semantics_of_primitives.cmo middle_end/allocated_const.cmo middle_end/projection.cmo middle_end/flambda.cmo middle_end/flambda_iterators.cmo middle_end/flambda_utils.cmo middle_end/inlining_cost.cmo middle_end/effect_analysis.cmo middle_end/freshening.cmo middle_end/simple_value_approx.cmo middle_end/lift_code.cmo middle_end/closure_conversion_aux.cmo middle_end/closure_conversion.cmo middle_end/initialize_symbol_to_let_symbol.cmo middle_end/lift_let_to_initialize_symbol.cmo middle_end/find_recursive_functions.cmo middle_end/invariant_params.cmo middle_end/inconstant_idents.cmo middle_end/alias_analysis.cmo middle_end/lift_constants.cmo middle_end/share_constants.cmo middle_end/simplify_common.cmo middle_end/remove_unused_arguments.cmo middle_end/remove_unused_closure_vars.cmo middle_end/remove_unused_program_constructs.cmo middle_end/simplify_boxed_integer_ops.cmo middle_end/simplify_primitives.cmo middle_end/inlining_stats_types.cmo middle_end/inlining_stats.cmo middle_end/inline_and_simplify_aux.cmo middle_end/remove_free_vars_equal_to_args.cmo middle_end/extract_projections.cmo middle_end/augment_specialised_args.cmo middle_end/unbox_free_vars_of_closures.cmo middle_end/unbox_specialised_args.cmo middle_end/unbox_closures.cmo middle_end/inlining_transforms.cmo middle_end/inlining_decision.cmo middle_end/inline_and_simplify.cmo middle_end/ref_to_variables.cmo middle_end/flambda_invariants.cmo middle_end/middle_end.cmo asmcomp/x86_proc.cmo asmcomp/x86_dsl.cmo asmcomp/x86_gas.cmo asmcomp/x86_masm.cmo asmcomp/arch.cmo asmcomp/cmm.cmo asmcomp/printcmm.cmo asmcomp/reg.cmo asmcomp/mach.cmo asmcomp/proc.cmo asmcomp/clambda.cmo asmcomp/printclambda.cmo asmcomp/export_info.cmo asmcomp/export_info_for_pack.cmo asmcomp/compilenv.cmo asmcomp/closure.cmo asmcomp/build_export_info.cmo asmcomp/closure_offsets.cmo asmcomp/flambda_to_clambda.cmo asmcomp/import_approx.cmo asmcomp/un_anf.cmo asmcomp/strmatch.cmo asmcomp/cmmgen.cmo asmcomp/printmach.cmo asmcomp/selectgen.cmo asmcomp/spacetime_profiling.cmo asmcomp/selection.cmo asmcomp/comballoc.cmo asmcomp/CSEgen.cmo asmcomp/CSE.cmo asmcomp/liveness.cmo asmcomp/spill.cmo asmcomp/split.cmo asmcomp/interf.cmo asmcomp/coloring.cmo asmcomp/reloadgen.cmo asmcomp/reload.cmo asmcomp/deadcode.cmo asmcomp/printlinear.cmo asmcomp/linearize.cmo asmcomp/schedgen.cmo asmcomp/scheduling.cmo asmcomp/branch_relaxation_intf.cmo asmcomp/branch_relaxation.cmo asmcomp/emitaux.cmo asmcomp/emit.cmo asmcomp/asmgen.cmo asmcomp/asmlink.cmo asmcomp/asmlibrarian.cmo asmcomp/asmpackager.cmo driver/opterrors.cmo driver/optcompile.cmo
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/optmain.mli
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/optmain.ml
- boot/ocamlrun boot/ocamlc -g -nostdlib -I boot -use-prims byterun/primitives -o ocamlopt \
- compilerlibs/ocamlcommon.cma compilerlibs/ocamloptcomp.cma \
- compilerlibs/ocamlbytecomp.cma driver/optmain.cmo
- /Library/Developer/CommandLineTools/usr/bin/make libraryopt
- cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make allopt
- /Library/Developer/CommandLineTools/usr/bin/make stdlib.cmxa std_exit.cmx
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormatBasics.cmx` -c camlinternalFormatBasics.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags pervasives.cmx` -c pervasives.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags list.cmx` -c list.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags char.cmx` -c char.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytes.cmx` -c bytes.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags string.cmx` -c string.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sys.cmx` -c sys.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags array.cmx` -c array.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sort.cmx` -c sort.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags marshal.cmx` -c marshal.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int32.cmx` -c int32.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags obj.cmx` -c obj.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int64.cmx` -c int64.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags nativeint.cmx` -c nativeint.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lexing.cmx` -c lexing.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags parsing.cmx` -c parsing.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags set.cmx` -c set.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags map.cmx` -c map.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stack.cmx` -c stack.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags queue.cmx` -c queue.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalLazy.cmx` -c camlinternalLazy.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lazy.cmx` -c lazy.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stream.cmx` -c stream.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags buffer.cmx` -c buffer.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormat.cmx` -c camlinternalFormat.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printf.cmx` -c printf.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arg.cmx` -c arg.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printexc.cmx` -c printexc.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags gc.cmx` -c gc.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags digest.cmx` -c digest.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags random.cmx` -c random.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags hashtbl.cmx` -c hashtbl.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags weak.cmx` -c weak.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags format.cmx` -c format.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags uchar.cmx` -c uchar.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags scanf.cmx` -c scanf.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags callback.cmx` -c callback.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalOO.cmx` -c camlinternalOO.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags oo.cmx` -c oo.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalMod.cmx` -c camlinternalMod.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags genlex.cmx` -c genlex.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags ephemeron.cmx` -c ephemeron.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags filename.cmx` -c filename.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags complex.cmx` -c complex.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arrayLabels.cmx` -c arrayLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags listLabels.cmx` -c listLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytesLabels.cmx` -c bytesLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stringLabels.cmx` -c stringLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags moreLabels.cmx` -c moreLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stdLabels.cmx` -c stdLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags spacetime.cmx` -c spacetime.ml
- ../boot/ocamlrun ../ocamlopt -a -o stdlib.cmxa camlinternalFormatBasics.cmx pervasives.cmx list.cmx char.cmx bytes.cmx string.cmx sys.cmx sort.cmx marshal.cmx obj.cmx array.cmx int32.cmx int64.cmx nativeint.cmx lexing.cmx parsing.cmx set.cmx map.cmx stack.cmx queue.cmx camlinternalLazy.cmx lazy.cmx stream.cmx buffer.cmx camlinternalFormat.cmx printf.cmx arg.cmx printexc.cmx gc.cmx digest.cmx random.cmx hashtbl.cmx weak.cmx format.cmx uchar.cmx scanf.cmx callback.cmx camlinternalOO.cmx oo.cmx camlinternalMod.cmx genlex.cmx ephemeron.cmx filename.cmx complex.cmx arrayLabels.cmx listLabels.cmx bytesLabels.cmx stringLabels.cmx moreLabels.cmx stdLabels.cmx spacetime.cmx
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags std_exit.cmx` -c std_exit.ml
- /Library/Developer/CommandLineTools/usr/bin/make allopt-prof
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormatBasics.p.cmx` \
- -p -c -o camlinternalFormatBasics.p.cmx camlinternalFormatBasics.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags pervasives.p.cmx` \
- -p -c -o pervasives.p.cmx pervasives.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags list.p.cmx` \
- -p -c -o list.p.cmx list.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags char.p.cmx` \
- -p -c -o char.p.cmx char.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytes.p.cmx` \
- -p -c -o bytes.p.cmx bytes.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags string.p.cmx` \
- -p -c -o string.p.cmx string.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sys.p.cmx` \
- -p -c -o sys.p.cmx sys.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags sort.p.cmx` \
- -p -c -o sort.p.cmx sort.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags marshal.p.cmx` \
- -p -c -o marshal.p.cmx marshal.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags obj.p.cmx` \
- -p -c -o obj.p.cmx obj.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags array.p.cmx` \
- -p -c -o array.p.cmx array.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int32.p.cmx` \
- -p -c -o int32.p.cmx int32.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags int64.p.cmx` \
- -p -c -o int64.p.cmx int64.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags nativeint.p.cmx` \
- -p -c -o nativeint.p.cmx nativeint.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lexing.p.cmx` \
- -p -c -o lexing.p.cmx lexing.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags parsing.p.cmx` \
- -p -c -o parsing.p.cmx parsing.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags set.p.cmx` \
- -p -c -o set.p.cmx set.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags map.p.cmx` \
- -p -c -o map.p.cmx map.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stack.p.cmx` \
- -p -c -o stack.p.cmx stack.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags queue.p.cmx` \
- -p -c -o queue.p.cmx queue.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalLazy.p.cmx` \
- -p -c -o camlinternalLazy.p.cmx camlinternalLazy.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags lazy.p.cmx` \
- -p -c -o lazy.p.cmx lazy.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stream.p.cmx` \
- -p -c -o stream.p.cmx stream.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags buffer.p.cmx` \
- -p -c -o buffer.p.cmx buffer.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalFormat.p.cmx` \
- -p -c -o camlinternalFormat.p.cmx camlinternalFormat.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printf.p.cmx` \
- -p -c -o printf.p.cmx printf.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arg.p.cmx` \
- -p -c -o arg.p.cmx arg.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags printexc.p.cmx` \
- -p -c -o printexc.p.cmx printexc.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags gc.p.cmx` \
- -p -c -o gc.p.cmx gc.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags digest.p.cmx` \
- -p -c -o digest.p.cmx digest.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags random.p.cmx` \
- -p -c -o random.p.cmx random.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags hashtbl.p.cmx` \
- -p -c -o hashtbl.p.cmx hashtbl.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags weak.p.cmx` \
- -p -c -o weak.p.cmx weak.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags format.p.cmx` \
- -p -c -o format.p.cmx format.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags uchar.p.cmx` \
- -p -c -o uchar.p.cmx uchar.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags scanf.p.cmx` \
- -p -c -o scanf.p.cmx scanf.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags callback.p.cmx` \
- -p -c -o callback.p.cmx callback.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalOO.p.cmx` \
- -p -c -o camlinternalOO.p.cmx camlinternalOO.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags oo.p.cmx` \
- -p -c -o oo.p.cmx oo.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags camlinternalMod.p.cmx` \
- -p -c -o camlinternalMod.p.cmx camlinternalMod.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags genlex.p.cmx` \
- -p -c -o genlex.p.cmx genlex.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags ephemeron.p.cmx` \
- -p -c -o ephemeron.p.cmx ephemeron.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags filename.p.cmx` \
- -p -c -o filename.p.cmx filename.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags complex.p.cmx` \
- -p -c -o complex.p.cmx complex.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags arrayLabels.p.cmx` \
- -p -c -o arrayLabels.p.cmx arrayLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags listLabels.p.cmx` \
- -p -c -o listLabels.p.cmx listLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags bytesLabels.p.cmx` \
- -p -c -o bytesLabels.p.cmx bytesLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stringLabels.p.cmx` \
- -p -c -o stringLabels.p.cmx stringLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags moreLabels.p.cmx` \
- -p -c -o moreLabels.p.cmx moreLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags stdLabels.p.cmx` \
- -p -c -o stdLabels.p.cmx stdLabels.ml
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags spacetime.p.cmx` \
- -p -c -o spacetime.p.cmx spacetime.ml
- ../boot/ocamlrun ../ocamlopt -a -o stdlib.p.cmxa camlinternalFormatBasics.p.cmx pervasives.p.cmx list.p.cmx char.p.cmx bytes.p.cmx string.p.cmx sys.p.cmx sort.p.cmx marshal.p.cmx obj.p.cmx array.p.cmx int32.p.cmx int64.p.cmx nativeint.p.cmx lexing.p.cmx parsing.p.cmx set.p.cmx map.p.cmx stack.p.cmx queue.p.cmx camlinternalLazy.p.cmx lazy.p.cmx stream.p.cmx buffer.p.cmx camlinternalFormat.p.cmx printf.p.cmx arg.p.cmx printexc.p.cmx gc.p.cmx digest.p.cmx random.p.cmx hashtbl.p.cmx weak.p.cmx format.p.cmx uchar.p.cmx scanf.p.cmx callback.p.cmx camlinternalOO.p.cmx oo.p.cmx camlinternalMod.p.cmx genlex.p.cmx ephemeron.p.cmx filename.p.cmx complex.p.cmx arrayLabels.p.cmx listLabels.p.cmx bytesLabels.p.cmx stringLabels.p.cmx moreLabels.p.cmx stdLabels.p.cmx spacetime.p.cmx
- ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48 -g -warn-error A -bin-annot -nostdlib -safe-string -strict-formats `./Compflags std_exit.p.cmx` \
- -p -c -o std_exit.p.cmx std_exit.ml
- rm -f std_exit.p.cmi
- /Library/Developer/CommandLineTools/usr/bin/make ocamlc.opt
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/config.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/misc.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/identifiable.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/numbers.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/arg_helper.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/clflags.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/tbl.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/timings.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/terminfo.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/ccomp.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/warnings.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/consistbl.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c utils/strongly_connected_components.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/location.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/longident.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/docstrings.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_helper.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/parser.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/lexer.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/parse.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/printast.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/pprintast.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_iterator.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/attr_helper.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/builtin_attributes.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_invariants.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c parsing/depend.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/ident.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/path.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/primitive.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/types.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/btype.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/oprint.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/subst.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/predef.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/datarepr.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/cmi_format.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/env.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtree.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/printtyped.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/ctype.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/printtyp.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includeclass.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/mtype.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/envaux.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includecore.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtreeIter.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedtreeMap.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/tast_mapper.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/cmt_format.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/untypeast.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/includemod.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typetexp.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/parmatch.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/stypes.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typecore.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typeclass.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c typing/typemod.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/lambda.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printlambda.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/typeopt.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/switch.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/matching.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translobj.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translattribute.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translcore.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translclass.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/translmod.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/simplif.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/runtimedef.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/pparse.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/main_args.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compenv.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compmisc.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -linkall -o compilerlibs/ocamlcommon.cmxa utils/config.cmx utils/misc.cmx utils/identifiable.cmx utils/numbers.cmx utils/arg_helper.cmx utils/clflags.cmx utils/tbl.cmx utils/timings.cmx utils/terminfo.cmx utils/ccomp.cmx utils/warnings.cmx utils/consistbl.cmx utils/strongly_connected_components.cmx parsing/location.cmx parsing/longident.cmx parsing/docstrings.cmx parsing/ast_helper.cmx parsing/syntaxerr.cmx parsing/parser.cmx parsing/lexer.cmx parsing/parse.cmx parsing/printast.cmx parsing/pprintast.cmx parsing/ast_mapper.cmx parsing/ast_iterator.cmx parsing/attr_helper.cmx parsing/builtin_attributes.cmx parsing/ast_invariants.cmx parsing/depend.cmx typing/ident.cmx typing/path.cmx typing/primitive.cmx typing/types.cmx typing/btype.cmx typing/oprint.cmx typing/subst.cmx typing/predef.cmx typing/datarepr.cmx typing/cmi_format.cmx typing/env.cmx typing/typedtree.cmx typing/printtyped.cmx typing/ctype.cmx typing/printtyp.cmx typing/includeclass.cmx typing/mtype.cmx typing/envaux.cmx typing/includecore.cmx typing/typedtreeIter.cmx typing/typedtreeMap.cmx typing/tast_mapper.cmx typing/cmt_format.cmx typing/untypeast.cmx typing/includemod.cmx typing/typetexp.cmx typing/parmatch.cmx typing/stypes.cmx typing/typedecl.cmx typing/typecore.cmx typing/typeclass.cmx typing/typemod.cmx bytecomp/lambda.cmx bytecomp/printlambda.cmx bytecomp/typeopt.cmx bytecomp/switch.cmx bytecomp/matching.cmx bytecomp/translobj.cmx bytecomp/translattribute.cmx bytecomp/translcore.cmx bytecomp/translclass.cmx bytecomp/translmod.cmx bytecomp/simplif.cmx bytecomp/runtimedef.cmx driver/pparse.cmx driver/main_args.cmx driver/compenv.cmx driver/compmisc.cmx
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/instruct.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/meta.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/dll.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/symtable.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.ml
- cp otherlibs/dynlink/natdynlink.ml driver/compdynlink.mlopt
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c -impl driver/compdynlink.mlopt
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compplugin.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/errors.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/compile.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -o compilerlibs/ocamlbytecomp.cmxa bytecomp/meta.cmx bytecomp/instruct.cmx bytecomp/bytegen.cmx bytecomp/printinstr.cmx bytecomp/opcodes.cmx bytecomp/emitcode.cmx bytecomp/bytesections.cmx bytecomp/dll.cmx bytecomp/symtable.cmx bytecomp/bytelink.cmx bytecomp/bytelibrarian.cmx bytecomp/bytepackager.cmx driver/compdynlink.cmx driver/compplugin.cmx driver/errors.cmx driver/compile.cmx
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/main.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -ccopt "" -o ocamlc.opt \
- compilerlibs/ocamlcommon.cmxa compilerlibs/ocamlbytecomp.cmxa \
- driver/main.cmx -cclib "-lcurses -lpthread "
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x363C (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup245fe8.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlMain__data_begin'+0x4EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/driver/main.o)
- ld: warning: pointer not aligned in '_camlBytegen__data_begin'+0x1AB4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[4](bytegen.o))
- ld: warning: pointer not aligned in '_camlPrintinstr__data_begin'+0x1F44 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[5](printinstr.o))
- ld: warning: pointer not aligned in '_camlEmitcode__data_begin'+0x464 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[7](emitcode.o))
- ld: warning: pointer not aligned in '_camlBytesections__data_begin'+0x1E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[8](bytesections.o))
- ld: warning: pointer not aligned in '_camlDll__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[9](dll.o))
- ld: warning: pointer not aligned in '_camlSymtable__data_begin'+0xEA4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[10](symtable.o))
- ld: warning: pointer not aligned in '_camlBytelink__data_begin'+0x17BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[11](bytelink.o))
- ld: warning: pointer not aligned in '_camlBytelibrarian__data_begin'+0x2B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[12](bytelibrarian.o))
- ld: warning: pointer not aligned in '_camlBytepackager__data_begin'+0x844 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[13](bytepackager.o))
- ld: warning: pointer not aligned in '_camlCompdynlink__data_begin'+0x77C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[14](compdynlink.o))
- ld: warning: pointer not aligned in '_camlCompplugin__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[15](compplugin.o))
- ld: warning: pointer not aligned in '_camlCompile__data_begin'+0x21C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[17](compile.o))
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[2](config.o))
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[3](misc.o))
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[4](identifiable.o))
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[5](numbers.o))
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[6](arg_helper.o))
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[7](clflags.o))
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[8](tbl.o))
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[9](timings.o))
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[11](ccomp.o))
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[12](warnings.o))
- ld: warning: pointer not aligned in '_camlConsistbl__data_begin'+0x18C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[13](consistbl.o))
- ld: warning: pointer not aligned in '_camlStrongly_connected_components__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[14](strongly_connected_components.o))
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[15](location.o))
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[16](longident.o))
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[17](docstrings.o))
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[18](ast_helper.o))
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[19](syntaxerr.o))
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[20](parser.o))
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[21](lexer.o))
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[22](parse.o))
- ld: warning: pointer not aligned in '_camlPrintast__data_begin'+0x785C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[23](printast.o))
- ld: warning: pointer not aligned in '_camlPprintast__data_begin'+0x143FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[24](pprintast.o))
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[25](ast_mapper.o))
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[26](ast_iterator.o))
- ld: warning: pointer not aligned in '_camlAttr_helper__data_begin'+0x26C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[27](attr_helper.o))
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[28](builtin_attributes.o))
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[29](ast_invariants.o))
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[30](depend.o))
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[31](ident.o))
- ld: warning: pointer not aligned in '_camlPath__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[32](path.o))
- ld: warning: pointer not aligned in '_camlPrimitive__data_begin'+0x87C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[33](primitive.o))
- ld: warning: pointer not aligned in '_camlTypes__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[34](types.o))
- ld: warning: pointer not aligned in '_camlBtype__data_begin'+0x10DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[35](btype.o))
- ld: warning: pointer not aligned in '_camlOprint__data_begin'+0x7BDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[36](oprint.o))
- ld: warning: pointer not aligned in '_camlSubst__data_begin'+0x6E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[37](subst.o))
- ld: warning: pointer not aligned in '_camlPredef__data_begin'+0x6BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[38](predef.o))
- ld: warning: pointer not aligned in '_camlDatarepr__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[39](datarepr.o))
- ld: warning: pointer not aligned in '_camlCmi_format__data_begin'+0x4AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[40](cmi_format.o))
- ld: warning: pointer not aligned in '_camlEnv__data_begin'+0x41AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[41](env.o))
- ld: warning: pointer not aligned in '_camlTypedtree__data_begin'+0x1FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[42](typedtree.o))
- ld: warning: pointer not aligned in '_camlPrinttyped__data_begin'+0x72DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[43](printtyped.o))
- ld: warning: pointer not aligned in '_camlCtype__data_begin'+0x3B8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[44](ctype.o))
- ld: warning: pointer not aligned in '_camlPrinttyp__data_begin'+0x6AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[45](printtyp.o))
- ld: warning: pointer not aligned in '_camlIncludeclass__data_begin'+0x15A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[46](includeclass.o))
- ld: warning: pointer not aligned in '_camlMtype__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[47](mtype.o))
- ld: warning: pointer not aligned in '_camlEnvaux__data_begin'+0x294 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[48](envaux.o))
- ld: warning: pointer not aligned in '_camlIncludecore__data_begin'+0xE34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[49](includecore.o))
- ld: warning: pointer not aligned in '_camlTypedtreeIter__data_begin'+0x76C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[50](typedtreeIter.o))
- ld: warning: pointer not aligned in '_camlTypedtreeMap__data_begin'+0x6A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[51](typedtreeMap.o))
- ld: warning: pointer not aligned in '_camlTast_mapper__data_begin'+0x754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[52](tast_mapper.o))
- ld: warning: pointer not aligned in '_camlCmt_format__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[53](cmt_format.o))
- ld: warning: pointer not aligned in '_camlUntypeast__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[54](untypeast.o))
- ld: warning: pointer not aligned in '_camlIncludemod__data_begin'+0x393C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[55](includemod.o))
- ld: warning: pointer not aligned in '_camlTypetexp__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[56](typetexp.o))
- ld: warning: pointer not aligned in '_camlParmatch__data_begin'+0x3E0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[57](parmatch.o))
- ld: warning: pointer not aligned in '_camlStypes__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[58](stypes.o))
- ld: warning: pointer not aligned in '_camlTypedecl__data_begin'+0x5A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[59](typedecl.o))
- ld: warning: pointer not aligned in '_camlTypecore__data_begin'+0x8544 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[60](typecore.o))
- ld: warning: pointer not aligned in '_camlTypeclass__data_begin'+0x45A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[61](typeclass.o))
- ld: warning: pointer not aligned in '_camlTypemod__data_begin'+0x355C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[62](typemod.o))
- ld: warning: pointer not aligned in '_camlLambda__data_begin'+0x6AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[63](lambda.o))
- ld: warning: pointer not aligned in '_camlPrintlambda__data_begin'+0x7F6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[64](printlambda.o))
- ld: warning: pointer not aligned in '_camlTypeopt__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[65](typeopt.o))
- ld: warning: pointer not aligned in '_camlSwitch__data_begin'+0x4FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[66](switch.o))
- ld: warning: pointer not aligned in '_camlMatching__data_begin'+0x40BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[67](matching.o))
- ld: warning: pointer not aligned in '_camlTranslobj__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[68](translobj.o))
- ld: warning: pointer not aligned in '_camlTranslattribute__data_begin'+0x484 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[69](translattribute.o))
- ld: warning: pointer not aligned in '_camlTranslcore__data_begin'+0x571C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[70](translcore.o))
- ld: warning: pointer not aligned in '_camlTranslclass__data_begin'+0x11BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[71](translclass.o))
- ld: warning: pointer not aligned in '_camlTranslmod__data_begin'+0x1064 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[72](translmod.o))
- ld: warning: pointer not aligned in '_camlSimplif__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[73](simplif.o))
- ld: warning: pointer not aligned in '_camlRuntimedef__data_begin'+0x3644 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[74](runtimedef.o))
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[75](pparse.o))
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[76](main_args.o))
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[77](compenv.o))
- ld: warning: pointer not aligned in '_camlCompmisc__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[78](compmisc.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlStack__data_begin'+0x19C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[20](stack.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlWeak__data_begin'+0x3C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[34](weak.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- /Library/Developer/CommandLineTools/usr/bin/make otherlibraries ocamldebugger ocamldoc
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- cd lex; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- cd tools ; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- for i in unix str num dynlink bigarray raw_spacetime_lib systhreads threads graph; do \
- (cd otherlibs/$i; /Library/Developer/CommandLineTools/usr/bin/make all) || exit $?; \
- done
- make[3]: Nothing to be done for `all'.
- make[3]: Nothing to be done for `all'.
- Makefile:19: warning: overriding commands for target `depend'
- Makefile.shared:34: warning: ignoring old commands for target `depend'
- make[3]: Nothing to be done for `all'.
- make[3]: Nothing to be done for `all'.
- make[3]: Nothing to be done for `all'.
- make[3]: Nothing to be done for `all'.
- make[3]: Nothing to be done for `all'.
- make[3]: Nothing to be done for `all'.
- make[3]: Nothing to be done for `all'.
- cd debugger; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- cd ocamldoc && /Library/Developer/CommandLineTools/usr/bin/make all
- /Library/Developer/CommandLineTools/usr/bin/make exe
- make[4]: Nothing to be done for `exe'.
- /Library/Developer/CommandLineTools/usr/bin/make lib
- make[4]: Nothing to be done for `lib'.
- /Library/Developer/CommandLineTools/usr/bin/make generators
- make[4]: Nothing to be done for `generators'.
- /Library/Developer/CommandLineTools/usr/bin/make manpages
- make[4]: Nothing to be done for `manpages'.
- /Library/Developer/CommandLineTools/usr/bin/make ocamlopt.opt
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/debuginfo.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/tag.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/linkage_name.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/compilation_unit.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/variable.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/mutable_variable.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/id_types.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/set_of_closures_id.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/set_of_closures_origin.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/closure_element.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/closure_id.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/var_within_closure.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/static_exception.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/export_id.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/base_types/symbol.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/pass_wrapper.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/semantics_of_primitives.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/allocated_const.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/projection.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_iterators.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_utils.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_cost.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/effect_analysis.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/freshening.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simple_value_approx.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_code.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure_conversion_aux.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure_conversion.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/initialize_symbol_to_let_symbol.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_let_to_initialize_symbol.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/find_recursive_functions.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/invariant_params.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inconstant_idents.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/alias_analysis.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/lift_constants.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/share_constants.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_common.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_arguments.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_closure_vars.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_unused_program_constructs.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_boxed_integer_ops.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/simplify_primitives.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_stats_types.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_stats.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inline_and_simplify_aux.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/remove_free_vars_equal_to_args.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/extract_projections.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/augment_specialised_args.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_free_vars_of_closures.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_specialised_args.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/unbox_closures.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_transforms.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inlining_decision.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/inline_and_simplify.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/ref_to_variables.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda_invariants.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c middle_end/middle_end.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_proc.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_dsl.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_gas.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_masm.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/arch.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reg.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/mach.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/proc.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/clambda.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printclambda.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/export_info.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/export_info_for_pack.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/compilenv.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/closure.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/build_export_info.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/closure_offsets.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/flambda_to_clambda.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/import_approx.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/un_anf.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printmach.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spacetime_profiling.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selection.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSE.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/liveness.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spill.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/split.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interf.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/coloring.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reload.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linearize.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation_intf.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emit.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/opterrors.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/optcompile.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -o compilerlibs/ocamloptcomp.cmxa middle_end/debuginfo.cmx middle_end/base_types/tag.cmx middle_end/base_types/linkage_name.cmx middle_end/base_types/compilation_unit.cmx middle_end/base_types/variable.cmx middle_end/base_types/mutable_variable.cmx middle_end/base_types/id_types.cmx middle_end/base_types/set_of_closures_id.cmx middle_end/base_types/set_of_closures_origin.cmx middle_end/base_types/closure_element.cmx middle_end/base_types/closure_id.cmx middle_end/base_types/var_within_closure.cmx middle_end/base_types/static_exception.cmx middle_end/base_types/export_id.cmx middle_end/base_types/symbol.cmx middle_end/pass_wrapper.cmx middle_end/semantics_of_primitives.cmx middle_end/allocated_const.cmx middle_end/projection.cmx middle_end/flambda.cmx middle_end/flambda_iterators.cmx middle_end/flambda_utils.cmx middle_end/inlining_cost.cmx middle_end/effect_analysis.cmx middle_end/freshening.cmx middle_end/simple_value_approx.cmx middle_end/lift_code.cmx middle_end/closure_conversion_aux.cmx middle_end/closure_conversion.cmx middle_end/initialize_symbol_to_let_symbol.cmx middle_end/lift_let_to_initialize_symbol.cmx middle_end/find_recursive_functions.cmx middle_end/invariant_params.cmx middle_end/inconstant_idents.cmx middle_end/alias_analysis.cmx middle_end/lift_constants.cmx middle_end/share_constants.cmx middle_end/simplify_common.cmx middle_end/remove_unused_arguments.cmx middle_end/remove_unused_closure_vars.cmx middle_end/remove_unused_program_constructs.cmx middle_end/simplify_boxed_integer_ops.cmx middle_end/simplify_primitives.cmx middle_end/inlining_stats_types.cmx middle_end/inlining_stats.cmx middle_end/inline_and_simplify_aux.cmx middle_end/remove_free_vars_equal_to_args.cmx middle_end/extract_projections.cmx middle_end/augment_specialised_args.cmx middle_end/unbox_free_vars_of_closures.cmx middle_end/unbox_specialised_args.cmx middle_end/unbox_closures.cmx middle_end/inlining_transforms.cmx middle_end/inlining_decision.cmx middle_end/inline_and_simplify.cmx middle_end/ref_to_variables.cmx middle_end/flambda_invariants.cmx middle_end/middle_end.cmx asmcomp/x86_proc.cmx asmcomp/x86_dsl.cmx asmcomp/x86_gas.cmx asmcomp/x86_masm.cmx asmcomp/arch.cmx asmcomp/cmm.cmx asmcomp/printcmm.cmx asmcomp/reg.cmx asmcomp/mach.cmx asmcomp/proc.cmx asmcomp/clambda.cmx asmcomp/printclambda.cmx asmcomp/export_info.cmx asmcomp/export_info_for_pack.cmx asmcomp/compilenv.cmx asmcomp/closure.cmx asmcomp/build_export_info.cmx asmcomp/closure_offsets.cmx asmcomp/flambda_to_clambda.cmx asmcomp/import_approx.cmx asmcomp/un_anf.cmx asmcomp/strmatch.cmx asmcomp/cmmgen.cmx asmcomp/printmach.cmx asmcomp/selectgen.cmx asmcomp/spacetime_profiling.cmx asmcomp/selection.cmx asmcomp/comballoc.cmx asmcomp/CSEgen.cmx asmcomp/CSE.cmx asmcomp/liveness.cmx asmcomp/spill.cmx asmcomp/split.cmx asmcomp/interf.cmx asmcomp/coloring.cmx asmcomp/reloadgen.cmx asmcomp/reload.cmx asmcomp/deadcode.cmx asmcomp/printlinear.cmx asmcomp/linearize.cmx asmcomp/schedgen.cmx asmcomp/scheduling.cmx asmcomp/branch_relaxation_intf.cmx asmcomp/branch_relaxation.cmx asmcomp/emitaux.cmx asmcomp/emit.cmx asmcomp/asmgen.cmx asmcomp/asmlink.cmx asmcomp/asmlibrarian.cmx asmcomp/asmpackager.cmx driver/opterrors.cmx driver/optcompile.cmx
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I middle_end -I middle_end/base_types -I asmcomp -I driver -I toplevel -c driver/optmain.ml
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -o ocamlopt.opt \
- compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa \
- compilerlibs/ocamlbytecomp.cmxa \
- driver/optmain.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x5F5C (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup325d22.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOptmain__data_begin'+0x9E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/driver/optmain.o)
- ld: warning: pointer not aligned in '_camlCompdynlink__data_begin'+0x77C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[14](compdynlink.o))
- ld: warning: pointer not aligned in '_camlCompplugin__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[15](compplugin.o))
- ld: warning: pointer not aligned in '_camlDebuginfo__data_begin'+0x2C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[2](debuginfo.o))
- ld: warning: pointer not aligned in '_camlTag__data_begin'+0x14C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[3](tag.o))
- ld: warning: pointer not aligned in '_camlLinkage_name__data_begin'+0xEC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[4](linkage_name.o))
- ld: warning: pointer not aligned in '_camlCompilation_unit__data_begin'+0x284 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[5](compilation_unit.o))
- ld: warning: pointer not aligned in '_camlVariable__data_begin'+0x4CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[6](variable.o))
- ld: warning: pointer not aligned in '_camlMutable_variable__data_begin'+0x30C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[7](mutable_variable.o))
- ld: warning: pointer not aligned in '_camlId_types__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[8](id_types.o))
- ld: warning: pointer not aligned in '_camlSet_of_closures_id__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[9](set_of_closures_id.o))
- ld: warning: pointer not aligned in '_camlExport_id__data_begin'+0x9C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[15](export_id.o))
- ld: warning: pointer not aligned in '_camlSymbol__data_begin'+0x28C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[16](symbol.o))
- ld: warning: pointer not aligned in '_camlPass_wrapper__data_begin'+0x2E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[17](pass_wrapper.o))
- ld: warning: pointer not aligned in '_camlSemantics_of_primitives__data_begin'+0x244 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[18](semantics_of_primitives.o))
- ld: warning: pointer not aligned in '_camlAllocated_const__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[19](allocated_const.o))
- ld: warning: pointer not aligned in '_camlProjection__data_begin'+0x98C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[20](projection.o))
- ld: warning: pointer not aligned in '_camlFlambda__data_begin'+0x64F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[21](flambda.o))
- ld: warning: pointer not aligned in '_camlFlambda_iterators__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[22](flambda_iterators.o))
- ld: warning: pointer not aligned in '_camlFlambda_utils__data_begin'+0xD0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[23](flambda_utils.o))
- ld: warning: pointer not aligned in '_camlInlining_cost__data_begin'+0x203C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[24](inlining_cost.o))
- ld: warning: pointer not aligned in '_camlEffect_analysis__data_begin'+0x84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[25](effect_analysis.o))
- ld: warning: pointer not aligned in '_camlFreshening__data_begin'+0xD84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[26](freshening.o))
- ld: warning: pointer not aligned in '_camlSimple_value_approx__data_begin'+0x1C24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[27](simple_value_approx.o))
- ld: warning: pointer not aligned in '_camlLift_code__data_begin'+0x234 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[28](lift_code.o))
- ld: warning: pointer not aligned in '_camlClosure_conversion_aux__data_begin'+0x774 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[29](closure_conversion_aux.o))
- ld: warning: pointer not aligned in '_camlClosure_conversion__data_begin'+0xF84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[30](closure_conversion.o))
- ld: warning: pointer not aligned in '_camlInitialize_symbol_to_let_symbol__data_begin'+0x134 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[31](initialize_symbol_to_let_symbol.o))
- ld: warning: pointer not aligned in '_camlLift_let_to_initialize_symbol__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[32](lift_let_to_initialize_symbol.o))
- ld: warning: pointer not aligned in '_camlFind_recursive_functions__data_begin'+0x6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[33](find_recursive_functions.o))
- ld: warning: pointer not aligned in '_camlInvariant_params__data_begin'+0x5E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[34](invariant_params.o))
- ld: warning: pointer not aligned in '_camlInconstant_idents__data_begin'+0x164 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[35](inconstant_idents.o))
- ld: warning: pointer not aligned in '_camlAlias_analysis__data_begin'+0x5EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[36](alias_analysis.o))
- ld: warning: pointer not aligned in '_camlLift_constants__data_begin'+0x19CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[37](lift_constants.o))
- ld: warning: pointer not aligned in '_camlShare_constants__data_begin'+0xDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[38](share_constants.o))
- ld: warning: pointer not aligned in '_camlSimplify_common__data_begin'+0x1CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[39](simplify_common.o))
- ld: warning: pointer not aligned in '_camlRemove_unused_arguments__data_begin'+0x59C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[40](remove_unused_arguments.o))
- ld: warning: pointer not aligned in '_camlRemove_unused_closure_vars__data_begin'+0x8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[41](remove_unused_closure_vars.o))
- ld: warning: pointer not aligned in '_camlRemove_unused_program_constructs__data_begin'+0x19C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[42](remove_unused_program_constructs.o))
- ld: warning: pointer not aligned in '_camlSimplify_boxed_integer_ops__data_begin'+0x5A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[43](simplify_boxed_integer_ops.o))
- ld: warning: pointer not aligned in '_camlSimplify_primitives__data_begin'+0x104 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[44](simplify_primitives.o))
- ld: warning: pointer not aligned in '_camlInlining_stats_types__data_begin'+0x1384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[45](inlining_stats_types.o))
- ld: warning: pointer not aligned in '_camlInlining_stats__data_begin'+0xBDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[46](inlining_stats.o))
- ld: warning: pointer not aligned in '_camlInline_and_simplify_aux__data_begin'+0x1524 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[47](inline_and_simplify_aux.o))
- ld: warning: pointer not aligned in '_camlRemove_free_vars_equal_to_args__data_begin'+0xDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[48](remove_free_vars_equal_to_args.o))
- ld: warning: pointer not aligned in '_camlExtract_projections__data_begin'+0x14C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[49](extract_projections.o))
- ld: warning: pointer not aligned in '_camlAugment_specialised_args__data_begin'+0x1214 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[50](augment_specialised_args.o))
- ld: warning: pointer not aligned in '_camlUnbox_free_vars_of_closures__data_begin'+0x334 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[51](unbox_free_vars_of_closures.o))
- ld: warning: pointer not aligned in '_camlUnbox_specialised_args__data_begin'+0x174 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[52](unbox_specialised_args.o))
- ld: warning: pointer not aligned in '_camlUnbox_closures__data_begin'+0xD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[53](unbox_closures.o))
- ld: warning: pointer not aligned in '_camlInlining_transforms__data_begin'+0xAAC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[54](inlining_transforms.o))
- ld: warning: pointer not aligned in '_camlInlining_decision__data_begin'+0x46C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[55](inlining_decision.o))
- ld: warning: pointer not aligned in '_camlInline_and_simplify__data_begin'+0x1D0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[56](inline_and_simplify.o))
- ld: warning: pointer not aligned in '_camlRef_to_variables__data_begin'+0x1E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[57](ref_to_variables.o))
- ld: warning: pointer not aligned in '_camlFlambda_invariants__data_begin'+0x2D8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[58](flambda_invariants.o))
- ld: warning: pointer not aligned in '_camlMiddle_end__data_begin'+0xBAC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[59](middle_end.o))
- ld: warning: pointer not aligned in '_camlX86_proc__data_begin'+0xB6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[60](x86_proc.o))
- ld: warning: pointer not aligned in '_camlX86_dsl__data_begin'+0x158C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[61](x86_dsl.o))
- ld: warning: pointer not aligned in '_camlX86_gas__data_begin'+0x1F8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[62](x86_gas.o))
- ld: warning: pointer not aligned in '_camlX86_masm__data_begin'+0x1794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[63](x86_masm.o))
- ld: warning: pointer not aligned in '_camlArch__data_begin'+0xB34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[64](arch.o))
- ld: warning: pointer not aligned in '_camlCmm__data_begin'+0x1DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[65](cmm.o))
- ld: warning: pointer not aligned in '_camlPrintcmm__data_begin'+0x31DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[66](printcmm.o))
- ld: warning: pointer not aligned in '_camlReg__data_begin'+0x36C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[67](reg.o))
- ld: warning: pointer not aligned in '_camlMach__data_begin'+0xEC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[68](mach.o))
- ld: warning: pointer not aligned in '_camlProc__data_begin'+0xDAC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[69](proc.o))
- ld: warning: pointer not aligned in '_camlClambda__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[70](clambda.o))
- ld: warning: pointer not aligned in '_camlPrintclambda__data_begin'+0x451C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[71](printclambda.o))
- ld: warning: pointer not aligned in '_camlExport_info__data_begin'+0x1A8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[72](export_info.o))
- ld: warning: pointer not aligned in '_camlExport_info_for_pack__data_begin'+0x1D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[73](export_info_for_pack.o))
- ld: warning: pointer not aligned in '_camlCompilenv__data_begin'+0xE14 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[74](compilenv.o))
- ld: warning: pointer not aligned in '_camlClosure__data_begin'+0xE64 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[75](closure.o))
- ld: warning: pointer not aligned in '_camlBuild_export_info__data_begin'+0x11FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[76](build_export_info.o))
- ld: warning: pointer not aligned in '_camlClosure_offsets__data_begin'+0x514 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[77](closure_offsets.o))
- ld: warning: pointer not aligned in '_camlFlambda_to_clambda__data_begin'+0xE24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[78](flambda_to_clambda.o))
- ld: warning: pointer not aligned in '_camlImport_approx__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[79](import_approx.o))
- ld: warning: pointer not aligned in '_camlUn_anf__data_begin'+0x7A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[80](un_anf.o))
- ld: warning: pointer not aligned in '_camlStrmatch__data_begin'+0x70C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[81](strmatch.o))
- ld: warning: pointer not aligned in '_camlCmmgen__data_begin'+0x4414 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[82](cmmgen.o))
- ld: warning: pointer not aligned in '_camlPrintmach__data_begin'+0x2F7C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[83](printmach.o))
- ld: warning: pointer not aligned in '_camlSelectgen__data_begin'+0xE3C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[84](selectgen.o))
- ld: warning: pointer not aligned in '_camlSpacetime_profiling__data_begin'+0xE54 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[85](spacetime_profiling.o))
- ld: warning: pointer not aligned in '_camlSelection__data_begin'+0xA9C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[86](selection.o))
- ld: warning: pointer not aligned in '_camlComballoc__data_begin'+0xAC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[87](comballoc.o))
- ld: warning: pointer not aligned in '_camlCSEgen__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[88](CSEgen.o))
- ld: warning: pointer not aligned in '_camlCSE__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[89](CSE.o))
- ld: warning: pointer not aligned in '_camlLiveness__data_begin'+0x15C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[90](liveness.o))
- ld: warning: pointer not aligned in '_camlSpill__data_begin'+0x2AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[91](spill.o))
- ld: warning: pointer not aligned in '_camlSplit__data_begin'+0x29C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[92](split.o))
- ld: warning: pointer not aligned in '_camlInterf__data_begin'+0x8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[93](interf.o))
- ld: warning: pointer not aligned in '_camlColoring__data_begin'+0x8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[94](coloring.o))
- ld: warning: pointer not aligned in '_camlReloadgen__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[95](reloadgen.o))
- ld: warning: pointer not aligned in '_camlReload__data_begin'+0x184 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[96](reload.o))
- ld: warning: pointer not aligned in '_camlDeadcode__data_begin'+0xBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[97](deadcode.o))
- ld: warning: pointer not aligned in '_camlPrintlinear__data_begin'+0xBEC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[98](printlinear.o))
- ld: warning: pointer not aligned in '_camlLinearize__data_begin'+0x314 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[99](linearize.o))
- ld: warning: pointer not aligned in '_camlSchedgen__data_begin'+0x67C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[100](schedgen.o))
- ld: warning: pointer not aligned in '_camlEmitaux__data_begin'+0x9F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[104](emitaux.o))
- ld: warning: pointer not aligned in '_camlEmit__data_begin'+0x1AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[105](emit.o))
- ld: warning: pointer not aligned in '_camlAsmgen__data_begin'+0xAA4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[106](asmgen.o))
- ld: warning: pointer not aligned in '_camlAsmlink__data_begin'+0x1B1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[107](asmlink.o))
- ld: warning: pointer not aligned in '_camlAsmlibrarian__data_begin'+0x234 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[108](asmlibrarian.o))
- ld: warning: pointer not aligned in '_camlAsmpackager__data_begin'+0xA94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[109](asmpackager.o))
- ld: warning: pointer not aligned in '_camlOptcompile__data_begin'+0x23C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamloptcomp.a[111](optcompile.o))
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[2](config.o))
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[3](misc.o))
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[4](identifiable.o))
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[5](numbers.o))
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[6](arg_helper.o))
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[7](clflags.o))
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[8](tbl.o))
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[9](timings.o))
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[11](ccomp.o))
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[12](warnings.o))
- ld: warning: pointer not aligned in '_camlConsistbl__data_begin'+0x18C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[13](consistbl.o))
- ld: warning: pointer not aligned in '_camlStrongly_connected_components__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[14](strongly_connected_components.o))
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[15](location.o))
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[16](longident.o))
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[17](docstrings.o))
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[18](ast_helper.o))
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[19](syntaxerr.o))
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[20](parser.o))
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[21](lexer.o))
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[22](parse.o))
- ld: warning: pointer not aligned in '_camlPrintast__data_begin'+0x785C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[23](printast.o))
- ld: warning: pointer not aligned in '_camlPprintast__data_begin'+0x143FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[24](pprintast.o))
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[25](ast_mapper.o))
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[26](ast_iterator.o))
- ld: warning: pointer not aligned in '_camlAttr_helper__data_begin'+0x26C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[27](attr_helper.o))
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[28](builtin_attributes.o))
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[29](ast_invariants.o))
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[30](depend.o))
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[31](ident.o))
- ld: warning: pointer not aligned in '_camlPath__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[32](path.o))
- ld: warning: pointer not aligned in '_camlPrimitive__data_begin'+0x87C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[33](primitive.o))
- ld: warning: pointer not aligned in '_camlTypes__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[34](types.o))
- ld: warning: pointer not aligned in '_camlBtype__data_begin'+0x10DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[35](btype.o))
- ld: warning: pointer not aligned in '_camlOprint__data_begin'+0x7BDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[36](oprint.o))
- ld: warning: pointer not aligned in '_camlSubst__data_begin'+0x6E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[37](subst.o))
- ld: warning: pointer not aligned in '_camlPredef__data_begin'+0x6BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[38](predef.o))
- ld: warning: pointer not aligned in '_camlDatarepr__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[39](datarepr.o))
- ld: warning: pointer not aligned in '_camlCmi_format__data_begin'+0x4AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[40](cmi_format.o))
- ld: warning: pointer not aligned in '_camlEnv__data_begin'+0x41AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[41](env.o))
- ld: warning: pointer not aligned in '_camlTypedtree__data_begin'+0x1FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[42](typedtree.o))
- ld: warning: pointer not aligned in '_camlPrinttyped__data_begin'+0x72DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[43](printtyped.o))
- ld: warning: pointer not aligned in '_camlCtype__data_begin'+0x3B8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[44](ctype.o))
- ld: warning: pointer not aligned in '_camlPrinttyp__data_begin'+0x6AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[45](printtyp.o))
- ld: warning: pointer not aligned in '_camlIncludeclass__data_begin'+0x15A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[46](includeclass.o))
- ld: warning: pointer not aligned in '_camlMtype__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[47](mtype.o))
- ld: warning: pointer not aligned in '_camlEnvaux__data_begin'+0x294 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[48](envaux.o))
- ld: warning: pointer not aligned in '_camlIncludecore__data_begin'+0xE34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[49](includecore.o))
- ld: warning: pointer not aligned in '_camlTypedtreeIter__data_begin'+0x76C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[50](typedtreeIter.o))
- ld: warning: pointer not aligned in '_camlTypedtreeMap__data_begin'+0x6A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[51](typedtreeMap.o))
- ld: warning: pointer not aligned in '_camlTast_mapper__data_begin'+0x754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[52](tast_mapper.o))
- ld: warning: pointer not aligned in '_camlCmt_format__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[53](cmt_format.o))
- ld: warning: pointer not aligned in '_camlUntypeast__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[54](untypeast.o))
- ld: warning: pointer not aligned in '_camlIncludemod__data_begin'+0x393C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[55](includemod.o))
- ld: warning: pointer not aligned in '_camlTypetexp__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[56](typetexp.o))
- ld: warning: pointer not aligned in '_camlParmatch__data_begin'+0x3E0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[57](parmatch.o))
- ld: warning: pointer not aligned in '_camlStypes__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[58](stypes.o))
- ld: warning: pointer not aligned in '_camlTypedecl__data_begin'+0x5A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[59](typedecl.o))
- ld: warning: pointer not aligned in '_camlTypecore__data_begin'+0x8544 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[60](typecore.o))
- ld: warning: pointer not aligned in '_camlTypeclass__data_begin'+0x45A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[61](typeclass.o))
- ld: warning: pointer not aligned in '_camlTypemod__data_begin'+0x355C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[62](typemod.o))
- ld: warning: pointer not aligned in '_camlLambda__data_begin'+0x6AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[63](lambda.o))
- ld: warning: pointer not aligned in '_camlPrintlambda__data_begin'+0x7F6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[64](printlambda.o))
- ld: warning: pointer not aligned in '_camlTypeopt__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[65](typeopt.o))
- ld: warning: pointer not aligned in '_camlSwitch__data_begin'+0x4FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[66](switch.o))
- ld: warning: pointer not aligned in '_camlMatching__data_begin'+0x40BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[67](matching.o))
- ld: warning: pointer not aligned in '_camlTranslobj__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[68](translobj.o))
- ld: warning: pointer not aligned in '_camlTranslattribute__data_begin'+0x484 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[69](translattribute.o))
- ld: warning: pointer not aligned in '_camlTranslcore__data_begin'+0x571C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[70](translcore.o))
- ld: warning: pointer not aligned in '_camlTranslclass__data_begin'+0x11BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[71](translclass.o))
- ld: warning: pointer not aligned in '_camlTranslmod__data_begin'+0x1064 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[72](translmod.o))
- ld: warning: pointer not aligned in '_camlSimplif__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[73](simplif.o))
- ld: warning: pointer not aligned in '_camlRuntimedef__data_begin'+0x3644 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[74](runtimedef.o))
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[75](pparse.o))
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[76](main_args.o))
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[77](compenv.o))
- ld: warning: pointer not aligned in '_camlCompmisc__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[78](compmisc.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlQueue__data_begin'+0x23C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[21](queue.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlWeak__data_begin'+0x3C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[34](weak.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlCamlinternalOO__data_begin'+0xD34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[39](camlinternalOO.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- /Library/Developer/CommandLineTools/usr/bin/make otherlibrariesopt
- for i in unix str num dynlink bigarray raw_spacetime_lib systhreads threads graph; do \
- (cd otherlibs/$i; /Library/Developer/CommandLineTools/usr/bin/make allopt) || exit $?; \
- done
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unix.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels unixLabels.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlopt '../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib' -linkall \
- unix.cmx unixLabels.cmx
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -shared -o unix.cmxs -I . unix.cmxa
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0x36C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/unix/unix.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlUnix__data_begin'+0x2754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/unix/unix.a[2](unix.o))
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats str.ml
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 98, characters 29-43:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 98, characters 55-69:
- Warning 3: deprecated: Char.uppercase
- Use Char.uppercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 221, characters 38-52:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 278, characters 43-57:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 287, characters 45-59:
- Warning 3: deprecated: Char.lowercase
- Use Char.lowercase_ascii instead.
- File "/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.ml", line 301, characters 51-67:
- Warning 3: deprecated: String.lowercase
- Use String.lowercase_ascii instead.
- ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlopt '../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib' -linkall \
- str.cmx
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -shared -o str.cmxs -I . str.cmxa
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0x23C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlStr__data_begin'+0xAE4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.a[2](str.o))
- Makefile:19: warning: overriding commands for target `depend'
- Makefile.shared:34: warning: ignoring old commands for target `depend'
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats int_misc.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats nat.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats big_int.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats arith_flags.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats ratio.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats num.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats arith_status.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o nums -oc nums -ocamlopt '../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib' -linkall \
- int_misc.cmx nat.cmx big_int.cmx arith_flags.cmx ratio.cmx num.cmx arith_status.cmx
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -shared -o nums.cmxs -I . nums.cmxa
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlInt_misc__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.a[2](int_misc.o))
- ld: warning: pointer not aligned in '_camlNat__data_begin'+0x5B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.a[3](nat.o))
- ld: warning: pointer not aligned in '_camlBig_int__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.a[4](big_int.o))
- ld: warning: pointer not aligned in '_camlArith_flags__data_begin'+0x4C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.a[5](arith_flags.o))
- ld: warning: pointer not aligned in '_camlRatio__data_begin'+0xC24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.a[6](ratio.o))
- ld: warning: pointer not aligned in '_camlNum__data_begin'+0x764 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.a[7](num.o))
- ld: warning: pointer not aligned in '_camlArith_status__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/num/nums.a[8](arith_status.o))
- cp natdynlink.ml dynlink.mlopt
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -absname -w +a-4-9-41-42-44-45-48 -bin-annot -g -I ../../stdlib -warn-error A -safe-string -strict-sequence -strict-formats -impl dynlink.mlopt
- rm -f dynlink.mlopt
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -absname -w +a-4-9-41-42-44-45-48 -bin-annot -g -I ../../stdlib -warn-error A -safe-string -strict-sequence -strict-formats -ccopt "" -a -o dynlink.cmxa \
- dynlink.cmx
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats -I ../unix bigarray.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o bigarray -oc bigarray -ocamlopt '../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib' -linkall \
- bigarray.cmx
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -shared -o bigarray.cmxs -I . bigarray.cmxa
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0x17C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/bigarray/bigarray.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlBigarray__data_begin'+0x834 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/bigarray/bigarray.a[2](bigarray.o))
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string raw_spacetime_lib.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -a -o raw_spacetime_lib.cmxa -linkall raw_spacetime_lib.cmx
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -shared -o raw_spacetime_lib.cmxs -I . raw_spacetime_lib.cmxa
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0x2B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/raw_spacetime_lib/raw_spacetime_lib.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlRaw_spacetime_lib__data_begin'+0x108C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/raw_spacetime_lib/raw_spacetime_lib.a[2](raw_spacetime_lib.o))
- cc -I../../asmrun -I../../byterun -O2 -fno-strict-aliasing -fwrapv -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
- -DNATIVE_CODE -DTARGET_amd64 \
- -DMODEL_default -DSYS_macosx -c st_stubs.c
- mv st_stubs.o st_stubs_n.o
- ar rc libthreadsnat.a st_stubs_n.o
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string thread.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string mutex.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string condition.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string event.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string threadUnix.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -a -o threads.cmxa thread.cmx mutex.cmx condition.cmx event.cmx threadUnix.cmx \
- -cclib -lthreadsnat -cclib -lpthread
- make[3]: Nothing to be done for `allopt'.
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats graphics.ml
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -bin-annot -g -safe-string -strict-sequence -strict-formats graphicsX11.ml
- ../../boot/ocamlrun ../../tools/ocamlmklib -o graphics -oc graphics -ocamlopt '../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib' -linkall \
- graphics.cmx graphicsX11.cmx -cclib "\"-L/usr/X11R6/lib -lX11\""
- ../../boot/ocamlrun ../../ocamlopt -nostdlib -I ../../stdlib -shared -o graphics.cmxs -I . graphics.cmxa
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0x2BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/graph/graphics.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlGraphics__data_begin'+0x93C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/graph/graphics.a[2](graphics.o))
- ld: warning: pointer not aligned in '_camlGraphicsX11__data_begin'+0xDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/graph/graphics.a[3](graphicsX11.o))
- /Library/Developer/CommandLineTools/usr/bin/make ocamllex.opt ocamltoolsopt ocamltoolsopt.opt ocamldoc.opt
- cd lex; /Library/Developer/CommandLineTools/usr/bin/make allopt
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot cset.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot syntax.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot parser.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexer.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot table.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot compact.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot common.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot output.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -bin-annot main.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -o ocamllex.opt cset.cmx syntax.cmx parser.cmx lexer.cmx table.cmx lexgen.cmx compact.cmx common.cmx output.cmx outputbis.cmx main.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x12BC (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup2f3d25.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlMain__data_begin'+0x9A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/main.o)
- ld: warning: pointer not aligned in '_camlOutputbis__data_begin'+0x1C24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/outputbis.o)
- ld: warning: pointer not aligned in '_camlOutput__data_begin'+0x160C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/output.o)
- ld: warning: pointer not aligned in '_camlCommon__data_begin'+0xD5C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/common.o)
- ld: warning: pointer not aligned in '_camlCompact__data_begin'+0x254 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/compact.o)
- ld: warning: pointer not aligned in '_camlLexgen__data_begin'+0xF74 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/lexgen.o)
- ld: warning: pointer not aligned in '_camlTable__data_begin'+0x16C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/table.o)
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x264C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/lexer.o)
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0xEA4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/parser.o)
- ld: warning: pointer not aligned in '_camlCset__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/lex/cset.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlStack__data_begin'+0x19C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[20](stack.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- cd tools; /Library/Developer/CommandLineTools/usr/bin/make opt
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - profiling.ml
- cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -o compilerlibs/ocamlmiddleend.cmxa middle_end/debuginfo.cmx middle_end/base_types/tag.cmx middle_end/base_types/linkage_name.cmx middle_end/base_types/compilation_unit.cmx middle_end/base_types/variable.cmx middle_end/base_types/mutable_variable.cmx middle_end/base_types/id_types.cmx middle_end/base_types/set_of_closures_id.cmx middle_end/base_types/set_of_closures_origin.cmx middle_end/base_types/closure_element.cmx middle_end/base_types/closure_id.cmx middle_end/base_types/var_within_closure.cmx middle_end/base_types/static_exception.cmx middle_end/base_types/export_id.cmx middle_end/base_types/symbol.cmx middle_end/pass_wrapper.cmx middle_end/semantics_of_primitives.cmx middle_end/allocated_const.cmx middle_end/projection.cmx middle_end/flambda.cmx middle_end/flambda_iterators.cmx middle_end/flambda_utils.cmx middle_end/inlining_cost.cmx middle_end/effect_analysis.cmx middle_end/freshening.cmx middle_end/simple_value_approx.cmx middle_end/lift_code.cmx middle_end/closure_conversion_aux.cmx middle_end/closure_conversion.cmx middle_end/initialize_symbol_to_let_symbol.cmx middle_end/lift_let_to_initialize_symbol.cmx middle_end/find_recursive_functions.cmx middle_end/invariant_params.cmx middle_end/inconstant_idents.cmx middle_end/alias_analysis.cmx middle_end/lift_constants.cmx middle_end/share_constants.cmx middle_end/simplify_common.cmx middle_end/remove_unused_arguments.cmx middle_end/remove_unused_closure_vars.cmx middle_end/remove_unused_program_constructs.cmx middle_end/simplify_boxed_integer_ops.cmx middle_end/simplify_primitives.cmx middle_end/inlining_stats_types.cmx middle_end/inlining_stats.cmx middle_end/inline_and_simplify_aux.cmx middle_end/remove_free_vars_equal_to_args.cmx middle_end/extract_projections.cmx middle_end/augment_specialised_args.cmx middle_end/unbox_free_vars_of_closures.cmx middle_end/unbox_specialised_args.cmx middle_end/unbox_closures.cmx middle_end/inlining_transforms.cmx middle_end/inlining_decision.cmx middle_end/inline_and_simplify.cmx middle_end/ref_to_variables.cmx middle_end/flambda_invariants.cmx middle_end/middle_end.cmx
- cd tools; /Library/Developer/CommandLineTools/usr/bin/make opt.opt
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - ocamldep.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamldep.opt timings.cmx misc.cmx config.cmx identifiable.cmx numbers.cmx arg_helper.cmx clflags.cmx terminfo.cmx warnings.cmx location.cmx longident.cmx docstrings.cmx syntaxerr.cmx ast_helper.cmx parser.cmx lexer.cmx parse.cmx ccomp.cmx ast_mapper.cmx ast_iterator.cmx builtin_attributes.cmx ast_invariants.cmx pparse.cmx compenv.cmx depend.cmx ocamldep.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x19D4 (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup6a465f.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOcamldep__data_begin'+0x1BEC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/ocamldep.o)
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/depend.o)
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/driver/compenv.o)
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/driver/pparse.o)
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/ast_invariants.o)
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/builtin_attributes.o)
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/ast_iterator.o)
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/ast_mapper.o)
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/ccomp.o)
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/parse.o)
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/lexer.o)
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/parser.o)
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/ast_helper.o)
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/syntaxerr.o)
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/docstrings.o)
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/longident.o)
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/location.o)
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/warnings.o)
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/clflags.o)
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/arg_helper.o)
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/numbers.o)
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/identifiable.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/misc.o)
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/timings.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - ocamlprof.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlprof.opt misc.cmx config.cmx identifiable.cmx numbers.cmx arg_helper.cmx clflags.cmx terminfo.cmx warnings.cmx location.cmx longident.cmx docstrings.cmx syntaxerr.cmx ast_helper.cmx parser.cmx lexer.cmx parse.cmx profiling.cmx ocamlprof.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x161C (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup9198be.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOcamlprof__data_begin'+0x1104 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/ocamlprof.o)
- ld: warning: pointer not aligned in '_camlProfiling__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/profiling.o)
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/parse.o)
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/lexer.o)
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/parser.o)
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/ast_helper.o)
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/syntaxerr.o)
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/docstrings.o)
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/longident.o)
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/parsing/location.o)
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/warnings.o)
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/clflags.o)
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/arg_helper.o)
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/numbers.o)
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/identifiable.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/misc.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - ocamlcp.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlcp.opt misc.cmx warnings.cmx config.cmx identifiable.cmx numbers.cmx arg_helper.cmx clflags.cmx main_args.cmx ocamlcp.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x119C (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup410c36.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOcamlcp__data_begin'+0x123C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/ocamlcp.o)
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/driver/main_args.o)
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/clflags.o)
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/arg_helper.o)
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/numbers.o)
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/identifiable.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/warnings.o)
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/misc.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - ocamloptp.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamloptp.opt misc.cmx warnings.cmx config.cmx identifiable.cmx numbers.cmx arg_helper.cmx clflags.cmx main_args.cmx ocamloptp.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x119C (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartupab3f91.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOcamloptp__data_begin'+0x171C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/ocamloptp.o)
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/driver/main_args.o)
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/clflags.o)
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/arg_helper.o)
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/numbers.o)
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/identifiable.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/warnings.o)
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/misc.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - ocamlmklibconfig.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - ocamlmklib.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlmklib.opt ocamlmklibconfig.cmx config.cmx ocamlmklib.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0xCCC (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup205cd3.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOcamlmklib__data_begin'+0x18DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/ocamlmklib.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlOcamlmklibconfig__data_begin'+0x23C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/ocamlmklibconfig.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - ocamlmktop.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlmktop.opt misc.cmx identifiable.cmx numbers.cmx config.cmx arg_helper.cmx clflags.cmx ccomp.cmx ocamlmktop.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x10CC (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartupf6abc1.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOcamlmktop__data_begin'+0xC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/ocamlmktop.o)
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/ccomp.o)
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/clflags.o)
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/arg_helper.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/numbers.o)
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/identifiable.o)
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/misc.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - cmt2annot.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - read_cmt.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o read_cmt.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa cmt2annot.cmx read_cmt.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x3014 (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup93ea6d.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlRead_cmt__data_begin'+0x9A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/read_cmt.o)
- ld: warning: pointer not aligned in '_camlCmt2annot__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/cmt2annot.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[2](config.o))
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[3](misc.o))
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[4](identifiable.o))
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[5](numbers.o))
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[6](arg_helper.o))
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[7](clflags.o))
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[8](tbl.o))
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[9](timings.o))
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[11](ccomp.o))
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[12](warnings.o))
- ld: warning: pointer not aligned in '_camlConsistbl__data_begin'+0x18C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[13](consistbl.o))
- ld: warning: pointer not aligned in '_camlStrongly_connected_components__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[14](strongly_connected_components.o))
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[15](location.o))
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[16](longident.o))
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[17](docstrings.o))
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[18](ast_helper.o))
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[19](syntaxerr.o))
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[20](parser.o))
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[21](lexer.o))
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[22](parse.o))
- ld: warning: pointer not aligned in '_camlPrintast__data_begin'+0x785C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[23](printast.o))
- ld: warning: pointer not aligned in '_camlPprintast__data_begin'+0x143FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[24](pprintast.o))
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[25](ast_mapper.o))
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[26](ast_iterator.o))
- ld: warning: pointer not aligned in '_camlAttr_helper__data_begin'+0x26C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[27](attr_helper.o))
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[28](builtin_attributes.o))
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[29](ast_invariants.o))
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[30](depend.o))
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[31](ident.o))
- ld: warning: pointer not aligned in '_camlPath__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[32](path.o))
- ld: warning: pointer not aligned in '_camlPrimitive__data_begin'+0x87C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[33](primitive.o))
- ld: warning: pointer not aligned in '_camlTypes__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[34](types.o))
- ld: warning: pointer not aligned in '_camlBtype__data_begin'+0x10DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[35](btype.o))
- ld: warning: pointer not aligned in '_camlOprint__data_begin'+0x7BDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[36](oprint.o))
- ld: warning: pointer not aligned in '_camlSubst__data_begin'+0x6E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[37](subst.o))
- ld: warning: pointer not aligned in '_camlPredef__data_begin'+0x6BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[38](predef.o))
- ld: warning: pointer not aligned in '_camlDatarepr__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[39](datarepr.o))
- ld: warning: pointer not aligned in '_camlCmi_format__data_begin'+0x4AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[40](cmi_format.o))
- ld: warning: pointer not aligned in '_camlEnv__data_begin'+0x41AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[41](env.o))
- ld: warning: pointer not aligned in '_camlTypedtree__data_begin'+0x1FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[42](typedtree.o))
- ld: warning: pointer not aligned in '_camlPrinttyped__data_begin'+0x72DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[43](printtyped.o))
- ld: warning: pointer not aligned in '_camlCtype__data_begin'+0x3B8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[44](ctype.o))
- ld: warning: pointer not aligned in '_camlPrinttyp__data_begin'+0x6AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[45](printtyp.o))
- ld: warning: pointer not aligned in '_camlIncludeclass__data_begin'+0x15A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[46](includeclass.o))
- ld: warning: pointer not aligned in '_camlMtype__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[47](mtype.o))
- ld: warning: pointer not aligned in '_camlEnvaux__data_begin'+0x294 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[48](envaux.o))
- ld: warning: pointer not aligned in '_camlIncludecore__data_begin'+0xE34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[49](includecore.o))
- ld: warning: pointer not aligned in '_camlTypedtreeIter__data_begin'+0x76C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[50](typedtreeIter.o))
- ld: warning: pointer not aligned in '_camlTypedtreeMap__data_begin'+0x6A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[51](typedtreeMap.o))
- ld: warning: pointer not aligned in '_camlTast_mapper__data_begin'+0x754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[52](tast_mapper.o))
- ld: warning: pointer not aligned in '_camlCmt_format__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[53](cmt_format.o))
- ld: warning: pointer not aligned in '_camlUntypeast__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[54](untypeast.o))
- ld: warning: pointer not aligned in '_camlIncludemod__data_begin'+0x393C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[55](includemod.o))
- ld: warning: pointer not aligned in '_camlTypetexp__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[56](typetexp.o))
- ld: warning: pointer not aligned in '_camlParmatch__data_begin'+0x3E0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[57](parmatch.o))
- ld: warning: pointer not aligned in '_camlStypes__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[58](stypes.o))
- ld: warning: pointer not aligned in '_camlTypedecl__data_begin'+0x5A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[59](typedecl.o))
- ld: warning: pointer not aligned in '_camlTypecore__data_begin'+0x8544 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[60](typecore.o))
- ld: warning: pointer not aligned in '_camlTypeclass__data_begin'+0x45A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[61](typeclass.o))
- ld: warning: pointer not aligned in '_camlTypemod__data_begin'+0x355C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[62](typemod.o))
- ld: warning: pointer not aligned in '_camlLambda__data_begin'+0x6AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[63](lambda.o))
- ld: warning: pointer not aligned in '_camlPrintlambda__data_begin'+0x7F6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[64](printlambda.o))
- ld: warning: pointer not aligned in '_camlTypeopt__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[65](typeopt.o))
- ld: warning: pointer not aligned in '_camlSwitch__data_begin'+0x4FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[66](switch.o))
- ld: warning: pointer not aligned in '_camlMatching__data_begin'+0x40BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[67](matching.o))
- ld: warning: pointer not aligned in '_camlTranslobj__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[68](translobj.o))
- ld: warning: pointer not aligned in '_camlTranslattribute__data_begin'+0x484 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[69](translattribute.o))
- ld: warning: pointer not aligned in '_camlTranslcore__data_begin'+0x571C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[70](translcore.o))
- ld: warning: pointer not aligned in '_camlTranslclass__data_begin'+0x11BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[71](translclass.o))
- ld: warning: pointer not aligned in '_camlTranslmod__data_begin'+0x1064 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[72](translmod.o))
- ld: warning: pointer not aligned in '_camlSimplif__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[73](simplif.o))
- ld: warning: pointer not aligned in '_camlRuntimedef__data_begin'+0x3644 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[74](runtimedef.o))
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[75](pparse.o))
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[76](main_args.o))
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[77](compenv.o))
- ld: warning: pointer not aligned in '_camlCompmisc__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[78](compmisc.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlWeak__data_begin'+0x3C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[34](weak.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - opnames.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - dumpobj.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o dumpobj.opt misc.cmx identifiable.cmx numbers.cmx tbl.cmx config.cmx ident.cmx opcodes.cmx bytesections.cmx opnames.cmx dumpobj.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x1194 (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup3ebf67.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlDumpobj__data_begin'+0x334C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/dumpobj.o)
- ld: warning: pointer not aligned in '_camlOpnames__data_begin'+0x1074 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/opnames.o)
- ld: warning: pointer not aligned in '_camlBytesections__data_begin'+0x1E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/bytecomp/bytesections.o)
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/typing/ident.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/tbl.o)
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/numbers.o)
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/identifiable.o)
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/misc.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - objinfo.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o ocamlobjinfo.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa ../compilerlibs/ocamlmiddleend.cmxa ../asmcomp/printclambda.cmx ../asmcomp/export_info.cmx objinfo.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x3C14 (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartupf01072.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlObjinfo__data_begin'+0x18B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/objinfo.o)
- ld: warning: pointer not aligned in '_camlExport_info__data_begin'+0x1A8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/asmcomp/export_info.o)
- ld: warning: pointer not aligned in '_camlPrintclambda__data_begin'+0x451C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/asmcomp/printclambda.o)
- ld: warning: pointer not aligned in '_camlDebuginfo__data_begin'+0x2C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[2](debuginfo.o))
- ld: warning: pointer not aligned in '_camlTag__data_begin'+0x14C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[3](tag.o))
- ld: warning: pointer not aligned in '_camlLinkage_name__data_begin'+0xEC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[4](linkage_name.o))
- ld: warning: pointer not aligned in '_camlCompilation_unit__data_begin'+0x284 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[5](compilation_unit.o))
- ld: warning: pointer not aligned in '_camlVariable__data_begin'+0x4CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[6](variable.o))
- ld: warning: pointer not aligned in '_camlMutable_variable__data_begin'+0x30C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[7](mutable_variable.o))
- ld: warning: pointer not aligned in '_camlId_types__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[8](id_types.o))
- ld: warning: pointer not aligned in '_camlSet_of_closures_id__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[9](set_of_closures_id.o))
- ld: warning: pointer not aligned in '_camlExport_id__data_begin'+0x9C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[15](export_id.o))
- ld: warning: pointer not aligned in '_camlSymbol__data_begin'+0x28C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[16](symbol.o))
- ld: warning: pointer not aligned in '_camlSemantics_of_primitives__data_begin'+0x244 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[18](semantics_of_primitives.o))
- ld: warning: pointer not aligned in '_camlAllocated_const__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[19](allocated_const.o))
- ld: warning: pointer not aligned in '_camlProjection__data_begin'+0x98C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[20](projection.o))
- ld: warning: pointer not aligned in '_camlFlambda__data_begin'+0x64F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[21](flambda.o))
- ld: warning: pointer not aligned in '_camlFlambda_iterators__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[22](flambda_iterators.o))
- ld: warning: pointer not aligned in '_camlFlambda_utils__data_begin'+0xD0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[23](flambda_utils.o))
- ld: warning: pointer not aligned in '_camlInlining_cost__data_begin'+0x203C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[24](inlining_cost.o))
- ld: warning: pointer not aligned in '_camlEffect_analysis__data_begin'+0x84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[25](effect_analysis.o))
- ld: warning: pointer not aligned in '_camlFreshening__data_begin'+0xD84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[26](freshening.o))
- ld: warning: pointer not aligned in '_camlSimple_value_approx__data_begin'+0x1C24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlmiddleend.a[27](simple_value_approx.o))
- ld: warning: pointer not aligned in '_camlBytesections__data_begin'+0x1E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[8](bytesections.o))
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[2](config.o))
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[3](misc.o))
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[4](identifiable.o))
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[5](numbers.o))
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[6](arg_helper.o))
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[7](clflags.o))
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[8](tbl.o))
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[9](timings.o))
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[11](ccomp.o))
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[12](warnings.o))
- ld: warning: pointer not aligned in '_camlConsistbl__data_begin'+0x18C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[13](consistbl.o))
- ld: warning: pointer not aligned in '_camlStrongly_connected_components__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[14](strongly_connected_components.o))
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[15](location.o))
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[16](longident.o))
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[17](docstrings.o))
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[18](ast_helper.o))
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[19](syntaxerr.o))
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[20](parser.o))
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[21](lexer.o))
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[22](parse.o))
- ld: warning: pointer not aligned in '_camlPrintast__data_begin'+0x785C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[23](printast.o))
- ld: warning: pointer not aligned in '_camlPprintast__data_begin'+0x143FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[24](pprintast.o))
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[25](ast_mapper.o))
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[26](ast_iterator.o))
- ld: warning: pointer not aligned in '_camlAttr_helper__data_begin'+0x26C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[27](attr_helper.o))
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[28](builtin_attributes.o))
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[29](ast_invariants.o))
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[30](depend.o))
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[31](ident.o))
- ld: warning: pointer not aligned in '_camlPath__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[32](path.o))
- ld: warning: pointer not aligned in '_camlPrimitive__data_begin'+0x87C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[33](primitive.o))
- ld: warning: pointer not aligned in '_camlTypes__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[34](types.o))
- ld: warning: pointer not aligned in '_camlBtype__data_begin'+0x10DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[35](btype.o))
- ld: warning: pointer not aligned in '_camlOprint__data_begin'+0x7BDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[36](oprint.o))
- ld: warning: pointer not aligned in '_camlSubst__data_begin'+0x6E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[37](subst.o))
- ld: warning: pointer not aligned in '_camlPredef__data_begin'+0x6BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[38](predef.o))
- ld: warning: pointer not aligned in '_camlDatarepr__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[39](datarepr.o))
- ld: warning: pointer not aligned in '_camlCmi_format__data_begin'+0x4AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[40](cmi_format.o))
- ld: warning: pointer not aligned in '_camlEnv__data_begin'+0x41AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[41](env.o))
- ld: warning: pointer not aligned in '_camlTypedtree__data_begin'+0x1FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[42](typedtree.o))
- ld: warning: pointer not aligned in '_camlPrinttyped__data_begin'+0x72DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[43](printtyped.o))
- ld: warning: pointer not aligned in '_camlCtype__data_begin'+0x3B8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[44](ctype.o))
- ld: warning: pointer not aligned in '_camlPrinttyp__data_begin'+0x6AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[45](printtyp.o))
- ld: warning: pointer not aligned in '_camlIncludeclass__data_begin'+0x15A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[46](includeclass.o))
- ld: warning: pointer not aligned in '_camlMtype__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[47](mtype.o))
- ld: warning: pointer not aligned in '_camlEnvaux__data_begin'+0x294 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[48](envaux.o))
- ld: warning: pointer not aligned in '_camlIncludecore__data_begin'+0xE34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[49](includecore.o))
- ld: warning: pointer not aligned in '_camlTypedtreeIter__data_begin'+0x76C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[50](typedtreeIter.o))
- ld: warning: pointer not aligned in '_camlTypedtreeMap__data_begin'+0x6A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[51](typedtreeMap.o))
- ld: warning: pointer not aligned in '_camlTast_mapper__data_begin'+0x754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[52](tast_mapper.o))
- ld: warning: pointer not aligned in '_camlCmt_format__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[53](cmt_format.o))
- ld: warning: pointer not aligned in '_camlUntypeast__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[54](untypeast.o))
- ld: warning: pointer not aligned in '_camlIncludemod__data_begin'+0x393C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[55](includemod.o))
- ld: warning: pointer not aligned in '_camlTypetexp__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[56](typetexp.o))
- ld: warning: pointer not aligned in '_camlParmatch__data_begin'+0x3E0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[57](parmatch.o))
- ld: warning: pointer not aligned in '_camlStypes__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[58](stypes.o))
- ld: warning: pointer not aligned in '_camlTypedecl__data_begin'+0x5A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[59](typedecl.o))
- ld: warning: pointer not aligned in '_camlTypecore__data_begin'+0x8544 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[60](typecore.o))
- ld: warning: pointer not aligned in '_camlTypeclass__data_begin'+0x45A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[61](typeclass.o))
- ld: warning: pointer not aligned in '_camlTypemod__data_begin'+0x355C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[62](typemod.o))
- ld: warning: pointer not aligned in '_camlLambda__data_begin'+0x6AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[63](lambda.o))
- ld: warning: pointer not aligned in '_camlPrintlambda__data_begin'+0x7F6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[64](printlambda.o))
- ld: warning: pointer not aligned in '_camlTypeopt__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[65](typeopt.o))
- ld: warning: pointer not aligned in '_camlSwitch__data_begin'+0x4FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[66](switch.o))
- ld: warning: pointer not aligned in '_camlMatching__data_begin'+0x40BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[67](matching.o))
- ld: warning: pointer not aligned in '_camlTranslobj__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[68](translobj.o))
- ld: warning: pointer not aligned in '_camlTranslattribute__data_begin'+0x484 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[69](translattribute.o))
- ld: warning: pointer not aligned in '_camlTranslcore__data_begin'+0x571C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[70](translcore.o))
- ld: warning: pointer not aligned in '_camlTranslclass__data_begin'+0x11BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[71](translclass.o))
- ld: warning: pointer not aligned in '_camlTranslmod__data_begin'+0x1064 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[72](translmod.o))
- ld: warning: pointer not aligned in '_camlSimplif__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[73](simplif.o))
- ld: warning: pointer not aligned in '_camlRuntimedef__data_begin'+0x3644 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[74](runtimedef.o))
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[75](pparse.o))
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[76](main_args.o))
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[77](compenv.o))
- ld: warning: pointer not aligned in '_camlCompmisc__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[78](compmisc.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlQueue__data_begin'+0x23C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[21](queue.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlWeak__data_begin'+0x3C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[34](weak.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - primreq.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o primreq.opt config.cmx primreq.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x90C (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartupe49c14.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlPrimreq__data_begin'+0x374 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/primreq.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/utils/config.o)
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - stripdebug.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o stripdebug.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa stripdebug.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x301C (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup8497fe.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlStripdebug__data_begin'+0x16C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/stripdebug.o)
- ld: warning: pointer not aligned in '_camlBytesections__data_begin'+0x1E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[8](bytesections.o))
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[2](config.o))
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[3](misc.o))
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[4](identifiable.o))
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[5](numbers.o))
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[6](arg_helper.o))
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[7](clflags.o))
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[8](tbl.o))
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[9](timings.o))
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[11](ccomp.o))
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[12](warnings.o))
- ld: warning: pointer not aligned in '_camlConsistbl__data_begin'+0x18C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[13](consistbl.o))
- ld: warning: pointer not aligned in '_camlStrongly_connected_components__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[14](strongly_connected_components.o))
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[15](location.o))
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[16](longident.o))
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[17](docstrings.o))
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[18](ast_helper.o))
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[19](syntaxerr.o))
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[20](parser.o))
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[21](lexer.o))
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[22](parse.o))
- ld: warning: pointer not aligned in '_camlPrintast__data_begin'+0x785C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[23](printast.o))
- ld: warning: pointer not aligned in '_camlPprintast__data_begin'+0x143FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[24](pprintast.o))
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[25](ast_mapper.o))
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[26](ast_iterator.o))
- ld: warning: pointer not aligned in '_camlAttr_helper__data_begin'+0x26C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[27](attr_helper.o))
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[28](builtin_attributes.o))
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[29](ast_invariants.o))
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[30](depend.o))
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[31](ident.o))
- ld: warning: pointer not aligned in '_camlPath__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[32](path.o))
- ld: warning: pointer not aligned in '_camlPrimitive__data_begin'+0x87C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[33](primitive.o))
- ld: warning: pointer not aligned in '_camlTypes__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[34](types.o))
- ld: warning: pointer not aligned in '_camlBtype__data_begin'+0x10DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[35](btype.o))
- ld: warning: pointer not aligned in '_camlOprint__data_begin'+0x7BDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[36](oprint.o))
- ld: warning: pointer not aligned in '_camlSubst__data_begin'+0x6E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[37](subst.o))
- ld: warning: pointer not aligned in '_camlPredef__data_begin'+0x6BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[38](predef.o))
- ld: warning: pointer not aligned in '_camlDatarepr__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[39](datarepr.o))
- ld: warning: pointer not aligned in '_camlCmi_format__data_begin'+0x4AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[40](cmi_format.o))
- ld: warning: pointer not aligned in '_camlEnv__data_begin'+0x41AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[41](env.o))
- ld: warning: pointer not aligned in '_camlTypedtree__data_begin'+0x1FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[42](typedtree.o))
- ld: warning: pointer not aligned in '_camlPrinttyped__data_begin'+0x72DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[43](printtyped.o))
- ld: warning: pointer not aligned in '_camlCtype__data_begin'+0x3B8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[44](ctype.o))
- ld: warning: pointer not aligned in '_camlPrinttyp__data_begin'+0x6AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[45](printtyp.o))
- ld: warning: pointer not aligned in '_camlIncludeclass__data_begin'+0x15A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[46](includeclass.o))
- ld: warning: pointer not aligned in '_camlMtype__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[47](mtype.o))
- ld: warning: pointer not aligned in '_camlEnvaux__data_begin'+0x294 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[48](envaux.o))
- ld: warning: pointer not aligned in '_camlIncludecore__data_begin'+0xE34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[49](includecore.o))
- ld: warning: pointer not aligned in '_camlTypedtreeIter__data_begin'+0x76C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[50](typedtreeIter.o))
- ld: warning: pointer not aligned in '_camlTypedtreeMap__data_begin'+0x6A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[51](typedtreeMap.o))
- ld: warning: pointer not aligned in '_camlTast_mapper__data_begin'+0x754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[52](tast_mapper.o))
- ld: warning: pointer not aligned in '_camlCmt_format__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[53](cmt_format.o))
- ld: warning: pointer not aligned in '_camlUntypeast__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[54](untypeast.o))
- ld: warning: pointer not aligned in '_camlIncludemod__data_begin'+0x393C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[55](includemod.o))
- ld: warning: pointer not aligned in '_camlTypetexp__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[56](typetexp.o))
- ld: warning: pointer not aligned in '_camlParmatch__data_begin'+0x3E0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[57](parmatch.o))
- ld: warning: pointer not aligned in '_camlStypes__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[58](stypes.o))
- ld: warning: pointer not aligned in '_camlTypedecl__data_begin'+0x5A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[59](typedecl.o))
- ld: warning: pointer not aligned in '_camlTypecore__data_begin'+0x8544 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[60](typecore.o))
- ld: warning: pointer not aligned in '_camlTypeclass__data_begin'+0x45A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[61](typeclass.o))
- ld: warning: pointer not aligned in '_camlTypemod__data_begin'+0x355C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[62](typemod.o))
- ld: warning: pointer not aligned in '_camlLambda__data_begin'+0x6AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[63](lambda.o))
- ld: warning: pointer not aligned in '_camlPrintlambda__data_begin'+0x7F6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[64](printlambda.o))
- ld: warning: pointer not aligned in '_camlTypeopt__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[65](typeopt.o))
- ld: warning: pointer not aligned in '_camlSwitch__data_begin'+0x4FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[66](switch.o))
- ld: warning: pointer not aligned in '_camlMatching__data_begin'+0x40BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[67](matching.o))
- ld: warning: pointer not aligned in '_camlTranslobj__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[68](translobj.o))
- ld: warning: pointer not aligned in '_camlTranslattribute__data_begin'+0x484 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[69](translattribute.o))
- ld: warning: pointer not aligned in '_camlTranslcore__data_begin'+0x571C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[70](translcore.o))
- ld: warning: pointer not aligned in '_camlTranslclass__data_begin'+0x11BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[71](translclass.o))
- ld: warning: pointer not aligned in '_camlTranslmod__data_begin'+0x1064 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[72](translmod.o))
- ld: warning: pointer not aligned in '_camlSimplif__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[73](simplif.o))
- ld: warning: pointer not aligned in '_camlRuntimedef__data_begin'+0x3644 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[74](runtimedef.o))
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[75](pparse.o))
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[76](main_args.o))
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[77](compenv.o))
- ld: warning: pointer not aligned in '_camlCompmisc__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[78](compmisc.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlWeak__data_begin'+0x3C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[34](weak.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48 -strict-sequence -warn-error A -safe-string -strict-formats -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -c - cmpbyt.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../middle_end -I ../middle_end/base_types -I ../driver -I ../toplevel -I .. -o cmpbyt.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa cmpbyt.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x3014 (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartup36fdae.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlCmpbyt__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/tools/cmpbyt.o)
- ld: warning: pointer not aligned in '_camlBytesections__data_begin'+0x1E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlbytecomp.a[8](bytesections.o))
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[2](config.o))
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[3](misc.o))
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[4](identifiable.o))
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[5](numbers.o))
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[6](arg_helper.o))
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[7](clflags.o))
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[8](tbl.o))
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[9](timings.o))
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[11](ccomp.o))
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[12](warnings.o))
- ld: warning: pointer not aligned in '_camlConsistbl__data_begin'+0x18C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[13](consistbl.o))
- ld: warning: pointer not aligned in '_camlStrongly_connected_components__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[14](strongly_connected_components.o))
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[15](location.o))
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[16](longident.o))
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[17](docstrings.o))
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[18](ast_helper.o))
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[19](syntaxerr.o))
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[20](parser.o))
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[21](lexer.o))
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[22](parse.o))
- ld: warning: pointer not aligned in '_camlPrintast__data_begin'+0x785C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[23](printast.o))
- ld: warning: pointer not aligned in '_camlPprintast__data_begin'+0x143FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[24](pprintast.o))
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[25](ast_mapper.o))
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[26](ast_iterator.o))
- ld: warning: pointer not aligned in '_camlAttr_helper__data_begin'+0x26C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[27](attr_helper.o))
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[28](builtin_attributes.o))
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[29](ast_invariants.o))
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[30](depend.o))
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[31](ident.o))
- ld: warning: pointer not aligned in '_camlPath__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[32](path.o))
- ld: warning: pointer not aligned in '_camlPrimitive__data_begin'+0x87C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[33](primitive.o))
- ld: warning: pointer not aligned in '_camlTypes__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[34](types.o))
- ld: warning: pointer not aligned in '_camlBtype__data_begin'+0x10DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[35](btype.o))
- ld: warning: pointer not aligned in '_camlOprint__data_begin'+0x7BDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[36](oprint.o))
- ld: warning: pointer not aligned in '_camlSubst__data_begin'+0x6E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[37](subst.o))
- ld: warning: pointer not aligned in '_camlPredef__data_begin'+0x6BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[38](predef.o))
- ld: warning: pointer not aligned in '_camlDatarepr__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[39](datarepr.o))
- ld: warning: pointer not aligned in '_camlCmi_format__data_begin'+0x4AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[40](cmi_format.o))
- ld: warning: pointer not aligned in '_camlEnv__data_begin'+0x41AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[41](env.o))
- ld: warning: pointer not aligned in '_camlTypedtree__data_begin'+0x1FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[42](typedtree.o))
- ld: warning: pointer not aligned in '_camlPrinttyped__data_begin'+0x72DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[43](printtyped.o))
- ld: warning: pointer not aligned in '_camlCtype__data_begin'+0x3B8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[44](ctype.o))
- ld: warning: pointer not aligned in '_camlPrinttyp__data_begin'+0x6AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[45](printtyp.o))
- ld: warning: pointer not aligned in '_camlIncludeclass__data_begin'+0x15A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[46](includeclass.o))
- ld: warning: pointer not aligned in '_camlMtype__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[47](mtype.o))
- ld: warning: pointer not aligned in '_camlEnvaux__data_begin'+0x294 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[48](envaux.o))
- ld: warning: pointer not aligned in '_camlIncludecore__data_begin'+0xE34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[49](includecore.o))
- ld: warning: pointer not aligned in '_camlTypedtreeIter__data_begin'+0x76C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[50](typedtreeIter.o))
- ld: warning: pointer not aligned in '_camlTypedtreeMap__data_begin'+0x6A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[51](typedtreeMap.o))
- ld: warning: pointer not aligned in '_camlTast_mapper__data_begin'+0x754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[52](tast_mapper.o))
- ld: warning: pointer not aligned in '_camlCmt_format__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[53](cmt_format.o))
- ld: warning: pointer not aligned in '_camlUntypeast__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[54](untypeast.o))
- ld: warning: pointer not aligned in '_camlIncludemod__data_begin'+0x393C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[55](includemod.o))
- ld: warning: pointer not aligned in '_camlTypetexp__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[56](typetexp.o))
- ld: warning: pointer not aligned in '_camlParmatch__data_begin'+0x3E0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[57](parmatch.o))
- ld: warning: pointer not aligned in '_camlStypes__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[58](stypes.o))
- ld: warning: pointer not aligned in '_camlTypedecl__data_begin'+0x5A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[59](typedecl.o))
- ld: warning: pointer not aligned in '_camlTypecore__data_begin'+0x8544 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[60](typecore.o))
- ld: warning: pointer not aligned in '_camlTypeclass__data_begin'+0x45A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[61](typeclass.o))
- ld: warning: pointer not aligned in '_camlTypemod__data_begin'+0x355C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[62](typemod.o))
- ld: warning: pointer not aligned in '_camlLambda__data_begin'+0x6AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[63](lambda.o))
- ld: warning: pointer not aligned in '_camlPrintlambda__data_begin'+0x7F6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[64](printlambda.o))
- ld: warning: pointer not aligned in '_camlTypeopt__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[65](typeopt.o))
- ld: warning: pointer not aligned in '_camlSwitch__data_begin'+0x4FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[66](switch.o))
- ld: warning: pointer not aligned in '_camlMatching__data_begin'+0x40BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[67](matching.o))
- ld: warning: pointer not aligned in '_camlTranslobj__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[68](translobj.o))
- ld: warning: pointer not aligned in '_camlTranslattribute__data_begin'+0x484 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[69](translattribute.o))
- ld: warning: pointer not aligned in '_camlTranslcore__data_begin'+0x571C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[70](translcore.o))
- ld: warning: pointer not aligned in '_camlTranslclass__data_begin'+0x11BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[71](translclass.o))
- ld: warning: pointer not aligned in '_camlTranslmod__data_begin'+0x1064 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[72](translmod.o))
- ld: warning: pointer not aligned in '_camlSimplif__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[73](simplif.o))
- ld: warning: pointer not aligned in '_camlRuntimedef__data_begin'+0x3644 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[74](runtimedef.o))
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[75](pparse.o))
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[76](main_args.o))
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[77](compenv.o))
- ld: warning: pointer not aligned in '_camlCompmisc__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[78](compmisc.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlWeak__data_begin'+0x3C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[34](weak.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- cd lex; /Library/Developer/CommandLineTools/usr/bin/make all
- make[3]: Nothing to be done for `all'.
- cd ocamldoc && /Library/Developer/CommandLineTools/usr/bin/make opt.opt
- /Library/Developer/CommandLineTools/usr/bin/make exeopt
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_config.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_messages.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_types.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_global.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_misc.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text_parser.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text_lexer.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_text.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_name.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_parameter.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_value.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_type.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_extension.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_exception.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_class.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_module.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_print.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_str.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_comments_global.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_parser.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_lexer.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_see_lexer.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_env.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_merge.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_sig.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_ast.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_control.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_inherit.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_search.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_scan.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_cross.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_comments.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_dep.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_analyse.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_info.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_dag2html.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_to_text.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_ocamlhtml.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_html.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_man.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_latex_style.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_latex.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_texi.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_dot.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_gen.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc_args.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats -c odoc.ml
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -o ocamldoc.opt -linkall unix.cmxa str.cmxa dynlink.cmxa \
- ../compilerlibs/ocamlcommon.cmxa \
- -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -nostdlib odoc_config.cmx odoc_messages.cmx odoc_global.cmx odoc_types.cmx odoc_misc.cmx odoc_text_parser.cmx odoc_text_lexer.cmx odoc_text.cmx odoc_name.cmx odoc_parameter.cmx odoc_value.cmx odoc_type.cmx odoc_extension.cmx odoc_exception.cmx odoc_class.cmx odoc_module.cmx odoc_print.cmx odoc_str.cmx odoc_comments_global.cmx odoc_parser.cmx odoc_lexer.cmx odoc_see_lexer.cmx odoc_env.cmx odoc_merge.cmx odoc_sig.cmx odoc_ast.cmx odoc_control.cmx odoc_inherit.cmx odoc_search.cmx odoc_scan.cmx odoc_cross.cmx odoc_comments.cmx odoc_dep.cmx odoc_analyse.cmx odoc_info.cmx odoc_dag2html.cmx odoc_to_text.cmx odoc_ocamlhtml.cmx odoc_html.cmx odoc_man.cmx odoc_latex_style.cmx odoc_latex.cmx odoc_texi.cmx odoc_dot.cmx odoc_gen.cmx odoc_args.cmx odoc.cmx
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: disabling chained fixups because of unaligned pointers
- ld: warning: pointer not aligned in '_caml_startup__data_begin'+0x4D44 (/private/var/folders/hf/hvwp3tks6dqdlx9y0m2sn3th0000z8/T/camlstartupc17408.o)
- ld: warning: pointer not aligned in '_camlStd_exit__data_begin'+0x24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/std_exit.o)
- ld: warning: pointer not aligned in '_camlOdoc__data_begin'+0x134 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc.o)
- ld: warning: pointer not aligned in '_camlOdoc_args__data_begin'+0x13F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_args.o)
- ld: warning: pointer not aligned in '_camlOdoc_gen__data_begin'+0xB4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_gen.o)
- ld: warning: pointer not aligned in '_camlOdoc_dot__data_begin'+0x734 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_dot.o)
- ld: warning: pointer not aligned in '_camlOdoc_texi__data_begin'+0x409C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_texi.o)
- ld: warning: pointer not aligned in '_camlOdoc_latex__data_begin'+0x5FFC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_latex.o)
- ld: warning: pointer not aligned in '_camlOdoc_man__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_man.o)
- ld: warning: pointer not aligned in '_camlOdoc_html__data_begin'+0xA454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_html.o)
- ld: warning: pointer not aligned in '_camlOdoc_ocamlhtml__data_begin'+0x4FC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_ocamlhtml.o)
- ld: warning: pointer not aligned in '_camlOdoc_to_text__data_begin'+0x1F24 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_to_text.o)
- ld: warning: pointer not aligned in '_camlOdoc_dag2html__data_begin'+0x1724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_dag2html.o)
- ld: warning: pointer not aligned in '_camlOdoc_info__data_begin'+0xB7C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_info.o)
- ld: warning: pointer not aligned in '_camlOdoc_analyse__data_begin'+0x744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_analyse.o)
- ld: warning: pointer not aligned in '_camlOdoc_dep__data_begin'+0x314 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_dep.o)
- ld: warning: pointer not aligned in '_camlOdoc_comments__data_begin'+0x32C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_comments.o)
- ld: warning: pointer not aligned in '_camlOdoc_cross__data_begin'+0x1704 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_cross.o)
- ld: warning: pointer not aligned in '_camlOdoc_scan__data_begin'+0x804 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_scan.o)
- ld: warning: pointer not aligned in '_camlOdoc_search__data_begin'+0x1CBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_search.o)
- ld: warning: pointer not aligned in '_camlOdoc_ast__data_begin'+0xA5C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_ast.o)
- ld: warning: pointer not aligned in '_camlOdoc_sig__data_begin'+0xABC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_sig.o)
- ld: warning: pointer not aligned in '_camlOdoc_merge__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_merge.o)
- ld: warning: pointer not aligned in '_camlOdoc_env__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_env.o)
- ld: warning: pointer not aligned in '_camlOdoc_see_lexer__data_begin'+0x744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_see_lexer.o)
- ld: warning: pointer not aligned in '_camlOdoc_lexer__data_begin'+0xFD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_lexer.o)
- ld: warning: pointer not aligned in '_camlOdoc_parser__data_begin'+0xE7C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_parser.o)
- ld: warning: pointer not aligned in '_camlOdoc_comments_global__data_begin'+0x9C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_comments_global.o)
- ld: warning: pointer not aligned in '_camlOdoc_str__data_begin'+0x16E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_str.o)
- ld: warning: pointer not aligned in '_camlOdoc_print__data_begin'+0x1CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_print.o)
- ld: warning: pointer not aligned in '_camlOdoc_module__data_begin'+0xCA4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_module.o)
- ld: warning: pointer not aligned in '_camlOdoc_class__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_class.o)
- ld: warning: pointer not aligned in '_camlOdoc_value__data_begin'+0x13C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_value.o)
- ld: warning: pointer not aligned in '_camlOdoc_parameter__data_begin'+0x1DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_parameter.o)
- ld: warning: pointer not aligned in '_camlOdoc_name__data_begin'+0x634 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_name.o)
- ld: warning: pointer not aligned in '_camlOdoc_text__data_begin'+0xFCC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_text.o)
- ld: warning: pointer not aligned in '_camlOdoc_text_lexer__data_begin'+0x2F44 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_text_lexer.o)
- ld: warning: pointer not aligned in '_camlOdoc_text_parser__data_begin'+0x174C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_text_parser.o)
- ld: warning: pointer not aligned in '_camlOdoc_misc__data_begin'+0xCF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_misc.o)
- ld: warning: pointer not aligned in '_camlOdoc_types__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_types.o)
- ld: warning: pointer not aligned in '_camlOdoc_global__data_begin'+0x11C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_global.o)
- ld: warning: pointer not aligned in '_camlOdoc_messages__data_begin'+0x4A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_messages.o)
- ld: warning: pointer not aligned in '_camlOdoc_config__data_begin'+0x5C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/odoc_config.o)
- ld: warning: pointer not aligned in '_camlConfig__data_begin'+0xDD4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[2](config.o))
- ld: warning: pointer not aligned in '_camlMisc__data_begin'+0x129C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[3](misc.o))
- ld: warning: pointer not aligned in '_camlIdentifiable__data_begin'+0x974 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[4](identifiable.o))
- ld: warning: pointer not aligned in '_camlNumbers__data_begin'+0x27C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[5](numbers.o))
- ld: warning: pointer not aligned in '_camlArg_helper__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[6](arg_helper.o))
- ld: warning: pointer not aligned in '_camlClflags__data_begin'+0x9BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[7](clflags.o))
- ld: warning: pointer not aligned in '_camlTbl__data_begin'+0x554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[8](tbl.o))
- ld: warning: pointer not aligned in '_camlTimings__data_begin'+0xDC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[9](timings.o))
- ld: warning: pointer not aligned in '_camlCcomp__data_begin'+0x95C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[11](ccomp.o))
- ld: warning: pointer not aligned in '_camlWarnings__data_begin'+0x4744 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[12](warnings.o))
- ld: warning: pointer not aligned in '_camlConsistbl__data_begin'+0x18C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[13](consistbl.o))
- ld: warning: pointer not aligned in '_camlStrongly_connected_components__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[14](strongly_connected_components.o))
- ld: warning: pointer not aligned in '_camlLocation__data_begin'+0x1554 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[15](location.o))
- ld: warning: pointer not aligned in '_camlLongident__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[16](longident.o))
- ld: warning: pointer not aligned in '_camlDocstrings__data_begin'+0x724 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[17](docstrings.o))
- ld: warning: pointer not aligned in '_camlAst_helper__data_begin'+0x22D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[18](ast_helper.o))
- ld: warning: pointer not aligned in '_camlSyntaxerr__data_begin'+0x904 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[19](syntaxerr.o))
- ld: warning: pointer not aligned in '_camlParser__data_begin'+0x1E43C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[20](parser.o))
- ld: warning: pointer not aligned in '_camlLexer__data_begin'+0x7FBC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[21](lexer.o))
- ld: warning: pointer not aligned in '_camlParse__data_begin'+0x10C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[22](parse.o))
- ld: warning: pointer not aligned in '_camlPrintast__data_begin'+0x785C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[23](printast.o))
- ld: warning: pointer not aligned in '_camlPprintast__data_begin'+0x143FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[24](pprintast.o))
- ld: warning: pointer not aligned in '_camlAst_mapper__data_begin'+0x16D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[25](ast_mapper.o))
- ld: warning: pointer not aligned in '_camlAst_iterator__data_begin'+0x794 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[26](ast_iterator.o))
- ld: warning: pointer not aligned in '_camlAttr_helper__data_begin'+0x26C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[27](attr_helper.o))
- ld: warning: pointer not aligned in '_camlBuiltin_attributes__data_begin'+0x7AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[28](builtin_attributes.o))
- ld: warning: pointer not aligned in '_camlAst_invariants__data_begin'+0x49C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[29](ast_invariants.o))
- ld: warning: pointer not aligned in '_camlDepend__data_begin'+0x894 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[30](depend.o))
- ld: warning: pointer not aligned in '_camlIdent__data_begin'+0x7E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[31](ident.o))
- ld: warning: pointer not aligned in '_camlPath__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[32](path.o))
- ld: warning: pointer not aligned in '_camlPrimitive__data_begin'+0x87C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[33](primitive.o))
- ld: warning: pointer not aligned in '_camlTypes__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[34](types.o))
- ld: warning: pointer not aligned in '_camlBtype__data_begin'+0x10DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[35](btype.o))
- ld: warning: pointer not aligned in '_camlOprint__data_begin'+0x7BDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[36](oprint.o))
- ld: warning: pointer not aligned in '_camlSubst__data_begin'+0x6E4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[37](subst.o))
- ld: warning: pointer not aligned in '_camlPredef__data_begin'+0x6BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[38](predef.o))
- ld: warning: pointer not aligned in '_camlDatarepr__data_begin'+0x2F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[39](datarepr.o))
- ld: warning: pointer not aligned in '_camlCmi_format__data_begin'+0x4AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[40](cmi_format.o))
- ld: warning: pointer not aligned in '_camlEnv__data_begin'+0x41AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[41](env.o))
- ld: warning: pointer not aligned in '_camlTypedtree__data_begin'+0x1FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[42](typedtree.o))
- ld: warning: pointer not aligned in '_camlPrinttyped__data_begin'+0x72DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[43](printtyped.o))
- ld: warning: pointer not aligned in '_camlCtype__data_begin'+0x3B8C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[44](ctype.o))
- ld: warning: pointer not aligned in '_camlPrinttyp__data_begin'+0x6AC4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[45](printtyp.o))
- ld: warning: pointer not aligned in '_camlIncludeclass__data_begin'+0x15A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[46](includeclass.o))
- ld: warning: pointer not aligned in '_camlMtype__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[47](mtype.o))
- ld: warning: pointer not aligned in '_camlEnvaux__data_begin'+0x294 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[48](envaux.o))
- ld: warning: pointer not aligned in '_camlIncludecore__data_begin'+0xE34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[49](includecore.o))
- ld: warning: pointer not aligned in '_camlTypedtreeIter__data_begin'+0x76C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[50](typedtreeIter.o))
- ld: warning: pointer not aligned in '_camlTypedtreeMap__data_begin'+0x6A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[51](typedtreeMap.o))
- ld: warning: pointer not aligned in '_camlTast_mapper__data_begin'+0x754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[52](tast_mapper.o))
- ld: warning: pointer not aligned in '_camlCmt_format__data_begin'+0x2DC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[53](cmt_format.o))
- ld: warning: pointer not aligned in '_camlUntypeast__data_begin'+0xA2C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[54](untypeast.o))
- ld: warning: pointer not aligned in '_camlIncludemod__data_begin'+0x393C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[55](includemod.o))
- ld: warning: pointer not aligned in '_camlTypetexp__data_begin'+0x2A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[56](typetexp.o))
- ld: warning: pointer not aligned in '_camlParmatch__data_begin'+0x3E0C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[57](parmatch.o))
- ld: warning: pointer not aligned in '_camlStypes__data_begin'+0x39C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[58](stypes.o))
- ld: warning: pointer not aligned in '_camlTypedecl__data_begin'+0x5A84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[59](typedecl.o))
- ld: warning: pointer not aligned in '_camlTypecore__data_begin'+0x8544 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[60](typecore.o))
- ld: warning: pointer not aligned in '_camlTypeclass__data_begin'+0x45A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[61](typeclass.o))
- ld: warning: pointer not aligned in '_camlTypemod__data_begin'+0x355C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[62](typemod.o))
- ld: warning: pointer not aligned in '_camlLambda__data_begin'+0x6AC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[63](lambda.o))
- ld: warning: pointer not aligned in '_camlPrintlambda__data_begin'+0x7F6C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[64](printlambda.o))
- ld: warning: pointer not aligned in '_camlTypeopt__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[65](typeopt.o))
- ld: warning: pointer not aligned in '_camlSwitch__data_begin'+0x4FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[66](switch.o))
- ld: warning: pointer not aligned in '_camlMatching__data_begin'+0x40BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[67](matching.o))
- ld: warning: pointer not aligned in '_camlTranslobj__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[68](translobj.o))
- ld: warning: pointer not aligned in '_camlTranslattribute__data_begin'+0x484 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[69](translattribute.o))
- ld: warning: pointer not aligned in '_camlTranslcore__data_begin'+0x571C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[70](translcore.o))
- ld: warning: pointer not aligned in '_camlTranslclass__data_begin'+0x11BC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[71](translclass.o))
- ld: warning: pointer not aligned in '_camlTranslmod__data_begin'+0x1064 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[72](translmod.o))
- ld: warning: pointer not aligned in '_camlSimplif__data_begin'+0x394 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[73](simplif.o))
- ld: warning: pointer not aligned in '_camlRuntimedef__data_begin'+0x3644 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[74](runtimedef.o))
- ld: warning: pointer not aligned in '_camlPparse__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[75](pparse.o))
- ld: warning: pointer not aligned in '_camlMain_args__data_begin'+0x558C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[76](main_args.o))
- ld: warning: pointer not aligned in '_camlCompenv__data_begin'+0x1674 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[77](compenv.o))
- ld: warning: pointer not aligned in '_camlCompmisc__data_begin'+0x144 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/compilerlibs/ocamlcommon.a[78](compmisc.o))
- ld: warning: pointer not aligned in '_camlDynlink__data_begin'+0x774 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/dynlink/dynlink.a[2](dynlink.o))
- ld: warning: pointer not aligned in '_camlStr__data_begin'+0xAE4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/str/str.a[2](str.o))
- ld: warning: pointer not aligned in '_camlUnix__data_begin'+0x2754 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/otherlibs/unix/unix.a[2](unix.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormatBasics__data_begin'+0x94 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[2](camlinternalFormatBasics.o))
- ld: warning: pointer not aligned in '_camlPervasives__data_begin'+0x106C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[3](pervasives.o))
- ld: warning: pointer not aligned in '_camlList__data_begin'+0x86C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[4](list.o))
- ld: warning: pointer not aligned in '_camlChar__data_begin'+0x1B4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[5](char.o))
- ld: warning: pointer not aligned in '_camlBytes__data_begin'+0x84C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[6](bytes.o))
- ld: warning: pointer not aligned in '_camlString__data_begin'+0x68C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[7](string.o))
- ld: warning: pointer not aligned in '_camlSys__data_begin'+0x2CC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[8](sys.o))
- ld: warning: pointer not aligned in '_camlSort__data_begin'+0xDC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[9](sort.o))
- ld: warning: pointer not aligned in '_camlMarshal__data_begin'+0x20C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[10](marshal.o))
- ld: warning: pointer not aligned in '_camlObj__data_begin'+0x454 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[11](obj.o))
- ld: warning: pointer not aligned in '_camlArray__data_begin'+0x58C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[12](array.o))
- ld: warning: pointer not aligned in '_camlInt32__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[13](int32.o))
- ld: warning: pointer not aligned in '_camlInt64__data_begin'+0x1F4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[14](int64.o))
- ld: warning: pointer not aligned in '_camlNativeint__data_begin'+0x1EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[15](nativeint.o))
- ld: warning: pointer not aligned in '_camlLexing__data_begin'+0x384 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[16](lexing.o))
- ld: warning: pointer not aligned in '_camlParsing__data_begin'+0x354 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[17](parsing.o))
- ld: warning: pointer not aligned in '_camlSet__data_begin'+0x3FC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[18](set.o))
- ld: warning: pointer not aligned in '_camlMap__data_begin'+0x42C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[19](map.o))
- ld: warning: pointer not aligned in '_camlStack__data_begin'+0x19C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[20](stack.o))
- ld: warning: pointer not aligned in '_camlQueue__data_begin'+0x23C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[21](queue.o))
- ld: warning: pointer not aligned in '_camlCamlinternalLazy__data_begin'+0xF4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[22](camlinternalLazy.o))
- ld: warning: pointer not aligned in '_camlLazy__data_begin'+0xB4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[23](lazy.o))
- ld: warning: pointer not aligned in '_camlStream__data_begin'+0x5C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[24](stream.o))
- ld: warning: pointer not aligned in '_camlBuffer__data_begin'+0x4A4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[25](buffer.o))
- ld: warning: pointer not aligned in '_camlCamlinternalFormat__data_begin'+0x3114 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[26](camlinternalFormat.o))
- ld: warning: pointer not aligned in '_camlPrintf__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[27](printf.o))
- ld: warning: pointer not aligned in '_camlArg__data_begin'+0xC1C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[28](arg.o))
- ld: warning: pointer not aligned in '_camlPrintexc__data_begin'+0x118C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[29](printexc.o))
- ld: warning: pointer not aligned in '_camlGc__data_begin'+0xA14 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[30](gc.o))
- ld: warning: pointer not aligned in '_camlDigest__data_begin'+0x204 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[31](digest.o))
- ld: warning: pointer not aligned in '_camlRandom__data_begin'+0x6EC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[32](random.o))
- ld: warning: pointer not aligned in '_camlHashtbl__data_begin'+0x64C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[33](hashtbl.o))
- ld: warning: pointer not aligned in '_camlWeak__data_begin'+0x3C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[34](weak.o))
- ld: warning: pointer not aligned in '_camlFormat__data_begin'+0x1474 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[35](format.o))
- ld: warning: pointer not aligned in '_camlUchar__data_begin'+0x4D4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[36](uchar.o))
- ld: warning: pointer not aligned in '_camlScanf__data_begin'+0x1C84 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[37](scanf.o))
- ld: warning: pointer not aligned in '_camlCallback__data_begin'+0x7C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[38](callback.o))
- ld: warning: pointer not aligned in '_camlCamlinternalOO__data_begin'+0xD34 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[39](camlinternalOO.o))
- ld: warning: pointer not aligned in '_camlCamlinternalMod__data_begin'+0x15C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[41](camlinternalMod.o))
- ld: warning: pointer not aligned in '_camlGenlex__data_begin'+0x13C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[42](genlex.o))
- ld: warning: pointer not aligned in '_camlEphemeron__data_begin'+0xA5C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[43](ephemeron.o))
- ld: warning: pointer not aligned in '_camlFilename__data_begin'+0x854 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[44](filename.o))
- ld: warning: pointer not aligned in '_camlComplex__data_begin'+0x2C4 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[45](complex.o))
- ld: warning: pointer not aligned in '_camlMoreLabels__data_begin'+0x3C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[50](moreLabels.o))
- ld: warning: pointer not aligned in '_camlSpacetime__data_begin'+0x184 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/stdlib/stdlib.a[52](spacetime.o))
- /Library/Developer/CommandLineTools/usr/bin/make libopt
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -a -o odoc_info.cmxa -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -nostdlib \
- odoc_config.cmx odoc_messages.cmx odoc_global.cmx odoc_types.cmx odoc_misc.cmx odoc_text_parser.cmx odoc_text_lexer.cmx odoc_text.cmx odoc_name.cmx odoc_parameter.cmx odoc_value.cmx odoc_type.cmx odoc_extension.cmx odoc_exception.cmx odoc_class.cmx odoc_module.cmx odoc_print.cmx odoc_str.cmx odoc_comments_global.cmx odoc_parser.cmx odoc_lexer.cmx odoc_see_lexer.cmx odoc_env.cmx odoc_merge.cmx odoc_sig.cmx odoc_ast.cmx odoc_control.cmx odoc_inherit.cmx odoc_search.cmx odoc_scan.cmx odoc_cross.cmx odoc_comments.cmx odoc_dep.cmx odoc_analyse.cmx odoc_info.cmx
- /Library/Developer/CommandLineTools/usr/bin/make generatorsopt
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -shared -o generators/odoc_todo.cmxs -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats generators/odoc_todo.ml
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0x97C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/generators/odoc_todo.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlOdoc_todo__data_begin'+0x2704 (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/generators/odoc_todo.o)
- ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -shared -o generators/odoc_literate.cmxs -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -absname -w +a-4-9-41-42-44-45-48 -warn-error A -safe-string -strict-sequence -strict-formats generators/odoc_literate.ml
- ld: warning: -undefined suppress is deprecated
- ld: warning: -undefined suppress is deprecated
- ld: warning: -keep_dwarf_unwind is obsolete
- ld: warning: pointer not aligned in '_caml_shared_startup__data_begin'+0x92C (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/generators/odoc_literate.cmxs.startup.o)
- ld: warning: pointer not aligned in '_camlOdoc_literate__data_begin'+0x2FFC (/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml-variants.4.04.0+spacetime/ocamldoc/generators/odoc_literate.o)
-> compiled ocaml-variants.4.04.0+spacetime
-> removed ocaml.4.04.0
-> removed ocaml-config.1
-> removed ocaml-variants.4.04.0+spacetime
Processing 8/12: [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.4.04.0+spacetime)
- if test -d /Users/mac1000/.opam/4.14.2/bin; then : ; \
- else mkdir -p /Users/mac1000/.opam/4.14.2/bin; fi
- if test -d /Users/mac1000/.opam/4.14.2/lib/ocaml; then : ; \
- else mkdir -p /Users/mac1000/.opam/4.14.2/lib/ocaml; fi
- if test -d /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs; then : ; \
- else mkdir -p /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs; fi
- if test -d /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs; then : ; \
- else mkdir -p /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs; fi
- if test -d /Users/mac1000/.opam/4.14.2/man/man1; then : ; \
- else mkdir -p /Users/mac1000/.opam/4.14.2/man/man1; fi
- cp VERSION /Users/mac1000/.opam/4.14.2/lib/ocaml/
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml; rm -f \
- dllbigarray.so dllnums.so dllthreads.so \
- dllunix.so dllgraphics.so dllstr.so
- cd byterun; /Library/Developer/CommandLineTools/usr/bin/make install
- cp ../boot/ocamlrun "/Users/mac1000/.opam/4.14.2/bin/ocamlrun"
- cp libcamlrun.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/libcamlrun.a"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib libcamlrun.a
- if test -d "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml"; then : ; \
- else mkdir "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml"; fi
- for i in caml/*.h; do \
- sed -f ../tools/cleanup-header $i \
- > "/Users/mac1000/.opam/4.14.2/lib/ocaml/$i"; \
- done
- cp ld.conf "/Users/mac1000/.opam/4.14.2/lib/ocaml/ld.conf"
- cp ocamlrund "/Users/mac1000/.opam/4.14.2/bin/ocamlrund"
- cp libcamlrund.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/libcamlrund.a"
- cp libcamlrun_shared.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/libcamlrun_shared.so"
- cp libcamlrun_pic.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/libcamlrun_pic.a"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib libcamlrun_pic.a
- cp ocamlc /Users/mac1000/.opam/4.14.2/bin/ocamlc.byte
- cp ocaml /Users/mac1000/.opam/4.14.2/bin/ocaml
- cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make install
- cp stdlib.cma std_exit.cmo *.cmi *.cmt *.cmti *.mli *.ml \
- camlheader_ur \
- "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- cp target_camlheader "/Users/mac1000/.opam/4.14.2/lib/ocaml/camlheader"
- cp target_camlheaderd /Users/mac1000/.opam/4.14.2/lib/ocaml
- cp lex/ocamllex /Users/mac1000/.opam/4.14.2/bin/ocamllex.byte
- cp boot/ocamlyacc /Users/mac1000/.opam/4.14.2/bin/ocamlyacc
- cp utils/*.cmi utils/*.cmt utils/*.cmti \
- parsing/*.cmi parsing/*.cmt parsing/*.cmti \
- typing/*.cmi typing/*.cmt typing/*.cmti \
- bytecomp/*.cmi bytecomp/*.cmt bytecomp/*.cmti \
- driver/*.cmi driver/*.cmt driver/*.cmti \
- toplevel/*.cmi toplevel/*.cmt toplevel/*.cmti /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- cp compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma \
- compilerlibs/ocamltoplevel.cma driver/main.cmo toplevel/topstart.cmo \
- /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- cp expunge /Users/mac1000/.opam/4.14.2/lib/ocaml/expunge
- cp toplevel/topdirs.cmi /Users/mac1000/.opam/4.14.2/lib/ocaml
- cd tools; /Library/Developer/CommandLineTools/usr/bin/make install
- cp -- profiling.cmi profiling.cmo "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- for i in ocamldep ocamlprof ocamlcp ocamloptp ocamlmklib ocamlmktop ocamlobjinfo; \
- do \
- cp -- "$i" "/Users/mac1000/.opam/4.14.2/bin/$i.byte" && \
- if test -f "$i".opt; then \
- cp -- "$i.opt" "/Users/mac1000/.opam/4.14.2/bin/$i.opt" && \
- (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
- cp objinfo_helper "/Users/mac1000/.opam/4.14.2/lib/ocaml/objinfo_helper"
- cd man; /Library/Developer/CommandLineTools/usr/bin/make install
- for i in *.m; do cp $i /Users/mac1000/.opam/4.14.2/man/man1/`basename $i .m`.1; done
- echo '.so man1/ocamlc.1' \
- > /Users/mac1000/.opam/4.14.2/man/man1/ocamlc.opt.1
- echo '.so man1/ocamlopt.1' \
- > /Users/mac1000/.opam/4.14.2/man/man1/ocamlopt.opt.1
- echo '.so man1/ocamlcp.1' \
- > /Users/mac1000/.opam/4.14.2/man/man1/ocamloptp.1
- for i in unix str num dynlink bigarray raw_spacetime_lib systhreads threads graph; do \
- (cd otherlibs/$i; /Library/Developer/CommandLineTools/usr/bin/make install) || exit $?; \
- done
- if test -f dllunix.so; then \
- cp dllunix.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs/"; fi
- cp libunix.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib libunix.a
- cp unix.cma unix.cmi unixLabels.cmi unix.mli unixLabels.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- if test -n "unixsupport.h socketaddr.h"; then \
- cp unixsupport.h socketaddr.h "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; fi
- if test -f dllcamlstr.so; then \
- cp dllcamlstr.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs/"; fi
- cp libcamlstr.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib libcamlstr.a
- cp str.cma str.cmi str.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- if test -n ""; then \
- cp "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; fi
- Makefile:19: warning: overriding commands for target `depend'
- Makefile.shared:34: warning: ignoring old commands for target `depend'
- if test -f dllnums.so; then \
- cp dllnums.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs/"; fi
- cp libnums.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib libnums.a
- cp nums.cma big_int.cmi nat.cmi num.cmi ratio.cmi arith_status.cmi big_int.mli nat.mli num.mli ratio.mli arith_status.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- if test -n ""; then \
- cp "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; fi
- cp dynlink.cmi dynlink.cma dynlink.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- cp extract_crc "/Users/mac1000/.opam/4.14.2/lib/ocaml/extract_crc"
- if test -f dllbigarray.so; then \
- cp dllbigarray.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs/"; fi
- cp libbigarray.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib libbigarray.a
- cp bigarray.cma bigarray.cmi bigarray.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- if test -n "bigarray.h"; then \
- cp bigarray.h "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; fi
- cp raw_spacetime_lib.cma raw_spacetime_lib.cmi raw_spacetime_lib.mli /Users/mac1000/.opam/4.14.2/lib/ocaml
- if test -f dllthreads.so; then \
- cp dllthreads.so /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs/dllthreads.so; fi
- cp libthreads.a /Users/mac1000/.opam/4.14.2/lib/ocaml/libthreads.a
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml; ranlib libthreads.a
- if test -d /Users/mac1000/.opam/4.14.2/lib/ocaml/threads; then :; \
- else mkdir /Users/mac1000/.opam/4.14.2/lib/ocaml/threads; fi
- cp thread.cmi mutex.cmi condition.cmi event.cmi threadUnix.cmi threads.cma /Users/mac1000/.opam/4.14.2/lib/ocaml/threads
- rm -f /Users/mac1000/.opam/4.14.2/lib/ocaml/threads/stdlib.cma
- cp thread.mli mutex.mli condition.mli event.mli threadUnix.mli \
- /Users/mac1000/.opam/4.14.2/lib/ocaml
- cp threads.h /Users/mac1000/.opam/4.14.2/lib/ocaml/caml/threads.h
- if test -f dllvmthreads.so; then \
- cp dllvmthreads.so /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs/.; \
- fi
- mkdir -p /Users/mac1000/.opam/4.14.2/lib/ocaml/vmthreads
- cp libvmthreads.a /Users/mac1000/.opam/4.14.2/lib/ocaml/vmthreads/libvmthreads.a
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml/vmthreads; ranlib libvmthreads.a
- cp thread.cmi mutex.cmi condition.cmi event.cmi threadUnix.cmi \
- threads.cma stdlib.cma unix.cma /Users/mac1000/.opam/4.14.2/lib/ocaml/vmthreads
- cp thread.mli mutex.mli condition.mli event.mli threadUnix.mli \
- /Users/mac1000/.opam/4.14.2/lib/ocaml/vmthreads
- if test -f dllgraphics.so; then \
- cp dllgraphics.so "/Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs/"; fi
- cp libgraphics.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib libgraphics.a
- cp graphics.cma graphics.cmi graphicsX11.cmi graphics.mli graphicsX11.mli "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- if test -n ""; then \
- cp "/Users/mac1000/.opam/4.14.2/lib/ocaml/caml/"; fi
- if test -n "ocamldoc"; then (cd ocamldoc; /Library/Developer/CommandLineTools/usr/bin/make install); fi
- if test -d "/Users/mac1000/.opam/4.14.2/bin"; then : ; else mkdir -p "/Users/mac1000/.opam/4.14.2/bin"; fi
- if test -d "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"; then : ; else mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"; fi
- if test -d "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc/custom"; then : ; else mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc/custom"; fi
- cp -f ./ocamldoc "/Users/mac1000/.opam/4.14.2/bin/./ocamldoc"
- cp -f ocamldoc.hva *.cmi odoc_info.cma "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- cp -f odoc_info.mli odoc_info.cmi "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- if test -d "/Users/mac1000/.opam/4.14.2/man/man3"; then : ; else mkdir -p "/Users/mac1000/.opam/4.14.2/man/man3"; fi
- if test -d stdlib_man; then cp -f stdlib_man/* "/Users/mac1000/.opam/4.14.2/man/man3"; else : ; fi
- if test -n "ocamldebugger"; then (cd debugger; /Library/Developer/CommandLineTools/usr/bin/make install); fi
- cp ocamldebug "/Users/mac1000/.opam/4.14.2/bin/ocamldebug"
- cp config/Makefile /Users/mac1000/.opam/4.14.2/lib/ocaml/Makefile.config
- 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; \
- fi
- cd asmrun; /Library/Developer/CommandLineTools/usr/bin/make install
- cp libasmrun.a /Users/mac1000/.opam/4.14.2/lib/ocaml/libasmrun.a
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml; ranlib libasmrun.a
- cp libasmrund.a /Users/mac1000/.opam/4.14.2/lib/ocaml/libasmrund.a
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml; ranlib libasmrund.a
- cp libasmrunp.a /Users/mac1000/.opam/4.14.2/lib/ocaml/libasmrunp.a
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml; ranlib libasmrunp.a
- cp libasmrun_pic.a /Users/mac1000/.opam/4.14.2/lib/ocaml/libasmrun_pic.a
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml; ranlib libasmrunp.a
- cp libasmrun_shared.so /Users/mac1000/.opam/4.14.2/lib/ocaml/libasmrun_shared.so
- cp ocamlopt /Users/mac1000/.opam/4.14.2/bin/ocamlopt.byte
- cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make installopt
- cp stdlib.cmxa stdlib.a std_exit.o *.cmx "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib stdlib.a
- cp stdlib.p.cmxa stdlib.p.a std_exit.p.cmx std_exit.p.o \
- "/Users/mac1000/.opam/4.14.2/lib/ocaml"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib stdlib.p.a
- cp middle_end/*.cmi middle_end/*.cmt middle_end/*.cmti \
- /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- cp middle_end/base_types/*.cmi middle_end/base_types/*.cmt \
- middle_end/base_types/*.cmti /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- cp asmcomp/*.cmi asmcomp/*.cmt asmcomp/*.cmti /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- cp compilerlibs/ocamloptcomp.cma driver/optmain.cmo /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- if test -n "ocamldoc"; then (cd ocamldoc; /Library/Developer/CommandLineTools/usr/bin/make installopt); \
- else :; fi
- if test -f ./ocamldoc.opt; then /Library/Developer/CommandLineTools/usr/bin/make installopt_really ; fi
- if test -d "/Users/mac1000/.opam/4.14.2/bin"; then : ; else mkdir -p "/Users/mac1000/.opam/4.14.2/bin"; fi
- if test -d "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"; then : ; else mkdir -p "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"; fi
- cp -f ./ocamldoc.opt "/Users/mac1000/.opam/4.14.2/bin/./ocamldoc.opt"
- cp -f ocamldoc.hva *.cmx odoc_info.a odoc_info.cmxa "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- cp -f odoc_info.mli odoc_info.cmi "/Users/mac1000/.opam/4.14.2/lib/ocaml/ocamldoc"
- for i in unix str num dynlink bigarray raw_spacetime_lib systhreads threads graph; \
- do (cd otherlibs/$i; /Library/Developer/CommandLineTools/usr/bin/make installopt) || exit $?; done
- cp unix.cmx unixLabels.cmx unix.cmxa unix.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib unix.a
- if test -f unix.cmxs; then \
- cp unix.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/"; fi
- cp str.cmx str.cmxa str.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib str.a
- if test -f str.cmxs; then \
- cp str.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/"; fi
- Makefile:19: warning: overriding commands for target `depend'
- Makefile.shared:34: warning: ignoring old commands for target `depend'
- cp int_misc.cmx nat.cmx big_int.cmx arith_flags.cmx ratio.cmx num.cmx arith_status.cmx nums.cmxa nums.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib nums.a
- if test -f nums.cmxs; then \
- cp nums.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/"; fi
- if true; then \
- cp dynlink.cmx dynlink.cmxa dynlink.a "/Users/mac1000/.opam/4.14.2/lib/ocaml" && \
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml" && ranlib dynlink.a; \
- fi
- cp bigarray.cmx bigarray.cmxa bigarray.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib bigarray.a
- if test -f bigarray.cmxs; then \
- cp bigarray.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/"; fi
- cp raw_spacetime_lib.cmx raw_spacetime_lib.cmxa raw_spacetime_lib.a /Users/mac1000/.opam/4.14.2/lib/ocaml/
- if test -f raw_spacetime_lib.cmxs; then \
- cp raw_spacetime_lib.cmxs /Users/mac1000/.opam/4.14.2/lib/ocaml/; \
- fi
- cp libthreadsnat.a /Users/mac1000/.opam/4.14.2/lib/ocaml/libthreadsnat.a
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml; ranlib libthreadsnat.a
- cp thread.cmx mutex.cmx condition.cmx event.cmx threadUnix.cmx threads.cmxa threads.a \
- /Users/mac1000/.opam/4.14.2/lib/ocaml/threads
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml/threads && ranlib threads.a
- make[2]: Nothing to be done for `installopt'.
- cp graphics.cmx graphicsX11.cmx graphics.cmxa graphics.a "/Users/mac1000/.opam/4.14.2/lib/ocaml/"
- cd "/Users/mac1000/.opam/4.14.2/lib/ocaml"; ranlib graphics.a
- if test -f graphics.cmxs; then \
- cp graphics.cmxs "/Users/mac1000/.opam/4.14.2/lib/ocaml/"; fi
- if test -f ocamlopt.opt ; then /Library/Developer/CommandLineTools/usr/bin/make installoptopt; else \
- cd /Users/mac1000/.opam/4.14.2/bin; ln -sf ocamlopt.byte ocamlopt; fi
- cp ocamlc.opt /Users/mac1000/.opam/4.14.2/bin/ocamlc.opt
- cp ocamlopt.opt /Users/mac1000/.opam/4.14.2/bin/ocamlopt.opt
- cp lex/ocamllex.opt /Users/mac1000/.opam/4.14.2/bin/ocamllex.opt
- cd /Users/mac1000/.opam/4.14.2/bin; \
- ln -sf ocamlc.opt ocamlc; \
- ln -sf ocamlopt.opt ocamlopt; \
- ln -sf ocamllex.opt ocamllex
- cp utils/*.cmx parsing/*.cmx typing/*.cmx bytecomp/*.cmx \
- driver/*.cmx asmcomp/*.cmx /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- cp compilerlibs/ocamlcommon.cmxa compilerlibs/ocamlcommon.a \
- compilerlibs/ocamlbytecomp.cmxa compilerlibs/ocamlbytecomp.a \
- compilerlibs/ocamloptcomp.cmxa compilerlibs/ocamloptcomp.a \
- driver/main.cmx driver/main.o \
- driver/optmain.cmx driver/optmain.o \
- /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs
- if test -f ocamlnat ; then \
- cp ocamlnat /Users/mac1000/.opam/4.14.2/bin/ocamlnat; \
- cp toplevel/opttopdirs.cmi /Users/mac1000/.opam/4.14.2/lib/ocaml; \
- cp compilerlibs/ocamlopttoplevel.cmxa \
- compilerlibs/ocamlopttoplevel.a \
- toplevel/opttopstart.cmx toplevel/opttopstart.o \
- /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs; \
- fi
- cd /Users/mac1000/.opam/4.14.2/lib/ocaml/compiler-libs && ranlib ocamlcommon.a ocamlbytecomp.a \
- ocamloptcomp.a
- cd tools; /Library/Developer/CommandLineTools/usr/bin/make installopt
- cp -- profiling.cmx profiling.o "/Users/mac1000/.opam/4.14.2/lib/ocaml"
-> installed ocaml-variants.4.04.0+spacetime
[ocaml-config: subst] expanding opam variables in gen_ocaml_config.ml.in, generating gen_ocaml_config.ml
-> installed ocaml-config.1
Processing 11/12: [ocaml: ocaml 4.04.0]
+ /Users/mac1000/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "/Users/mac1000/.opam/4.14.2/share/ocaml-config/gen_ocaml_config.ml" "4.04.0" "ocaml" (CWD=/Users/mac1000/.opam/4.14.2/.opam-switch/build/ocaml.4.04.0)
-> compiled ocaml.4.04.0
-> installed ocaml.4.04.0
Done.
<><> ocaml.4.04.0 installed successfully ><><><><><><><><><><><><><><><><><><><>
=> The main opam-repository has archived all packages that are not compatible with OCaml 4.08. If you want to install those packages, you need to add the archive repository: 'opam repository add archive git+https://github.com/ocaml/opam-repository-archive' in this opam switch.
# To update the current shell environment, run: eval $(opam env)
2026-02-24 12:38.37 ---> saved as "35ce1a281c55294693f7e52bb1e281c8433a33bb4b7c948b0f26f046b4d8d3fc"
Job succeeded
2026-02-24 12:38.50: Job succeeded