Build:
  1. 1
  2. 0
2023-03-20 13:29.12: New job: Build using linux-arm64 in
                                [https://github.com/ocaml/opam-repository#master (c03ceac6872a8ff0ebed2c4fa28b0013fb1984e2)]
2023-03-20 13:29.12: Will push staging image to ocurrent/opam-staging:ubuntu-22.04-opam-arm64

Dockerfile:

# syntax=docker/dockerfile:1
# Autogenerated by OCaml-Dockerfile scripts
FROM ubuntu:jammy
LABEL distro_style="apt"
RUN apt-get -y update
RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
RUN git config --global user.email "docker@example.com"
RUN git config --global user.name "Docker"
RUN git clone https://github.com/ocaml/opam /tmp/opam && cd /tmp/opam && cp -P -R -p . ../opam-sources && git checkout 8bc4698fb9caded0fa5c2bf08fe67a34d732451e && env MAKE='make -j' shell/bootstrap-ocaml.sh && make -C src_ext cache-archives
RUN cd /tmp/opam-sources && cp -P -R -p . ../opam-build-2.0 && cd ../opam-build-2.0 && git checkout 7d4a0f2e0fefe748efbd7358775b1a0bd8267544 && ln -s ../opam/src_ext/archives src_ext/archives && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make lib-ext all && mkdir -p /usr/local/bin && cp /tmp/opam-build-2.0/opam /usr/local/bin/opam-2.0 && chmod a+x /usr/local/bin/opam-2.0 && rm -rf /tmp/opam-build-2.0
RUN cd /tmp/opam-sources && cp -P -R -p . ../opam-build-2.1 && cd ../opam-build-2.1 && git checkout 3dd624a69b1757279c0d04a3866d47facbb56771 && ln -s ../opam/src_ext/archives src_ext/archives && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make lib-ext all && mkdir -p /usr/local/bin && cp /tmp/opam-build-2.1/opam /usr/local/bin/opam-2.1 && chmod a+x /usr/local/bin/opam-2.1 && rm -rf /tmp/opam-build-2.1
RUN cd /tmp/opam-sources && cp -P -R -p . ../opam-build-master && cd ../opam-build-master && git checkout 8bc4698fb9caded0fa5c2bf08fe67a34d732451e && ln -s ../opam/src_ext/archives src_ext/archives && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make lib-ext all && mkdir -p /usr/local/bin && cp /tmp/opam-build-master/opam /usr/local/bin/opam-master && chmod a+x /usr/local/bin/opam-master && rm -rf /tmp/opam-build-master
FROM ubuntu:jammy
RUN ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime
COPY <<-EOF /etc/apt/apt.conf.d/mirror-retry
	Acquire::Retries "5";
EOF
RUN apt-get -y update
RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
COPY --from=0 [ "/usr/local/bin/opam-2.0", "/usr/bin/opam-2.0" ]
RUN ln /usr/bin/opam-2.0 /usr/bin/opam
COPY --from=0 [ "/usr/local/bin/opam-2.1", "/usr/bin/opam-2.1" ]
COPY --from=0 [ "/usr/local/bin/opam-master", "/usr/bin/opam-dev" ]
RUN ln /usr/bin/opam-dev /usr/bin/opam-2.2
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
COPY <<-EOF /etc/sudoers.d/opam
	opam ALL=(ALL:ALL) NOPASSWD:ALL
EOF
RUN chmod 440 /etc/sudoers.d/opam
RUN chown root:root /etc/sudoers.d/opam
RUN adduser --uid 1000 --disabled-password --gecos '' opam
RUN passwd -l opam
RUN chown -R opam:opam /home/opam
USER opam
ENV HOME="/home/opam"
WORKDIR /home/opam
RUN mkdir .ssh
RUN chmod 700 .ssh
COPY --chown=opam <<-EOF /home/opam/.opamrc-nosandbox
	wrap-build-commands: []
	wrap-install-commands: []
	wrap-remove-commands: []
	required-tools: []
EOF
COPY --chown=opam <<-EOF /home/opam/opam-sandbox-disable
	#!/bin/sh
	cp ~/.opamrc-nosandbox ~/.opamrc
	echo --- opam sandboxing disabled
EOF
RUN chmod a+x /home/opam/opam-sandbox-disable
RUN sudo mv /home/opam/opam-sandbox-disable /usr/bin/opam-sandbox-disable
COPY --chown=opam <<-EOF /home/opam/.opamrc-sandbox
	wrap-build-commands: ["%{hooks}%/sandbox.sh" "build"]
	wrap-install-commands: ["%{hooks}%/sandbox.sh" "install"]
	wrap-remove-commands: ["%{hooks}%/sandbox.sh" "remove"]
EOF
COPY --chown=opam <<-EOF /home/opam/opam-sandbox-enable
	#!/bin/sh
	cp ~/.opamrc-sandbox ~/.opamrc
	echo --- opam sandboxing enabled
EOF
RUN chmod a+x /home/opam/opam-sandbox-enable
RUN sudo mv /home/opam/opam-sandbox-enable /usr/bin/opam-sandbox-enable
RUN git config --global user.email "docker@example.com"
RUN git config --global user.name "Docker"
COPY --link --chown=opam:opam [ ".", "/home/opam/opam-repository" ]
RUN opam-sandbox-disable
RUN opam init -k local -a /home/opam/opam-repository --bare
RUN rm -rf .opam/repo/default/.git
COPY --link [ "Dockerfile", "/Dockerfile.opam" ]

2023-03-20 13:29.12: Using cache hint "opam-ubuntu-22.04"
2023-03-20 13:29.12: Waiting for resource in pool OCluster
2023-03-20 13:29.13: Waiting for worker…
2023-03-20 13:29.13: Got resource from pool OCluster
Building on okypous.ocamllabs.io
All commits already cached
Updating files:  45% (13242/29396)
Updating files:  46% (13523/29396)
Updating files:  47% (13817/29396)
Updating files:  48% (14111/29396)
Updating files:  49% (14405/29396)
Updating files:  50% (14698/29396)
Updating files:  51% (14992/29396)
Updating files:  52% (15286/29396)
Updating files:  53% (15580/29396)
Updating files:  54% (15874/29396)
Updating files:  55% (16168/29396)
Updating files:  56% (16462/29396)
Updating files:  57% (16756/29396)
Updating files:  58% (17050/29396)
Updating files:  59% (17344/29396)
Updating files:  60% (17638/29396)
Updating files:  61% (17932/29396)
Updating files:  62% (18226/29396)
Updating files:  63% (18520/29396)
Updating files:  64% (18814/29396)
Updating files:  65% (19108/29396)
Updating files:  66% (19402/29396)
Updating files:  67% (19696/29396)
Updating files:  68% (19990/29396)
Updating files:  69% (20284/29396)
Updating files:  70% (20578/29396)
Updating files:  71% (20872/29396)
Updating files:  72% (21166/29396)
Updating files:  73% (21460/29396)
Updating files:  74% (21754/29396)
Updating files:  75% (22047/29396)
Updating files:  76% (22341/29396)
Updating files:  77% (22635/29396)
Updating files:  78% (22929/29396)
Updating files:  79% (23223/29396)
Updating files:  80% (23517/29396)
Updating files:  81% (23811/29396)
Updating files:  82% (24105/29396)
Updating files:  83% (24399/29396)
Updating files:  84% (24693/29396)
Updating files:  85% (24987/29396)
Updating files:  86% (25281/29396)
Updating files:  86% (25307/29396)
Updating files:  87% (25575/29396)
Updating files:  88% (25869/29396)
Updating files:  89% (26163/29396)
Updating files:  90% (26457/29396)
Updating files:  91% (26751/29396)
Updating files:  92% (27045/29396)
Updating files:  93% (27339/29396)
Updating files:  94% (27633/29396)
Updating files:  95% (27927/29396)
Updating files:  96% (28221/29396)
Updating files:  97% (28515/29396)
Updating files:  98% (28809/29396)
Updating files:  99% (29103/29396)
Updating files: 100% (29396/29396)
Updating files: 100% (29396/29396), done.
HEAD is now at c03ceac687 Merge pull request #23538 from seliopou/bigstringaf.0.9.1
#2 [internal] load .dockerignore
#2 sha256:37ca054745fc71f8bf84b278270065a41fb929ce7f0bf80414b2affe156b4001
#2 ...

#1 [internal] load build definition from Dockerfile
#1 sha256:6ca7db8da067cd40ab0d09232398ab512db8f3a013bf549bfe73e2c90dac6f66
#1 transferring dockerfile: 4.50kB 0.0s done
#1 DONE 0.3s

#2 [internal] load .dockerignore
#2 sha256:37ca054745fc71f8bf84b278270065a41fb929ce7f0bf80414b2affe156b4001
#2 transferring context: 2B done
#2 DONE 0.2s

#3 resolve image config for docker.io/docker/dockerfile:1
#3 sha256:5511bf222770ecb09bae16a5e9dc6ddaf6633b05719203c5e2b00644727cd62f
#3 DONE 0.4s

#4 docker-image://docker.io/docker/dockerfile:1@sha256:39b85bbfa7536a5feceb7372a0817649ecb2724562a38360f4d6a7782a409b14
#4 sha256:9a158a4603558c8d1260a1837f34e5dcdc934c3e44e35af38132f4449f9ebf12
#4 CACHED

#5 [internal] load build definition from Dockerfile
#5 sha256:c0e4c342dde1b5456585ac9be7d3d886ee4af64be2a535eb3eb815a4e21b3a09
#5 DONE 0.0s

#6 [internal] load .dockerignore
#6 sha256:76bff6eae2bbfce0cb6aa52160758a9d3752ed2d69903dc5cfdc649e26a6eb64
#6 DONE 0.0s

#7 [internal] load metadata for docker.io/library/ubuntu:jammy
#7 sha256:30360813bf8c3d1a7d9189a852c376b16291c1fd0198aeca7f8cf92327670820
#7 DONE 0.8s

#10 [internal] preparing inline document
#10 sha256:ddffc3c95edf8fb78d2364f4a6c0e5afb08b47697a7740e9fa8ccbd023e22508
#10 DONE 0.3s

#42 [internal] preparing inline document
#42 sha256:7a85b73fff3fa966a8a407294635362c5f10060b2140462116a075be41474646
#42 DONE 0.3s

#40 [internal] preparing inline document
#40 sha256:940dcd8cd5d4366fb38150b279a7286af90ef963ff91f22637a37fffed8d8c64
#40 DONE 0.5s

#48 [internal] preparing inline document
#48 sha256:92cb973a685d1a59955a039f1739d0d3ef5de8c03d9b745a249bd6654875a788
#48 DONE 0.5s

#30 [internal] preparing inline document
#30 sha256:2890c61a15c2e8877833f852a4dfa57a4204718a17bc68b12d6303da66838de8
#30 DONE 0.6s

#46 [internal] preparing inline document
#46 sha256:79275ef22ce852c487f2830b5f5af2c5c52ff7403d289bdeaa0d5cd84c634ab8
#46 DONE 0.7s

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21
#8 sha256:f9040e63d81205424a15d23d0a2c2de05006baa1f2bd01ee19e364fa8c18418e
#8 resolve docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21 0.0s done
#8 sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21 1.13kB / 1.13kB done
#8 sha256:537da24818633b45fcb65e5285a68c3ec1f3db25f5ae5476a7757bc8dfae92a3 424B / 424B done
#8 sha256:bab8ce5c00ca3ef91e0d3eb4c6e6d6ec7cffa9574c447fd8d54a8d96e7c1c80e 2.32kB / 2.32kB done
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 0B / 27.35MB 0.1s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 2.10MB / 27.35MB 0.2s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 7.34MB / 27.35MB 0.3s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 9.44MB / 27.35MB 0.4s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 13.63MB / 27.35MB 0.5s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 23.07MB / 27.35MB 0.7s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 27.35MB / 27.35MB 0.8s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 27.35MB / 27.35MB 0.8s done
#8 extracting sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38
#8 extracting sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 2.2s done
#8 DONE 3.8s

#54 [internal] load build context
#54 sha256:54f75684de3bad87d267fec075af3afd85b1fb2b61edad4a93f17e9b35fbcd19
#54 transferring context: 13.10MB 3.8s
#54 ...

#9 [stage-1  2/36] RUN ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime
#9 sha256:37ad40290f02b6266f4ea41a74b56fc55173ae2e65473e56c916dc3f4235efdc
#9 DONE 3.9s

#54 [internal] load build context
#54 sha256:54f75684de3bad87d267fec075af3afd85b1fb2b61edad4a93f17e9b35fbcd19
#54 ...

#15 [stage-0  2/10] RUN apt-get -y update
#15 sha256:52240e3eeb959ca841bd9c5e732e9a59fa04e06365c08dd1671b7f22ea09874c
#15 3.672 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy InRelease [270 kB]
#15 3.796 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy-updates InRelease [119 kB]
#15 3.796 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy-backports InRelease [107 kB]
#15 3.796 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy-security InRelease [110 kB]
#15 ...

#11 [stage-1  3/36] COPY <<-EOF /etc/apt/apt.conf.d/mirror-retry
#11 sha256:823b9ab9445e1651f901e4c721610481e4b42120ee4f9985056058434374f8ba
#11 DONE 0.3s

#54 [internal] load build context
#54 sha256:54f75684de3bad87d267fec075af3afd85b1fb2b61edad4a93f17e9b35fbcd19
#54 transferring context: 107.29MB 8.9s
#54 ...

#15 [stage-0  2/10] RUN apt-get -y update
#15 sha256:52240e3eeb959ca841bd9c5e732e9a59fa04e06365c08dd1671b7f22ea09874c
#15 5.064 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy/multiverse arm64 Packages [224 kB]
#15 5.151 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages [1758 kB]
#15 5.304 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy/universe arm64 Packages [17.2 MB]
#15 6.197 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy/restricted arm64 Packages [24.2 kB]
#15 6.224 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/multiverse arm64 Packages [14.3 kB]
#15 6.228 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 Packages [1073 kB]
#15 6.332 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy-updates/universe arm64 Packages [997 kB]
#15 6.380 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy-updates/restricted arm64 Packages [384 kB]
#15 6.524 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy-backports/universe arm64 Packages [22.4 kB]
#15 6.525 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy-backports/main arm64 Packages [49.0 kB]
#15 6.528 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy-security/multiverse arm64 Packages [10.2 kB]
#15 6.528 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy-security/universe arm64 Packages [759 kB]
#15 6.608 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 Packages [752 kB]
#15 6.616 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy-security/restricted arm64 Packages [371 kB]
#15 7.012 Fetched 24.3 MB in 3s (7051 kB/s)
#15 7.012 Reading package lists...
#15 DONE 8.8s

#54 [internal] load build context
#54 sha256:54f75684de3bad87d267fec075af3afd85b1fb2b61edad4a93f17e9b35fbcd19
#54 ...

#16 [stage-0  3/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
#16 sha256:f27817c2f5b347dd5e2aff7ba6633d334785937dfd15f34ce253a18e72dffc08
#16 ...

#12 [stage-1  4/36] RUN apt-get -y update
#12 sha256:1dfd95ef79c18eb2f8963c2d894714c6e2061e413e4ab290b8de30226aeb9903
#12 1.387 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy InRelease [270 kB]
#12 1.512 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy-updates InRelease [119 kB]
#12 1.523 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy-backports InRelease [107 kB]
#12 1.533 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy-security InRelease [110 kB]
#12 1.631 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy/multiverse arm64 Packages [224 kB]
#12 1.664 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy/restricted arm64 Packages [24.2 kB]
#12 1.664 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy/universe arm64 Packages [17.2 MB]
#12 2.684 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages [1758 kB]
#12 2.748 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/universe arm64 Packages [997 kB]
#12 2.783 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy-updates/multiverse arm64 Packages [14.3 kB]
#12 2.783 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy-updates/restricted arm64 Packages [384 kB]
#12 2.856 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 Packages [1073 kB]
#12 2.943 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy-backports/universe arm64 Packages [22.4 kB]
#12 2.943 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy-backports/main arm64 Packages [49.0 kB]
#12 2.943 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy-security/universe arm64 Packages [759 kB]
#12 2.979 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy-security/restricted arm64 Packages [371 kB]
#12 2.983 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 Packages [752 kB]
#12 3.036 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy-security/multiverse arm64 Packages [10.2 kB]
#12 3.574 Fetched 24.3 MB in 2s (11.3 MB/s)
#12 3.574 Reading package lists...
#12 DONE 5.6s

#54 [internal] load build context
#54 sha256:54f75684de3bad87d267fec075af3afd85b1fb2b61edad4a93f17e9b35fbcd19
#54 transferring context: 202.92MB 13.9s
#54 ...

#13 [stage-1  5/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
#13 sha256:a38c7d557385e98ac4fd3d69894bb0cf88dfca1d955b3a6c582ddc63e8aa0c24
#13 1.169 Reading package lists...
#13 2.213 Building dependency tree...
#13 2.409 Reading state information...
#13 2.457 Calculating upgrade...
#13 2.805 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#13 DONE 3.1s

#54 [internal] load build context
#54 sha256:54f75684de3bad87d267fec075af3afd85b1fb2b61edad4a93f17e9b35fbcd19
#54 ...

#16 [stage-0  3/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
#16 sha256:f27817c2f5b347dd5e2aff7ba6633d334785937dfd15f34ce253a18e72dffc08
#16 2.046 Reading package lists...
#16 3.078 Building dependency tree...
#16 3.277 Reading state information...
#16 3.317 Calculating upgrade...
#16 3.649 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#16 DONE 4.1s

#54 [internal] load build context
#54 sha256:54f75684de3bad87d267fec075af3afd85b1fb2b61edad4a93f17e9b35fbcd19
#54 transferring context: 232.02MB 18.9s
#54 transferring context: 240.61MB 20.2s done
#54 DONE 21.2s

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:aa2a6bdd90ddd8815ce790c22b8330d44129f03e543b8dccb54209cf21d029b0
#17 2.871 Reading package lists...
#17 3.777 Building dependency tree...
#17 3.986 Reading state information...
#17 4.374 The following additional packages will be installed:
#17 4.374   binutils binutils-aarch64-linux-gnu binutils-common bzip2 ca-certificates
#17 4.374   cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config fonts-dejavu-core g++
#17 4.374   g++-11 gcc gcc-11 gcc-11-base git-man gnupg gnupg-l10n gnupg-utils gpg
#17 4.374   gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm less
#17 4.374   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
#17 4.374   libasan6 libassuan0 libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin
#17 4.374   libc-devtools libc6-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0
#17 4.374   libctf0 libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2
#17 4.374   liberror-perl libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl
#17 4.374   libfontconfig1 libfreetype6 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6
#17 4.375   libgomp1 libhwasan0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8
#17 4.375   libksba8 libldap-2.5-0 libldap-common liblocale-gettext-perl liblsan0 libmd0
#17 4.375   libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16
#17 4.376   libpsl5 libreadline8 librtmp1 libsasl2-2 libsasl2-modules
#17 4.376   libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev libtiff5
#17 4.376   libtirpc-dev libtsan0 libubsan1 libwebp7 libx11-6 libx11-data libxau6
#17 4.376   libxcb1 libxdmcp6 libxext6 libxmuu1 libxpm4 linux-libc-dev lto-disabled-list
#17 4.376   make manpages manpages-dev netbase openssh-client openssl patch perl
#17 4.376   perl-modules-5.34 pinentry-curses publicsuffix readline-common rpcsvc-proto
#17 4.376   ucf xauth xz-utils
#17 4.379 Suggested packages:
#17 4.379   binutils-doc bzip2-doc cpp-doc gcc-11-locales dbus-user-session
#17 4.379   libpam-systemd pinentry-gnome3 tor debian-keyring gcc-11-doc gcc-multilib
#17 4.379   autoconf automake libtool flex bison gdb gcc-doc gettext-base git-daemon-run
#17 4.379   | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs
#17 4.379   git-mediawiki git-svn parcimonie xloadimage scdaemon glibc-doc bzr
#17 4.379   libgd-tools gdbm-l10n libsasl2-modules-gssapi-mit
#17 4.379   | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
#17 4.379   libsasl2-modules-sql libstdc++-11-doc make-doc man-browser keychain
#17 4.379   libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc
#17 4.379   libterm-readline-gnu-perl | libterm-readline-perl-perl
#17 4.379   libtap-harness-archive-perl pinentry-doc readline-doc
#17 4.556 The following NEW packages will be installed:
#17 4.556   binutils binutils-aarch64-linux-gnu binutils-common build-essential bzip2
#17 4.556   ca-certificates cpp cpp-11 curl dirmngr dpkg-dev fakeroot fontconfig-config
#17 4.556   fonts-dejavu-core g++ g++-11 gcc gcc-11 gcc-11-base git git-man gnupg
#17 4.556   gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf
#17 4.557   gpgsm less libalgorithm-diff-perl libalgorithm-diff-xs-perl
#17 4.557   libalgorithm-merge-perl libasan6 libassuan0 libatomic1 libbinutils
#17 4.557   libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev libcap-dev
#17 4.557   libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libcurl3-gnutls
#17 4.557   libcurl4 libdeflate0 libdpkg-perl libedit2 liberror-perl libexpat1
#17 4.557   libfakeroot libfido2-1 libfile-fcntllock-perl libfontconfig1 libfreetype6
#17 4.557   libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libhwasan0 libisl23
#17 4.557   libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libksba8 libldap-2.5-0
#17 4.557   libldap-common liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpfr6
#17 4.557   libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16 libpsl5
#17 4.557   libreadline8 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db
#17 4.557   libsqlite3-0 libssh-4 libstdc++-11-dev libtiff5 libtirpc-dev libtsan0
#17 4.557   libubsan1 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6
#17 4.558   libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages manpages-dev
#17 4.558   netbase openssh-client openssl patch perl perl-modules-5.34 pinentry-curses
#17 4.558   publicsuffix readline-common rpcsvc-proto sudo ucf xauth xz-utils
#17 4.619 0 upgraded, 126 newly installed, 0 to remove and 0 not upgraded.
#17 4.619 Need to get 89.8 MB of archives.
#17 4.619 After this operation, 311 MB of additional disk space will be used.
#17 4.619 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liblocale-gettext-perl arm64 1.07-4build3 [16.9 kB]
#17 4.636 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl-modules-5.34 all 5.34.0-3ubuntu1.1 [2976 kB]
#17 5.115 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm6 arm64 1.23-1 [34.1 kB]
#17 5.115 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm-compat4 arm64 1.23-1 [6294 B]
#17 5.116 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libperl5.34 arm64 5.34.0-3ubuntu1.1 [4723 kB]
#17 5.393 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl arm64 5.34.0-3ubuntu1.1 [232 kB]
#17 5.395 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssl arm64 3.0.2-0ubuntu1.8 [1161 kB]
#17 5.474 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 ca-certificates all 20211016ubuntu0.22.04.1 [144 kB]
#17 5.508 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 less arm64 590-1ubuntu0.22.04.1 [142 kB]
#17 5.512 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmd0 arm64 1.0.4-1build1 [23.8 kB]
#17 5.514 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbsd0 arm64 0.11.5-1 [43.7 kB]
#17 5.544 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libexpat1 arm64 2.4.7-1ubuntu0.2 [76.8 kB]
#17 5.577 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 readline-common all 8.1.2-1 [53.5 kB]
#17 5.582 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libreadline8 arm64 8.1.2-1 [153 kB]
#17 5.604 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsqlite3-0 arm64 3.37.2-2ubuntu0.1 [636 kB]
#17 5.663 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 netbase all 6.3 [12.9 kB]
#17 5.670 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 sudo arm64 1.9.9-1ubuntu2.3 [806 kB]
#17 5.740 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 ucf all 3.0043 [56.1 kB]
#17 5.747 Get:19 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcbor0.8 arm64 0.8.0-2ubuntu1 [24.3 kB]
#17 5.748 Get:20 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libedit2 arm64 3.1-20210910-1build1 [96.0 kB]
#17 5.761 Get:21 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfido2-1 arm64 1.10.0-1 [81.8 kB]
#17 5.788 Get:22 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnghttp2-14 arm64 1.43.0-1build3 [75.4 kB]
#17 5.824 Get:23 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpng16-16 arm64 1.6.37-3build5 [189 kB]
#17 5.867 Get:24 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpsl5 arm64 0.21.0-1.2build2 [58.3 kB]
#17 5.869 Get:25 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxau6 arm64 1:1.0.9-1build5 [7624 B]
#17 5.869 Get:26 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxdmcp6 arm64 1:1.1.3-0ubuntu5 [10.8 kB]
#17 5.870 Get:27 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxcb1 arm64 1.14-3ubuntu3 [49.0 kB]
#17 5.871 Get:28 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-data all 2:1.7.5-1 [119 kB]
#17 5.878 Get:29 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-6 arm64 2:1.7.5-1 [661 kB]
#17 5.898 Get:30 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxext6 arm64 2:1.3.4-1build1 [31.1 kB]
#17 5.898 Get:31 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxmuu1 arm64 2:1.1.3-3 [10.4 kB]
#17 5.899 Get:32 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages all 5.10-1ubuntu1 [1375 kB]
#17 5.938 Get:33 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssh-client arm64 1:8.9p1-3ubuntu0.1 [866 kB]
#17 5.968 Get:34 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 publicsuffix all 20211207.1025-1 [129 kB]
#17 6.012 Get:35 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xauth arm64 1:1.1-1build2 [26.8 kB]
#17 6.035 Get:36 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xz-utils arm64 5.2.5-2ubuntu1 [84.4 kB]
#17 6.041 Get:37 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-common arm64 2.38-4ubuntu2.1 [221 kB]
#17 6.059 Get:38 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libbinutils arm64 2.38-4ubuntu2.1 [825 kB]
#17 6.133 Get:39 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf-nobfd0 arm64 2.38-4ubuntu2.1 [107 kB]
#17 6.136 Get:40 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf0 arm64 2.38-4ubuntu2.1 [103 kB]
#17 6.137 Get:41 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.38-4ubuntu2.1 [3229 kB]
#17 6.214 Get:42 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils arm64 2.38-4ubuntu2.1 [3166 B]
#17 6.214 Get:43 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-dev-bin arm64 2.35-0ubuntu3.1 [19.6 kB]
#17 6.215 Get:44 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 linux-libc-dev arm64 5.15.0-67.74 [1305 kB]
#17 6.266 Get:45 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcrypt-dev arm64 1:4.4.27-1 [119 kB]
#17 6.338 Get:46 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 rpcsvc-proto arm64 1.4.2-0ubuntu6 [65.4 kB]
#17 6.347 Get:47 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtirpc-dev arm64 1.3.2-2ubuntu0.1 [199 kB]
#17 6.366 Get:48 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnsl-dev arm64 1.3.0-2build2 [72.1 kB]
#17 6.370 Get:49 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc6-dev arm64 2.35-0ubuntu3.1 [1544 kB]
#17 6.470 Get:50 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11-base arm64 11.3.0-1ubuntu1~22.04 [20.8 kB]
#17 6.470 Get:51 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libisl23 arm64 0.24-2build1 [689 kB]
#17 6.496 Get:52 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpfr6 arm64 4.1.0-3build3 [245 kB]
#17 6.498 Get:53 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpc3 arm64 1.2.1-2build1 [48.1 kB]
#17 6.499 Get:54 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 cpp-11 arm64 11.3.0-1ubuntu1~22.04 [9709 kB]
#17 6.891 Get:55 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 cpp arm64 4:11.2.0-1ubuntu1 [27.7 kB]
#17 6.909 Get:56 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcc1-0 arm64 12.1.0-2ubuntu1~22.04 [45.0 kB]
#17 6.935 Get:57 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgomp1 arm64 12.1.0-2ubuntu1~22.04 [124 kB]
#17 6.959 Get:58 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libitm1 arm64 12.1.0-2ubuntu1~22.04 [28.4 kB]
#17 6.960 Get:59 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libatomic1 arm64 12.1.0-2ubuntu1~22.04 [10.8 kB]
#17 6.961 Get:60 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libasan6 arm64 11.3.0-1ubuntu1~22.04 [2227 kB]
#17 7.163 Get:61 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 liblsan0 arm64 12.1.0-2ubuntu1~22.04 [1034 kB]
#17 7.211 Get:62 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtsan0 arm64 11.3.0-1ubuntu1~22.04 [2235 kB]
#17 7.371 Get:63 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libubsan1 arm64 12.1.0-2ubuntu1~22.04 [965 kB]
#17 7.416 Get:64 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libhwasan0 arm64 12.1.0-2ubuntu1~22.04 [1119 kB]
#17 7.473 Get:65 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgcc-11-dev arm64 11.3.0-1ubuntu1~22.04 [1151 kB]
#17 7.539 Get:66 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11 arm64 11.3.0-1ubuntu1~22.04 [19.4 MB]
#17 8.047 Get:67 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 gcc arm64 4:11.2.0-1ubuntu1 [5128 B]
#17 8.055 Get:68 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libstdc++-11-dev arm64 11.3.0-1ubuntu1~22.04 [2075 kB]
#17 8.157 Get:69 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 g++-11 arm64 11.3.0-1ubuntu1~22.04 [11.1 MB]
#17 8.404 Get:70 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 g++ arm64 4:11.2.0-1ubuntu1 [1394 B]
#17 8.404 Get:71 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 make arm64 4.3-4.1build1 [177 kB]
#17 8.404 Get:72 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libdpkg-perl all 1.21.1ubuntu2.1 [237 kB]
#17 8.404 Get:73 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 bzip2 arm64 1.0.8-5build1 [34.6 kB]
#17 8.404 Get:74 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 patch arm64 2.7.6-7build2 [105 kB]
#17 8.404 Get:75 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 lto-disabled-list all 24 [12.5 kB]
#17 8.404 Get:76 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dpkg-dev all 1.21.1ubuntu2.1 [922 kB]
#17 8.420 Get:77 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 build-essential arm64 12.9ubuntu3 [4740 B]
#17 8.443 Get:78 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbrotli1 arm64 1.0.9-2build6 [314 kB]
#17 8.529 Get:79 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules-db arm64 2.1.27+dfsg2-3ubuntu1.2 [21.1 kB]
#17 8.529 Get:80 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-2 arm64 2.1.27+dfsg2-3ubuntu1.2 [55.6 kB]
#17 8.529 Get:81 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-2.5-0 arm64 2.5.14+dfsg-0ubuntu0.22.04.1 [181 kB]
#17 8.540 Get:82 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 librtmp1 arm64 2.4+20151223.gitfa8646d.1-2build4 [59.2 kB]
#17 8.540 Get:83 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libssh-4 arm64 0.9.6-2build1 [184 kB]
#17 8.540 Get:84 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 libcurl4 arm64 7.81.0-1ubuntu1.10 [285 kB]
#17 8.550 Get:85 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 curl arm64 7.81.0-1ubuntu1.10 [190 kB]
#17 8.553 Get:86 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libassuan0 arm64 2.5.5-1build1 [36.5 kB]
#17 8.556 Get:87 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgconf arm64 2.2.27-3ubuntu2.1 [92.5 kB]
#17 8.559 Get:88 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libksba8 arm64 1.6.0-2ubuntu0.2 [117 kB]
#17 8.619 Get:89 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnpth0 arm64 1.6-3build2 [8156 B]
#17 8.660 Get:90 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dirmngr arm64 2.2.27-3ubuntu2.1 [289 kB]
#17 8.781 Get:91 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfakeroot arm64 1.28-1ubuntu1 [31.5 kB]
#17 8.781 Get:92 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fakeroot arm64 1.28-1ubuntu1 [60.5 kB]
#17 8.788 Get:93 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
#17 8.859 Get:94 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
#17 8.859 Get:95 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 libcurl3-gnutls arm64 7.81.0-1ubuntu1.10 [279 kB]
#17 8.880 Get:96 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liberror-perl all 0.17029-1 [26.5 kB]
#17 8.883 Get:97 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git-man all 1:2.34.1-1ubuntu1.8 [953 kB]
#17 8.968 Get:98 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git arm64 1:2.34.1-1ubuntu1.8 [3162 kB]
#17 9.263 Get:99 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-l10n all 2.2.27-3ubuntu2.1 [54.4 kB]
#17 9.276 Get:100 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-utils arm64 2.2.27-3ubuntu2.1 [304 kB]
#17 9.328 Get:101 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg arm64 2.2.27-3ubuntu2.1 [506 kB]
#17 9.348 Get:102 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 pinentry-curses arm64 1.1.1-1build2 [33.5 kB]
#17 9.348 Get:103 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-agent arm64 2.2.27-3ubuntu2.1 [204 kB]
#17 9.372 Get:104 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-client arm64 2.2.27-3ubuntu2.1 [61.4 kB]
#17 9.377 Get:105 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-server arm64 2.2.27-3ubuntu2.1 [56.8 kB]
#17 9.377 Get:106 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgsm arm64 2.2.27-3ubuntu2.1 [192 kB]
#17 9.391 Get:107 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg all 2.2.27-3ubuntu2.1 [315 kB]
#17 9.484 Get:108 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
#17 9.484 Get:109 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-xs-perl arm64 0.04-6build3 [11.7 kB]
#17 9.484 Get:110 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
#17 9.503 Get:111 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libfreetype6 arm64 2.11.1+dfsg-1ubuntu0.1 [383 kB]
#17 9.562 Get:112 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfontconfig1 arm64 2.13.1-4.2ubuntu5 [135 kB]
#17 9.571 Get:113 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg-turbo8 arm64 2.1.2-0ubuntu1 [129 kB]
#17 9.571 Get:114 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg8 arm64 8c-2ubuntu10 [2264 B]
#17 9.571 Get:115 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libdeflate0 arm64 1.10-2 [69.1 kB]
#17 9.571 Get:116 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libjbig0 arm64 2.1-3.1ubuntu0.22.04.1 [29.1 kB]
#17 9.571 Get:117 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libwebp7 arm64 1.2.2-2 [192 kB]
#17 9.579 Get:118 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtiff5 arm64 4.3.0-6ubuntu0.4 [180 kB]
#17 9.580 Get:119 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libxpm4 arm64 1:3.5.12-1ubuntu0.22.04.1 [35.3 kB]
#17 9.583 Get:120 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgd3 arm64 2.3.0-2ubuntu2 [126 kB]
#17 9.587 Get:121 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-devtools arm64 2.35-0ubuntu3.1 [27.6 kB]
#17 9.731 Get:122 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcap-dev arm64 1:2.44-1build3 [40.2 kB]
#17 9.772 Get:123 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfile-fcntllock-perl arm64 0.22-3build7 [33.7 kB]
#17 9.781 Get:124 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-common all 2.5.14+dfsg-0ubuntu0.22.04.1 [15.9 kB]
#17 9.799 Get:125 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules arm64 2.1.27+dfsg2-3ubuntu1.2 [68.4 kB]
#17 9.828 Get:126 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages-dev all 5.10-1ubuntu1 [2309 kB]
#17 ...

#14 [stage-1  6/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
#14 sha256:a8ae30d2a784d075ecc5cf19dc50c3bb664056e2f02b54e3ad85dd92af04bb6f
#14 2.872 Reading package lists...
#14 3.779 Building dependency tree...
#14 3.976 Reading state information...
#14 4.351 The following additional packages will be installed:
#14 4.351   binutils binutils-aarch64-linux-gnu binutils-common bzip2 ca-certificates
#14 4.351   cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config fonts-dejavu-core g++
#14 4.351   g++-11 gcc gcc-11 gcc-11-base git-man gnupg gnupg-l10n gnupg-utils gpg
#14 4.351   gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm less
#14 4.351   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
#14 4.351   libasan6 libassuan0 libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin
#14 4.351   libc-devtools libc6-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0
#14 4.351   libctf0 libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2
#14 4.351   liberror-perl libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl
#14 4.351   libfontconfig1 libfreetype6 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6
#14 4.351   libgomp1 libhwasan0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8
#14 4.351   libksba8 libldap-2.5-0 libldap-common liblocale-gettext-perl liblsan0 libmd0
#14 4.351   libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16
#14 4.351   libpopt0 libpsl5 libpthread-stubs0-dev libreadline8 librtmp1 libsasl2-2
#14 4.351   libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev
#14 4.351   libtiff5 libtirpc-dev libtsan0 libubsan1 libwebp7 libx11-6 libx11-data
#14 4.351   libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext6
#14 4.351   libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages manpages-dev
#14 4.351   netbase openssh-client openssl patch perl perl-modules-5.34 pinentry-curses
#14 4.351   publicsuffix readline-common rpcsvc-proto ucf x11proto-dev xauth
#14 4.351   xorg-sgml-doctools xtrans-dev xz-utils
#14 4.355 Suggested packages:
#14 4.355   binutils-doc bzip2-doc cpp-doc gcc-11-locales dbus-user-session
#14 4.355   libpam-systemd pinentry-gnome3 tor debian-keyring gcc-11-doc gcc-multilib
#14 4.355   autoconf automake libtool flex bison gdb gcc-doc gettext-base git-daemon-run
#14 4.355   | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs
#14 4.355   git-mediawiki git-svn parcimonie xloadimage scdaemon glibc-doc bzr
#14 4.355   libgd-tools gdbm-l10n libsasl2-modules-gssapi-mit
#14 4.355   | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
#14 4.355   libsasl2-modules-sql libstdc++-11-doc libx11-doc libxcb-doc make-doc
#14 4.355   man-browser hunspell keychain libpam-ssh monkeysphere ssh-askpass ed
#14 4.355   diffutils-doc perl-doc libterm-readline-gnu-perl
#14 4.355   | libterm-readline-perl-perl libtap-harness-archive-perl pinentry-doc
#14 4.355   readline-doc openssh-server python3 python3-braceexpand zip
#14 4.543 The following NEW packages will be installed:
#14 4.543   binutils binutils-aarch64-linux-gnu binutils-common bubblewrap
#14 4.543   build-essential bzip2 ca-certificates cpp cpp-11 curl dirmngr dpkg-dev
#14 4.543   fakeroot fontconfig-config fonts-dejavu-core g++ g++-11 gcc gcc-11
#14 4.543   gcc-11-base git git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent
#14 4.543   gpg-wks-client gpg-wks-server gpgconf gpgsm less libalgorithm-diff-perl
#14 4.543   libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan6 libassuan0
#14 4.543   libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin libc-devtools
#14 4.544   libc6-dev libcap-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0
#14 4.544   libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2 liberror-perl
#14 4.544   libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl libfontconfig1
#14 4.544   libfreetype6 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1
#14 4.544   libhwasan0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libksba8
#14 4.544   libldap-2.5-0 libldap-common liblocale-gettext-perl liblsan0 libmd0 libmpc3
#14 4.544   libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16 libpopt0
#14 4.544   libpsl5 libpthread-stubs0-dev libreadline8 librtmp1 libsasl2-2
#14 4.544   libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev
#14 4.544   libtiff5 libtirpc-dev libtsan0 libubsan1 libwebp7 libx11-6 libx11-data
#14 4.544   libx11-dev libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6
#14 4.544   libxext6 libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages
#14 4.545   manpages-dev nano netbase openssh-client openssl patch perl
#14 4.545   perl-modules-5.34 pinentry-curses publicsuffix readline-common rpcsvc-proto
#14 4.545   rsync sudo ucf unzip x11proto-dev xauth xorg-sgml-doctools xtrans-dev
#14 4.545   xz-utils
#14 4.621 0 upgraded, 139 newly installed, 0 to remove and 0 not upgraded.
#14 4.621 Need to get 92.3 MB of archives.
#14 4.621 After this operation, 319 MB of additional disk space will be used.
#14 4.621 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liblocale-gettext-perl arm64 1.07-4build3 [16.9 kB]
#14 4.913 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpopt0 arm64 1.18-3build1 [28.0 kB]
#14 4.923 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 rsync arm64 3.2.7-0ubuntu0.22.04.2 [429 kB]
#14 4.977 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl-modules-5.34 all 5.34.0-3ubuntu1.1 [2976 kB]
#14 5.123 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm6 arm64 1.23-1 [34.1 kB]
#14 5.124 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm-compat4 arm64 1.23-1 [6294 B]
#14 5.125 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libperl5.34 arm64 5.34.0-3ubuntu1.1 [4723 kB]
#14 5.207 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl arm64 5.34.0-3ubuntu1.1 [232 kB]
#14 5.207 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssl arm64 3.0.2-0ubuntu1.8 [1161 kB]
#14 5.223 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 ca-certificates all 20211016ubuntu0.22.04.1 [144 kB]
#14 5.225 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 less arm64 590-1ubuntu0.22.04.1 [142 kB]
#14 5.243 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmd0 arm64 1.0.4-1build1 [23.8 kB]
#14 5.259 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbsd0 arm64 0.11.5-1 [43.7 kB]
#14 5.267 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libexpat1 arm64 2.4.7-1ubuntu0.2 [76.8 kB]
#14 5.275 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 readline-common all 8.1.2-1 [53.5 kB]
#14 5.278 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libreadline8 arm64 8.1.2-1 [153 kB]
#14 5.286 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsqlite3-0 arm64 3.37.2-2ubuntu0.1 [636 kB]
#14 5.303 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 netbase all 6.3 [12.9 kB]
#14 5.303 Get:19 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 sudo arm64 1.9.9-1ubuntu2.3 [806 kB]
#14 5.332 Get:20 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 ucf all 3.0043 [56.1 kB]
#14 5.333 Get:21 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcbor0.8 arm64 0.8.0-2ubuntu1 [24.3 kB]
#14 5.333 Get:22 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libedit2 arm64 3.1-20210910-1build1 [96.0 kB]
#14 5.354 Get:23 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfido2-1 arm64 1.10.0-1 [81.8 kB]
#14 5.379 Get:24 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnghttp2-14 arm64 1.43.0-1build3 [75.4 kB]
#14 5.384 Get:25 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpng16-16 arm64 1.6.37-3build5 [189 kB]
#14 5.397 Get:26 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpsl5 arm64 0.21.0-1.2build2 [58.3 kB]
#14 5.399 Get:27 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxau6 arm64 1:1.0.9-1build5 [7624 B]
#14 5.399 Get:28 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxdmcp6 arm64 1:1.1.3-0ubuntu5 [10.8 kB]
#14 5.403 Get:29 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxcb1 arm64 1.14-3ubuntu3 [49.0 kB]
#14 5.403 Get:30 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-data all 2:1.7.5-1 [119 kB]
#14 5.405 Get:31 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-6 arm64 2:1.7.5-1 [661 kB]
#14 5.436 Get:32 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxext6 arm64 2:1.3.4-1build1 [31.1 kB]
#14 5.452 Get:33 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxmuu1 arm64 2:1.1.3-3 [10.4 kB]
#14 5.453 Get:34 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages all 5.10-1ubuntu1 [1375 kB]
#14 5.673 Get:35 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 nano arm64 6.2-1 [277 kB]
#14 5.704 Get:36 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssh-client arm64 1:8.9p1-3ubuntu0.1 [866 kB]
#14 5.835 Get:37 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 publicsuffix all 20211207.1025-1 [129 kB]
#14 5.848 Get:38 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xauth arm64 1:1.1-1build2 [26.8 kB]
#14 5.855 Get:39 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xz-utils arm64 5.2.5-2ubuntu1 [84.4 kB]
#14 5.857 Get:40 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-common arm64 2.38-4ubuntu2.1 [221 kB]
#14 5.896 Get:41 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libbinutils arm64 2.38-4ubuntu2.1 [825 kB]
#14 5.944 Get:42 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf-nobfd0 arm64 2.38-4ubuntu2.1 [107 kB]
#14 5.958 Get:43 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf0 arm64 2.38-4ubuntu2.1 [103 kB]
#14 6.004 Get:44 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.38-4ubuntu2.1 [3229 kB]
#14 6.137 Get:45 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils arm64 2.38-4ubuntu2.1 [3166 B]
#14 6.137 Get:46 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 bubblewrap arm64 0.6.1-1 [45.5 kB]
#14 6.137 Get:47 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-dev-bin arm64 2.35-0ubuntu3.1 [19.6 kB]
#14 6.137 Get:48 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 linux-libc-dev arm64 5.15.0-67.74 [1305 kB]
#14 6.180 Get:49 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcrypt-dev arm64 1:4.4.27-1 [119 kB]
#14 6.180 Get:50 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 rpcsvc-proto arm64 1.4.2-0ubuntu6 [65.4 kB]
#14 6.180 Get:51 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtirpc-dev arm64 1.3.2-2ubuntu0.1 [199 kB]
#14 6.212 Get:52 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnsl-dev arm64 1.3.0-2build2 [72.1 kB]
#14 6.212 Get:53 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc6-dev arm64 2.35-0ubuntu3.1 [1544 kB]
#14 6.231 Get:54 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11-base arm64 11.3.0-1ubuntu1~22.04 [20.8 kB]
#14 6.246 Get:55 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libisl23 arm64 0.24-2build1 [689 kB]
#14 6.309 Get:56 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpfr6 arm64 4.1.0-3build3 [245 kB]
#14 6.313 Get:57 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpc3 arm64 1.2.1-2build1 [48.1 kB]
#14 6.314 Get:58 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 cpp-11 arm64 11.3.0-1ubuntu1~22.04 [9709 kB]
#14 6.557 Get:59 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 cpp arm64 4:11.2.0-1ubuntu1 [27.7 kB]
#14 6.557 Get:60 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcc1-0 arm64 12.1.0-2ubuntu1~22.04 [45.0 kB]
#14 6.557 Get:61 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgomp1 arm64 12.1.0-2ubuntu1~22.04 [124 kB]
#14 6.557 Get:62 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libitm1 arm64 12.1.0-2ubuntu1~22.04 [28.4 kB]
#14 6.557 Get:63 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libatomic1 arm64 12.1.0-2ubuntu1~22.04 [10.8 kB]
#14 6.557 Get:64 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libasan6 arm64 11.3.0-1ubuntu1~22.04 [2227 kB]
#14 6.579 Get:65 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 liblsan0 arm64 12.1.0-2ubuntu1~22.04 [1034 kB]
#14 6.604 Get:66 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtsan0 arm64 11.3.0-1ubuntu1~22.04 [2235 kB]
#14 6.715 Get:67 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libubsan1 arm64 12.1.0-2ubuntu1~22.04 [965 kB]
#14 6.791 Get:68 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libhwasan0 arm64 12.1.0-2ubuntu1~22.04 [1119 kB]
#14 6.791 Get:69 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgcc-11-dev arm64 11.3.0-1ubuntu1~22.04 [1151 kB]
#14 6.808 Get:70 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11 arm64 11.3.0-1ubuntu1~22.04 [19.4 MB]
#14 7.229 Get:71 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 gcc arm64 4:11.2.0-1ubuntu1 [5128 B]
#14 7.229 Get:72 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libstdc++-11-dev arm64 11.3.0-1ubuntu1~22.04 [2075 kB]
#14 7.246 Get:73 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 g++-11 arm64 11.3.0-1ubuntu1~22.04 [11.1 MB]
#14 7.477 Get:74 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 g++ arm64 4:11.2.0-1ubuntu1 [1394 B]
#14 7.477 Get:75 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 make arm64 4.3-4.1build1 [177 kB]
#14 7.478 Get:76 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libdpkg-perl all 1.21.1ubuntu2.1 [237 kB]
#14 7.495 Get:77 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 bzip2 arm64 1.0.8-5build1 [34.6 kB]
#14 7.513 Get:78 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 patch arm64 2.7.6-7build2 [105 kB]
#14 7.527 Get:79 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 lto-disabled-list all 24 [12.5 kB]
#14 7.529 Get:80 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dpkg-dev all 1.21.1ubuntu2.1 [922 kB]
#14 7.571 Get:81 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 build-essential arm64 12.9ubuntu3 [4740 B]
#14 7.572 Get:82 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbrotli1 arm64 1.0.9-2build6 [314 kB]
#14 7.583 Get:83 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules-db arm64 2.1.27+dfsg2-3ubuntu1.2 [21.1 kB]
#14 7.583 Get:84 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-2 arm64 2.1.27+dfsg2-3ubuntu1.2 [55.6 kB]
#14 7.583 Get:85 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-2.5-0 arm64 2.5.14+dfsg-0ubuntu0.22.04.1 [181 kB]
#14 7.584 Get:86 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 librtmp1 arm64 2.4+20151223.gitfa8646d.1-2build4 [59.2 kB]
#14 7.585 Get:87 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libssh-4 arm64 0.9.6-2build1 [184 kB]
#14 7.611 Get:88 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 libcurl4 arm64 7.81.0-1ubuntu1.10 [285 kB]
#14 7.656 Get:89 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 curl arm64 7.81.0-1ubuntu1.10 [190 kB]
#14 7.660 Get:90 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libassuan0 arm64 2.5.5-1build1 [36.5 kB]
#14 7.662 Get:91 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgconf arm64 2.2.27-3ubuntu2.1 [92.5 kB]
#14 7.667 Get:92 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libksba8 arm64 1.6.0-2ubuntu0.2 [117 kB]
#14 7.676 Get:93 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnpth0 arm64 1.6-3build2 [8156 B]
#14 7.676 Get:94 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dirmngr arm64 2.2.27-3ubuntu2.1 [289 kB]
#14 7.680 Get:95 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfakeroot arm64 1.28-1ubuntu1 [31.5 kB]
#14 7.680 Get:96 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fakeroot arm64 1.28-1ubuntu1 [60.5 kB]
#14 7.688 Get:97 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
#14 7.733 Get:98 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
#14 7.764 Get:99 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 libcurl3-gnutls arm64 7.81.0-1ubuntu1.10 [279 kB]
#14 7.819 Get:100 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liberror-perl all 0.17029-1 [26.5 kB]
#14 7.819 Get:101 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git-man all 1:2.34.1-1ubuntu1.8 [953 kB]
#14 7.899 Get:102 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git arm64 1:2.34.1-1ubuntu1.8 [3162 kB]
#14 7.990 Get:103 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-l10n all 2.2.27-3ubuntu2.1 [54.4 kB]
#14 7.990 Get:104 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-utils arm64 2.2.27-3ubuntu2.1 [304 kB]
#14 7.995 Get:105 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg arm64 2.2.27-3ubuntu2.1 [506 kB]
#14 8.000 Get:106 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 pinentry-curses arm64 1.1.1-1build2 [33.5 kB]
#14 8.000 Get:107 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-agent arm64 2.2.27-3ubuntu2.1 [204 kB]
#14 8.016 Get:108 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-client arm64 2.2.27-3ubuntu2.1 [61.4 kB]
#14 8.023 Get:109 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-server arm64 2.2.27-3ubuntu2.1 [56.8 kB]
#14 8.043 Get:110 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgsm arm64 2.2.27-3ubuntu2.1 [192 kB]
#14 8.083 Get:111 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg all 2.2.27-3ubuntu2.1 [315 kB]
#14 8.094 Get:112 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
#14 8.103 Get:113 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-xs-perl arm64 0.04-6build3 [11.7 kB]
#14 8.103 Get:114 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
#14 8.103 Get:115 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libfreetype6 arm64 2.11.1+dfsg-1ubuntu0.1 [383 kB]
#14 8.103 Get:116 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfontconfig1 arm64 2.13.1-4.2ubuntu5 [135 kB]
#14 8.107 Get:117 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg-turbo8 arm64 2.1.2-0ubuntu1 [129 kB]
#14 8.108 Get:118 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg8 arm64 8c-2ubuntu10 [2264 B]
#14 8.111 Get:119 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libdeflate0 arm64 1.10-2 [69.1 kB]
#14 8.111 Get:120 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libjbig0 arm64 2.1-3.1ubuntu0.22.04.1 [29.1 kB]
#14 8.124 Get:121 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libwebp7 arm64 1.2.2-2 [192 kB]
#14 8.171 Get:122 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtiff5 arm64 4.3.0-6ubuntu0.4 [180 kB]
#14 8.217 Get:123 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libxpm4 arm64 1:3.5.12-1ubuntu0.22.04.1 [35.3 kB]
#14 8.217 Get:124 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgd3 arm64 2.3.0-2ubuntu2 [126 kB]
#14 8.217 Get:125 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-devtools arm64 2.35-0ubuntu3.1 [27.6 kB]
#14 8.217 Get:126 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcap-dev arm64 1:2.44-1build3 [40.2 kB]
#14 8.217 Get:127 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfile-fcntllock-perl arm64 0.22-3build7 [33.7 kB]
#14 8.223 Get:128 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-common all 2.5.14+dfsg-0ubuntu0.22.04.1 [15.9 kB]
#14 8.223 Get:129 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpthread-stubs0-dev arm64 0.4-1build2 [5496 B]
#14 8.223 Get:130 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules arm64 2.1.27+dfsg2-3ubuntu1.2 [68.4 kB]
#14 8.223 Get:131 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB]
#14 8.246 Get:132 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 x11proto-dev all 2021.5-1 [604 kB]
#14 8.416 Get:133 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxau-dev arm64 1:1.0.9-1build5 [10.1 kB]
#14 8.416 Get:134 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxdmcp-dev arm64 1:1.1.3-0ubuntu5 [26.4 kB]
#14 8.416 Get:135 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xtrans-dev all 1.4.0-1 [68.9 kB]
#14 8.416 Get:136 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxcb1-dev arm64 1.14-3ubuntu3 [90.6 kB]
#14 8.431 Get:137 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-dev arm64 2:1.7.5-1 [746 kB]
#14 8.468 Get:138 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages-dev all 5.10-1ubuntu1 [2309 kB]
#14 8.508 Get:139 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 unzip arm64 6.0-26ubuntu3.1 [171 kB]
#14 9.347 debconf: delaying package configuration, since apt-utils is not installed
#14 9.443 Fetched 92.3 MB in 4s (23.4 MB/s)
#14 9.612 Selecting previously unselected package liblocale-gettext-perl.
#14 9.612 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 4389 files and directories currently installed.)
#14 9.739 Preparing to unpack .../000-liblocale-gettext-perl_1.07-4build3_arm64.deb ...
#14 9.751 Unpacking liblocale-gettext-perl (1.07-4build3) ...
#14 9.823 Selecting previously unselected package libpopt0:arm64.
#14 9.838 Preparing to unpack .../001-libpopt0_1.18-3build1_arm64.deb ...
#14 9.841 Unpacking libpopt0:arm64 (1.18-3build1) ...
#14 9.915 Selecting previously unselected package rsync.
#14 9.952 Preparing to unpack .../002-rsync_3.2.7-0ubuntu0.22.04.2_arm64.deb ...
#14 9.956 Unpacking rsync (3.2.7-0ubuntu0.22.04.2) ...
#14 10.07 Selecting previously unselected package perl-modules-5.34.
#14 10.09 Preparing to unpack .../003-perl-modules-5.34_5.34.0-3ubuntu1.1_all.deb ...
#14 10.09 Unpacking perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#14 10.47 Selecting previously unselected package libgdbm6:arm64.
#14 10.50 Preparing to unpack .../004-libgdbm6_1.23-1_arm64.deb ...
#14 10.52 Unpacking libgdbm6:arm64 (1.23-1) ...
#14 10.87 Selecting previously unselected package libgdbm-compat4:arm64.
#14 10.88 Preparing to unpack .../005-libgdbm-compat4_1.23-1_arm64.deb ...
#14 11.01 Unpacking libgdbm-compat4:arm64 (1.23-1) ...
#14 11.49 Selecting previously unselected package libperl5.34:arm64.
#14 11.49 Preparing to unpack .../006-libperl5.34_5.34.0-3ubuntu1.1_arm64.deb ...
#14 11.57 Unpacking libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#14 12.14 Selecting previously unselected package perl.
#14 12.14 Preparing to unpack .../007-perl_5.34.0-3ubuntu1.1_arm64.deb ...
#14 12.15 Unpacking perl (5.34.0-3ubuntu1.1) ...
#14 12.18 Selecting previously unselected package openssl.
#14 12.18 Preparing to unpack .../008-openssl_3.0.2-0ubuntu1.8_arm64.deb ...
#14 12.19 Unpacking openssl (3.0.2-0ubuntu1.8) ...
#14 12.23 Selecting previously unselected package ca-certificates.
#14 12.23 Preparing to unpack .../009-ca-certificates_20211016ubuntu0.22.04.1_all.deb ...
#14 12.23 Unpacking ca-certificates (20211016ubuntu0.22.04.1) ...
#14 12.39 Selecting previously unselected package less.
#14 12.40 Preparing to unpack .../010-less_590-1ubuntu0.22.04.1_arm64.deb ...
#14 12.41 Unpacking less (590-1ubuntu0.22.04.1) ...
#14 12.48 Selecting previously unselected package libmd0:arm64.
#14 12.48 Preparing to unpack .../011-libmd0_1.0.4-1build1_arm64.deb ...
#14 12.49 Unpacking libmd0:arm64 (1.0.4-1build1) ...
#14 12.51 Selecting previously unselected package libbsd0:arm64.
#14 12.52 Preparing to unpack .../012-libbsd0_0.11.5-1_arm64.deb ...
#14 12.52 Unpacking libbsd0:arm64 (0.11.5-1) ...
#14 12.54 Selecting previously unselected package libexpat1:arm64.
#14 12.55 Preparing to unpack .../013-libexpat1_2.4.7-1ubuntu0.2_arm64.deb ...
#14 12.55 Unpacking libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#14 12.57 Selecting previously unselected package readline-common.
#14 12.57 Preparing to unpack .../014-readline-common_8.1.2-1_all.deb ...
#14 12.57 Unpacking readline-common (8.1.2-1) ...
#14 12.59 Selecting previously unselected package libreadline8:arm64.
#14 12.59 Preparing to unpack .../015-libreadline8_8.1.2-1_arm64.deb ...
#14 12.59 Unpacking libreadline8:arm64 (8.1.2-1) ...
#14 12.61 Selecting previously unselected package libsqlite3-0:arm64.
#14 12.62 Preparing to unpack .../016-libsqlite3-0_3.37.2-2ubuntu0.1_arm64.deb ...
#14 12.62 Unpacking libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#14 12.68 Selecting previously unselected package netbase.
#14 12.76 Preparing to unpack .../017-netbase_6.3_all.deb ...
#14 12.76 Unpacking netbase (6.3) ...
#14 12.87 Selecting previously unselected package sudo.
#14 12.94 Preparing to unpack .../018-sudo_1.9.9-1ubuntu2.3_arm64.deb ...
#14 12.95 Unpacking sudo (1.9.9-1ubuntu2.3) ...
#14 13.14 Selecting previously unselected package ucf.
#14 13.23 Preparing to unpack .../019-ucf_3.0043_all.deb ...
#14 13.28 Moving old data out of the way
#14 13.29 Unpacking ucf (3.0043) ...
#14 13.36 Selecting previously unselected package libcbor0.8:arm64.
#14 13.38 Preparing to unpack .../020-libcbor0.8_0.8.0-2ubuntu1_arm64.deb ...
#14 13.38 Unpacking libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#14 13.40 Selecting previously unselected package libedit2:arm64.
#14 13.42 Preparing to unpack .../021-libedit2_3.1-20210910-1build1_arm64.deb ...
#14 13.43 Unpacking libedit2:arm64 (3.1-20210910-1build1) ...
#14 13.47 Selecting previously unselected package libfido2-1:arm64.
#14 13.49 Preparing to unpack .../022-libfido2-1_1.10.0-1_arm64.deb ...
#14 13.49 Unpacking libfido2-1:arm64 (1.10.0-1) ...
#14 13.52 Selecting previously unselected package libnghttp2-14:arm64.
#14 13.53 Preparing to unpack .../023-libnghttp2-14_1.43.0-1build3_arm64.deb ...
#14 13.53 Unpacking libnghttp2-14:arm64 (1.43.0-1build3) ...
#14 13.56 Selecting previously unselected package libpng16-16:arm64.
#14 13.57 Preparing to unpack .../024-libpng16-16_1.6.37-3build5_arm64.deb ...
#14 13.57 Unpacking libpng16-16:arm64 (1.6.37-3build5) ...
#14 13.61 Selecting previously unselected package libpsl5:arm64.
#14 13.62 Preparing to unpack .../025-libpsl5_0.21.0-1.2build2_arm64.deb ...
#14 13.63 Unpacking libpsl5:arm64 (0.21.0-1.2build2) ...
#14 13.65 Selecting previously unselected package libxau6:arm64.
#14 13.66 Preparing to unpack .../026-libxau6_1%3a1.0.9-1build5_arm64.deb ...
#14 13.67 Unpacking libxau6:arm64 (1:1.0.9-1build5) ...
#14 13.69 Selecting previously unselected package libxdmcp6:arm64.
#14 13.70 Preparing to unpack .../027-libxdmcp6_1%3a1.1.3-0ubuntu5_arm64.deb ...
#14 13.70 Unpacking libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#14 13.72 Selecting previously unselected package libxcb1:arm64.
#14 13.73 Preparing to unpack .../028-libxcb1_1.14-3ubuntu3_arm64.deb ...
#14 13.73 Unpacking libxcb1:arm64 (1.14-3ubuntu3) ...
#14 13.76 Selecting previously unselected package libx11-data.
#14 13.76 Preparing to unpack .../029-libx11-data_2%3a1.7.5-1_all.deb ...
#14 13.76 Unpacking libx11-data (2:1.7.5-1) ...
#14 ...

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:aa2a6bdd90ddd8815ce790c22b8330d44129f03e543b8dccb54209cf21d029b0
#17 10.97 debconf: delaying package configuration, since apt-utils is not installed
#17 11.10 Fetched 89.8 MB in 6s (15.3 MB/s)
#17 11.30 Selecting previously unselected package liblocale-gettext-perl.
#17 11.30 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 4389 files and directories currently installed.)
#17 11.35 Preparing to unpack .../000-liblocale-gettext-perl_1.07-4build3_arm64.deb ...
#17 11.43 Unpacking liblocale-gettext-perl (1.07-4build3) ...
#17 11.73 Selecting previously unselected package perl-modules-5.34.
#17 11.73 Preparing to unpack .../001-perl-modules-5.34_5.34.0-3ubuntu1.1_all.deb ...
#17 11.89 Unpacking perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#17 12.19 Selecting previously unselected package libgdbm6:arm64.
#17 12.19 Preparing to unpack .../002-libgdbm6_1.23-1_arm64.deb ...
#17 12.19 Unpacking libgdbm6:arm64 (1.23-1) ...
#17 12.33 Selecting previously unselected package libgdbm-compat4:arm64.
#17 12.34 Preparing to unpack .../003-libgdbm-compat4_1.23-1_arm64.deb ...
#17 12.35 Unpacking libgdbm-compat4:arm64 (1.23-1) ...
#17 12.40 Selecting previously unselected package libperl5.34:arm64.
#17 12.41 Preparing to unpack .../004-libperl5.34_5.34.0-3ubuntu1.1_arm64.deb ...
#17 12.41 Unpacking libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#17 12.71 Selecting previously unselected package perl.
#17 12.78 Preparing to unpack .../005-perl_5.34.0-3ubuntu1.1_arm64.deb ...
#17 12.84 Unpacking perl (5.34.0-3ubuntu1.1) ...
#17 12.96 Selecting previously unselected package openssl.
#17 13.04 Preparing to unpack .../006-openssl_3.0.2-0ubuntu1.8_arm64.deb ...
#17 13.05 Unpacking openssl (3.0.2-0ubuntu1.8) ...
#17 13.27 Selecting previously unselected package ca-certificates.
#17 13.29 Preparing to unpack .../007-ca-certificates_20211016ubuntu0.22.04.1_all.deb ...
#17 13.29 Unpacking ca-certificates (20211016ubuntu0.22.04.1) ...
#17 13.38 Selecting previously unselected package less.
#17 13.39 Preparing to unpack .../008-less_590-1ubuntu0.22.04.1_arm64.deb ...
#17 13.40 Unpacking less (590-1ubuntu0.22.04.1) ...
#17 13.44 Selecting previously unselected package libmd0:arm64.
#17 13.45 Preparing to unpack .../009-libmd0_1.0.4-1build1_arm64.deb ...
#17 13.45 Unpacking libmd0:arm64 (1.0.4-1build1) ...
#17 13.47 Selecting previously unselected package libbsd0:arm64.
#17 13.48 Preparing to unpack .../010-libbsd0_0.11.5-1_arm64.deb ...
#17 13.48 Unpacking libbsd0:arm64 (0.11.5-1) ...
#17 13.51 Selecting previously unselected package libexpat1:arm64.
#17 13.53 Preparing to unpack .../011-libexpat1_2.4.7-1ubuntu0.2_arm64.deb ...
#17 13.54 Unpacking libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#17 13.57 Selecting previously unselected package readline-common.
#17 13.58 Preparing to unpack .../012-readline-common_8.1.2-1_all.deb ...
#17 13.58 Unpacking readline-common (8.1.2-1) ...
#17 13.61 Selecting previously unselected package libreadline8:arm64.
#17 13.62 Preparing to unpack .../013-libreadline8_8.1.2-1_arm64.deb ...
#17 13.62 Unpacking libreadline8:arm64 (8.1.2-1) ...
#17 13.65 Selecting previously unselected package libsqlite3-0:arm64.
#17 13.65 Preparing to unpack .../014-libsqlite3-0_3.37.2-2ubuntu0.1_arm64.deb ...
#17 13.65 Unpacking libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#17 13.69 Selecting previously unselected package netbase.
#17 13.70 Preparing to unpack .../015-netbase_6.3_all.deb ...
#17 13.70 Unpacking netbase (6.3) ...
#17 13.73 Selecting previously unselected package sudo.
#17 13.74 Preparing to unpack .../016-sudo_1.9.9-1ubuntu2.3_arm64.deb ...
#17 13.75 Unpacking sudo (1.9.9-1ubuntu2.3) ...
#17 13.84 Selecting previously unselected package ucf.
#17 13.86 Preparing to unpack .../017-ucf_3.0043_all.deb ...
#17 13.86 Moving old data out of the way
#17 13.86 Unpacking ucf (3.0043) ...
#17 13.91 Selecting previously unselected package libcbor0.8:arm64.
#17 13.92 Preparing to unpack .../018-libcbor0.8_0.8.0-2ubuntu1_arm64.deb ...
#17 13.92 Unpacking libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#17 13.94 Selecting previously unselected package libedit2:arm64.
#17 13.95 Preparing to unpack .../019-libedit2_3.1-20210910-1build1_arm64.deb ...
#17 13.95 Unpacking libedit2:arm64 (3.1-20210910-1build1) ...
#17 13.99 Selecting previously unselected package libfido2-1:arm64.
#17 14.00 Preparing to unpack .../020-libfido2-1_1.10.0-1_arm64.deb ...
#17 14.00 Unpacking libfido2-1:arm64 (1.10.0-1) ...
#17 14.03 Selecting previously unselected package libnghttp2-14:arm64.
#17 14.04 Preparing to unpack .../021-libnghttp2-14_1.43.0-1build3_arm64.deb ...
#17 14.04 Unpacking libnghttp2-14:arm64 (1.43.0-1build3) ...
#17 14.07 Selecting previously unselected package libpng16-16:arm64.
#17 14.07 Preparing to unpack .../022-libpng16-16_1.6.37-3build5_arm64.deb ...
#17 14.07 Unpacking libpng16-16:arm64 (1.6.37-3build5) ...
#17 14.10 Selecting previously unselected package libpsl5:arm64.
#17 14.10 Preparing to unpack .../023-libpsl5_0.21.0-1.2build2_arm64.deb ...
#17 14.10 Unpacking libpsl5:arm64 (0.21.0-1.2build2) ...
#17 14.12 Selecting previously unselected package libxau6:arm64.
#17 14.13 Preparing to unpack .../024-libxau6_1%3a1.0.9-1build5_arm64.deb ...
#17 14.13 Unpacking libxau6:arm64 (1:1.0.9-1build5) ...
#17 14.27 Selecting previously unselected package libxdmcp6:arm64.
#17 14.35 Preparing to unpack .../025-libxdmcp6_1%3a1.1.3-0ubuntu5_arm64.deb ...
#17 14.36 Unpacking libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#17 14.47 Selecting previously unselected package libxcb1:arm64.
#17 14.55 Preparing to unpack .../026-libxcb1_1.14-3ubuntu3_arm64.deb ...
#17 14.55 Unpacking libxcb1:arm64 (1.14-3ubuntu3) ...
#17 14.63 Selecting previously unselected package libx11-data.
#17 14.67 Preparing to unpack .../027-libx11-data_2%3a1.7.5-1_all.deb ...
#17 14.67 Unpacking libx11-data (2:1.7.5-1) ...
#17 14.83 Selecting previously unselected package libx11-6:arm64.
#17 14.90 Preparing to unpack .../028-libx11-6_2%3a1.7.5-1_arm64.deb ...
#17 14.91 Unpacking libx11-6:arm64 (2:1.7.5-1) ...
#17 15.02 Selecting previously unselected package libxext6:arm64.
#17 15.09 Preparing to unpack .../029-libxext6_2%3a1.3.4-1build1_arm64.deb ...
#17 15.09 Unpacking libxext6:arm64 (2:1.3.4-1build1) ...
#17 15.21 Selecting previously unselected package libxmuu1:arm64.
#17 15.28 Preparing to unpack .../030-libxmuu1_2%3a1.1.3-3_arm64.deb ...
#17 15.29 Unpacking libxmuu1:arm64 (2:1.1.3-3) ...
#17 15.41 Selecting previously unselected package manpages.
#17 15.47 Preparing to unpack .../031-manpages_5.10-1ubuntu1_all.deb ...
#17 15.47 Unpacking manpages (5.10-1ubuntu1) ...
#17 15.69 Selecting previously unselected package openssh-client.
#17 15.74 Preparing to unpack .../032-openssh-client_1%3a8.9p1-3ubuntu0.1_arm64.deb ...
#17 15.79 Unpacking openssh-client (1:8.9p1-3ubuntu0.1) ...
#17 15.92 Selecting previously unselected package publicsuffix.
#17 15.98 Preparing to unpack .../033-publicsuffix_20211207.1025-1_all.deb ...
#17 15.98 Unpacking publicsuffix (20211207.1025-1) ...
#17 16.06 Selecting previously unselected package xauth.
#17 16.08 Preparing to unpack .../034-xauth_1%3a1.1-1build2_arm64.deb ...
#17 16.09 Unpacking xauth (1:1.1-1build2) ...
#17 16.18 Selecting previously unselected package xz-utils.
#17 16.19 Preparing to unpack .../035-xz-utils_5.2.5-2ubuntu1_arm64.deb ...
#17 16.20 Unpacking xz-utils (5.2.5-2ubuntu1) ...
#17 16.23 Selecting previously unselected package binutils-common:arm64.
#17 16.24 Preparing to unpack .../036-binutils-common_2.38-4ubuntu2.1_arm64.deb ...
#17 16.24 Unpacking binutils-common:arm64 (2.38-4ubuntu2.1) ...
#17 16.27 Selecting previously unselected package libbinutils:arm64.
#17 16.27 Preparing to unpack .../037-libbinutils_2.38-4ubuntu2.1_arm64.deb ...
#17 16.27 Unpacking libbinutils:arm64 (2.38-4ubuntu2.1) ...
#17 16.31 Selecting previously unselected package libctf-nobfd0:arm64.
#17 16.31 Preparing to unpack .../038-libctf-nobfd0_2.38-4ubuntu2.1_arm64.deb ...
#17 16.31 Unpacking libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#17 16.34 Selecting previously unselected package libctf0:arm64.
#17 16.34 Preparing to unpack .../039-libctf0_2.38-4ubuntu2.1_arm64.deb ...
#17 16.34 Unpacking libctf0:arm64 (2.38-4ubuntu2.1) ...
#17 16.37 Selecting previously unselected package binutils-aarch64-linux-gnu.
#17 16.37 Preparing to unpack .../040-binutils-aarch64-linux-gnu_2.38-4ubuntu2.1_arm64.deb ...
#17 16.37 Unpacking binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#17 16.53 Selecting previously unselected package binutils.
#17 16.53 Preparing to unpack .../041-binutils_2.38-4ubuntu2.1_arm64.deb ...
#17 16.55 Unpacking binutils (2.38-4ubuntu2.1) ...
#17 16.62 Selecting previously unselected package libc-dev-bin.
#17 16.62 Preparing to unpack .../042-libc-dev-bin_2.35-0ubuntu3.1_arm64.deb ...
#17 16.63 Unpacking libc-dev-bin (2.35-0ubuntu3.1) ...
#17 16.66 Selecting previously unselected package linux-libc-dev:arm64.
#17 16.66 Preparing to unpack .../043-linux-libc-dev_5.15.0-67.74_arm64.deb ...
#17 16.67 Unpacking linux-libc-dev:arm64 (5.15.0-67.74) ...
#17 16.90 Selecting previously unselected package libcrypt-dev:arm64.
#17 16.90 Preparing to unpack .../044-libcrypt-dev_1%3a4.4.27-1_arm64.deb ...
#17 16.90 Unpacking libcrypt-dev:arm64 (1:4.4.27-1) ...
#17 16.93 Selecting previously unselected package rpcsvc-proto.
#17 16.94 Preparing to unpack .../045-rpcsvc-proto_1.4.2-0ubuntu6_arm64.deb ...
#17 16.94 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
#17 16.95 Selecting previously unselected package libtirpc-dev:arm64.
#17 16.96 Preparing to unpack .../046-libtirpc-dev_1.3.2-2ubuntu0.1_arm64.deb ...
#17 16.96 Unpacking libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#17 16.99 Selecting previously unselected package libnsl-dev:arm64.
#17 16.99 Preparing to unpack .../047-libnsl-dev_1.3.0-2build2_arm64.deb ...
#17 16.99 Unpacking libnsl-dev:arm64 (1.3.0-2build2) ...
#17 17.02 Selecting previously unselected package libc6-dev:arm64.
#17 17.02 Preparing to unpack .../048-libc6-dev_2.35-0ubuntu3.1_arm64.deb ...
#17 17.02 Unpacking libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#17 17.21 Selecting previously unselected package gcc-11-base:arm64.
#17 17.22 Preparing to unpack .../049-gcc-11-base_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 17.22 Unpacking gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 17.24 Selecting previously unselected package libisl23:arm64.
#17 17.25 Preparing to unpack .../050-libisl23_0.24-2build1_arm64.deb ...
#17 17.25 Unpacking libisl23:arm64 (0.24-2build1) ...
#17 17.30 Selecting previously unselected package libmpfr6:arm64.
#17 17.31 Preparing to unpack .../051-libmpfr6_4.1.0-3build3_arm64.deb ...
#17 17.35 Unpacking libmpfr6:arm64 (4.1.0-3build3) ...
#17 17.49 Selecting previously unselected package libmpc3:arm64.
#17 17.49 Preparing to unpack .../052-libmpc3_1.2.1-2build1_arm64.deb ...
#17 17.49 Unpacking libmpc3:arm64 (1.2.1-2build1) ...
#17 17.52 Selecting previously unselected package cpp-11.
#17 17.53 Preparing to unpack .../053-cpp-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 17.53 Unpacking cpp-11 (11.3.0-1ubuntu1~22.04) ...
#17 17.77 Selecting previously unselected package cpp.
#17 17.78 Preparing to unpack .../054-cpp_4%3a11.2.0-1ubuntu1_arm64.deb ...
#17 17.78 Unpacking cpp (4:11.2.0-1ubuntu1) ...
#17 17.80 Selecting previously unselected package libcc1-0:arm64.
#17 17.81 Preparing to unpack .../055-libcc1-0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 17.81 Unpacking libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 17.83 Selecting previously unselected package libgomp1:arm64.
#17 17.84 Preparing to unpack .../056-libgomp1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 17.85 Unpacking libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 17.88 Selecting previously unselected package libitm1:arm64.
#17 17.88 Preparing to unpack .../057-libitm1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 17.88 Unpacking libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 17.91 Selecting previously unselected package libatomic1:arm64.
#17 17.91 Preparing to unpack .../058-libatomic1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 17.92 Unpacking libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 17.94 Selecting previously unselected package libasan6:arm64.
#17 17.94 Preparing to unpack .../059-libasan6_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 17.94 Unpacking libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 18.02 Selecting previously unselected package liblsan0:arm64.
#17 18.03 Preparing to unpack .../060-liblsan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 18.03 Unpacking liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 18.08 Selecting previously unselected package libtsan0:arm64.
#17 18.08 Preparing to unpack .../061-libtsan0_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 18.09 Unpacking libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 18.18 Selecting previously unselected package libubsan1:arm64.
#17 18.18 Preparing to unpack .../062-libubsan1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 18.19 Unpacking libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 18.23 Selecting previously unselected package libhwasan0:arm64.
#17 18.24 Preparing to unpack .../063-libhwasan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 18.24 Unpacking libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 18.29 Selecting previously unselected package libgcc-11-dev:arm64.
#17 18.29 Preparing to unpack .../064-libgcc-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 18.30 Unpacking libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 18.46 Selecting previously unselected package gcc-11.
#17 18.56 Preparing to unpack .../065-gcc-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 18.60 Unpacking gcc-11 (11.3.0-1ubuntu1~22.04) ...
#17 19.37 Selecting previously unselected package gcc.
#17 19.48 Preparing to unpack .../066-gcc_4%3a11.2.0-1ubuntu1_arm64.deb ...
#17 19.49 Unpacking gcc (4:11.2.0-1ubuntu1) ...
#17 19.65 Selecting previously unselected package libstdc++-11-dev:arm64.
#17 19.72 Preparing to unpack .../067-libstdc++-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 19.73 Unpacking libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 20.03 Selecting previously unselected package g++-11.
#17 20.06 Preparing to unpack .../068-g++-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 20.07 Unpacking g++-11 (11.3.0-1ubuntu1~22.04) ...
#17 20.29 Selecting previously unselected package g++.
#17 20.30 Preparing to unpack .../069-g++_4%3a11.2.0-1ubuntu1_arm64.deb ...
#17 20.30 Unpacking g++ (4:11.2.0-1ubuntu1) ...
#17 20.32 Selecting previously unselected package make.
#17 20.32 Preparing to unpack .../070-make_4.3-4.1build1_arm64.deb ...
#17 20.32 Unpacking make (4.3-4.1build1) ...
#17 20.34 Selecting previously unselected package libdpkg-perl.
#17 20.35 Preparing to unpack .../071-libdpkg-perl_1.21.1ubuntu2.1_all.deb ...
#17 20.35 Unpacking libdpkg-perl (1.21.1ubuntu2.1) ...
#17 20.41 Selecting previously unselected package bzip2.
#17 20.42 Preparing to unpack .../072-bzip2_1.0.8-5build1_arm64.deb ...
#17 20.42 Unpacking bzip2 (1.0.8-5build1) ...
#17 20.46 Selecting previously unselected package patch.
#17 20.47 Preparing to unpack .../073-patch_2.7.6-7build2_arm64.deb ...
#17 20.47 Unpacking patch (2.7.6-7build2) ...
#17 20.49 Selecting previously unselected package lto-disabled-list.
#17 20.49 Preparing to unpack .../074-lto-disabled-list_24_all.deb ...
#17 20.49 Unpacking lto-disabled-list (24) ...
#17 20.51 Selecting previously unselected package dpkg-dev.
#17 20.52 Preparing to unpack .../075-dpkg-dev_1.21.1ubuntu2.1_all.deb ...
#17 20.52 Unpacking dpkg-dev (1.21.1ubuntu2.1) ...
#17 20.55 Selecting previously unselected package build-essential.
#17 20.55 Preparing to unpack .../076-build-essential_12.9ubuntu3_arm64.deb ...
#17 20.55 Unpacking build-essential (12.9ubuntu3) ...
#17 20.57 Selecting previously unselected package libbrotli1:arm64.
#17 20.57 Preparing to unpack .../077-libbrotli1_1.0.9-2build6_arm64.deb ...
#17 20.57 Unpacking libbrotli1:arm64 (1.0.9-2build6) ...
#17 20.63 Selecting previously unselected package libsasl2-modules-db:arm64.
#17 20.67 Preparing to unpack .../078-libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#17 20.68 Unpacking libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 20.72 Selecting previously unselected package libsasl2-2:arm64.
#17 20.74 Preparing to unpack .../079-libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#17 20.74 Unpacking libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 20.80 Selecting previously unselected package libldap-2.5-0:arm64.
#17 20.84 Preparing to unpack .../080-libldap-2.5-0_2.5.14+dfsg-0ubuntu0.22.04.1_arm64.deb ...
#17 20.84 Unpacking libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 20.92 Selecting previously unselected package librtmp1:arm64.
#17 20.93 Preparing to unpack .../081-librtmp1_2.4+20151223.gitfa8646d.1-2build4_arm64.deb ...
#17 20.93 Unpacking librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#17 20.97 Selecting previously unselected package libssh-4:arm64.
#17 20.98 Preparing to unpack .../082-libssh-4_0.9.6-2build1_arm64.deb ...
#17 20.98 Unpacking libssh-4:arm64 (0.9.6-2build1) ...
#17 21.01 Selecting previously unselected package libcurl4:arm64.
#17 21.02 Preparing to unpack .../083-libcurl4_7.81.0-1ubuntu1.10_arm64.deb ...
#17 21.04 Unpacking libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#17 21.07 Selecting previously unselected package curl.
#17 21.08 Preparing to unpack .../084-curl_7.81.0-1ubuntu1.10_arm64.deb ...
#17 21.08 Unpacking curl (7.81.0-1ubuntu1.10) ...
#17 21.10 Selecting previously unselected package libassuan0:arm64.
#17 21.10 Preparing to unpack .../085-libassuan0_2.5.5-1build1_arm64.deb ...
#17 21.11 Unpacking libassuan0:arm64 (2.5.5-1build1) ...
#17 21.13 Selecting previously unselected package gpgconf.
#17 ...

#14 [stage-1  6/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
#14 sha256:a8ae30d2a784d075ecc5cf19dc50c3bb664056e2f02b54e3ad85dd92af04bb6f
#14 13.84 Selecting previously unselected package libx11-6:arm64.
#14 13.85 Preparing to unpack .../030-libx11-6_2%3a1.7.5-1_arm64.deb ...
#14 13.85 Unpacking libx11-6:arm64 (2:1.7.5-1) ...
#14 13.91 Selecting previously unselected package libxext6:arm64.
#14 13.92 Preparing to unpack .../031-libxext6_2%3a1.3.4-1build1_arm64.deb ...
#14 13.93 Unpacking libxext6:arm64 (2:1.3.4-1build1) ...
#14 13.97 Selecting previously unselected package libxmuu1:arm64.
#14 13.98 Preparing to unpack .../032-libxmuu1_2%3a1.1.3-3_arm64.deb ...
#14 13.98 Unpacking libxmuu1:arm64 (2:1.1.3-3) ...
#14 14.00 Selecting previously unselected package manpages.
#14 14.01 Preparing to unpack .../033-manpages_5.10-1ubuntu1_all.deb ...
#14 14.01 Unpacking manpages (5.10-1ubuntu1) ...
#14 14.13 Selecting previously unselected package nano.
#14 14.13 Preparing to unpack .../034-nano_6.2-1_arm64.deb ...
#14 14.13 Unpacking nano (6.2-1) ...
#14 14.16 Selecting previously unselected package openssh-client.
#14 14.17 Preparing to unpack .../035-openssh-client_1%3a8.9p1-3ubuntu0.1_arm64.deb ...
#14 14.18 Unpacking openssh-client (1:8.9p1-3ubuntu0.1) ...
#14 14.34 Selecting previously unselected package publicsuffix.
#14 14.43 Preparing to unpack .../036-publicsuffix_20211207.1025-1_all.deb ...
#14 14.43 Unpacking publicsuffix (20211207.1025-1) ...
#14 14.56 Selecting previously unselected package xauth.
#14 14.63 Preparing to unpack .../037-xauth_1%3a1.1-1build2_arm64.deb ...
#14 14.63 Unpacking xauth (1:1.1-1build2) ...
#14 14.71 Selecting previously unselected package xz-utils.
#14 14.77 Preparing to unpack .../038-xz-utils_5.2.5-2ubuntu1_arm64.deb ...
#14 14.77 Unpacking xz-utils (5.2.5-2ubuntu1) ...
#14 14.90 Selecting previously unselected package binutils-common:arm64.
#14 14.99 Preparing to unpack .../039-binutils-common_2.38-4ubuntu2.1_arm64.deb ...
#14 15.00 Unpacking binutils-common:arm64 (2.38-4ubuntu2.1) ...
#14 15.14 Selecting previously unselected package libbinutils:arm64.
#14 15.25 Preparing to unpack .../040-libbinutils_2.38-4ubuntu2.1_arm64.deb ...
#14 15.26 Unpacking libbinutils:arm64 (2.38-4ubuntu2.1) ...
#14 15.40 Selecting previously unselected package libctf-nobfd0:arm64.
#14 15.51 Preparing to unpack .../041-libctf-nobfd0_2.38-4ubuntu2.1_arm64.deb ...
#14 15.52 Unpacking libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#14 15.63 Selecting previously unselected package libctf0:arm64.
#14 15.72 Preparing to unpack .../042-libctf0_2.38-4ubuntu2.1_arm64.deb ...
#14 15.73 Unpacking libctf0:arm64 (2.38-4ubuntu2.1) ...
#14 15.84 Selecting previously unselected package binutils-aarch64-linux-gnu.
#14 15.92 Preparing to unpack .../043-binutils-aarch64-linux-gnu_2.38-4ubuntu2.1_arm64.deb ...
#14 15.92 Unpacking binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#14 16.14 Selecting previously unselected package binutils.
#14 16.15 Preparing to unpack .../044-binutils_2.38-4ubuntu2.1_arm64.deb ...
#14 16.16 Unpacking binutils (2.38-4ubuntu2.1) ...
#14 16.27 Selecting previously unselected package bubblewrap.
#14 16.28 Preparing to unpack .../045-bubblewrap_0.6.1-1_arm64.deb ...
#14 16.28 Unpacking bubblewrap (0.6.1-1) ...
#14 16.31 Selecting previously unselected package libc-dev-bin.
#14 16.32 Preparing to unpack .../046-libc-dev-bin_2.35-0ubuntu3.1_arm64.deb ...
#14 16.32 Unpacking libc-dev-bin (2.35-0ubuntu3.1) ...
#14 16.34 Selecting previously unselected package linux-libc-dev:arm64.
#14 16.34 Preparing to unpack .../047-linux-libc-dev_5.15.0-67.74_arm64.deb ...
#14 16.35 Unpacking linux-libc-dev:arm64 (5.15.0-67.74) ...
#14 16.54 Selecting previously unselected package libcrypt-dev:arm64.
#14 16.54 Preparing to unpack .../048-libcrypt-dev_1%3a4.4.27-1_arm64.deb ...
#14 16.54 Unpacking libcrypt-dev:arm64 (1:4.4.27-1) ...
#14 16.59 Selecting previously unselected package rpcsvc-proto.
#14 16.59 Preparing to unpack .../049-rpcsvc-proto_1.4.2-0ubuntu6_arm64.deb ...
#14 16.61 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
#14 16.68 Selecting previously unselected package libtirpc-dev:arm64.
#14 16.68 Preparing to unpack .../050-libtirpc-dev_1.3.2-2ubuntu0.1_arm64.deb ...
#14 16.69 Unpacking libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#14 16.73 Selecting previously unselected package libnsl-dev:arm64.
#14 16.73 Preparing to unpack .../051-libnsl-dev_1.3.0-2build2_arm64.deb ...
#14 16.73 Unpacking libnsl-dev:arm64 (1.3.0-2build2) ...
#14 16.81 Selecting previously unselected package libc6-dev:arm64.
#14 16.83 Preparing to unpack .../052-libc6-dev_2.35-0ubuntu3.1_arm64.deb ...
#14 16.83 Unpacking libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#14 17.01 Selecting previously unselected package gcc-11-base:arm64.
#14 17.01 Preparing to unpack .../053-gcc-11-base_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 17.02 Unpacking gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 17.04 Selecting previously unselected package libisl23:arm64.
#14 17.04 Preparing to unpack .../054-libisl23_0.24-2build1_arm64.deb ...
#14 17.04 Unpacking libisl23:arm64 (0.24-2build1) ...
#14 17.08 Selecting previously unselected package libmpfr6:arm64.
#14 17.08 Preparing to unpack .../055-libmpfr6_4.1.0-3build3_arm64.deb ...
#14 17.08 Unpacking libmpfr6:arm64 (4.1.0-3build3) ...
#14 17.14 Selecting previously unselected package libmpc3:arm64.
#14 17.15 Preparing to unpack .../056-libmpc3_1.2.1-2build1_arm64.deb ...
#14 17.15 Unpacking libmpc3:arm64 (1.2.1-2build1) ...
#14 17.17 Selecting previously unselected package cpp-11.
#14 17.17 Preparing to unpack .../057-cpp-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 17.18 Unpacking cpp-11 (11.3.0-1ubuntu1~22.04) ...
#14 17.53 Selecting previously unselected package cpp.
#14 17.54 Preparing to unpack .../058-cpp_4%3a11.2.0-1ubuntu1_arm64.deb ...
#14 17.54 Unpacking cpp (4:11.2.0-1ubuntu1) ...
#14 17.58 Selecting previously unselected package libcc1-0:arm64.
#14 17.58 Preparing to unpack .../059-libcc1-0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 17.59 Unpacking libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 17.64 Selecting previously unselected package libgomp1:arm64.
#14 17.64 Preparing to unpack .../060-libgomp1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 17.66 Unpacking libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 17.70 Selecting previously unselected package libitm1:arm64.
#14 17.70 Preparing to unpack .../061-libitm1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 17.70 Unpacking libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 17.74 Selecting previously unselected package libatomic1:arm64.
#14 17.75 Preparing to unpack .../062-libatomic1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 17.75 Unpacking libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 17.78 Selecting previously unselected package libasan6:arm64.
#14 17.79 Preparing to unpack .../063-libasan6_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 17.79 Unpacking libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 17.87 Selecting previously unselected package liblsan0:arm64.
#14 17.88 Preparing to unpack .../064-liblsan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 17.88 Unpacking liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 17.93 Selecting previously unselected package libtsan0:arm64.
#14 17.94 Preparing to unpack .../065-libtsan0_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 17.94 Unpacking libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 18.02 Selecting previously unselected package libubsan1:arm64.
#14 18.02 Preparing to unpack .../066-libubsan1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 18.02 Unpacking libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 18.07 Selecting previously unselected package libhwasan0:arm64.
#14 18.07 Preparing to unpack .../067-libhwasan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 18.07 Unpacking libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 18.12 Selecting previously unselected package libgcc-11-dev:arm64.
#14 18.13 Preparing to unpack .../068-libgcc-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 18.13 Unpacking libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 18.24 Selecting previously unselected package gcc-11.
#14 18.25 Preparing to unpack .../069-gcc-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 18.25 Unpacking gcc-11 (11.3.0-1ubuntu1~22.04) ...
#14 18.86 Selecting previously unselected package gcc.
#14 19.05 Preparing to unpack .../070-gcc_4%3a11.2.0-1ubuntu1_arm64.deb ...
#14 19.07 Unpacking gcc (4:11.2.0-1ubuntu1) ...
#14 19.35 Selecting previously unselected package libstdc++-11-dev:arm64.
#14 19.47 Preparing to unpack .../071-libstdc++-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 19.48 Unpacking libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 19.95 Selecting previously unselected package g++-11.
#14 20.02 Preparing to unpack .../072-g++-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 20.03 Unpacking g++-11 (11.3.0-1ubuntu1~22.04) ...
#14 20.26 Selecting previously unselected package g++.
#14 20.26 Preparing to unpack .../073-g++_4%3a11.2.0-1ubuntu1_arm64.deb ...
#14 20.26 Unpacking g++ (4:11.2.0-1ubuntu1) ...
#14 20.29 Selecting previously unselected package make.
#14 20.29 Preparing to unpack .../074-make_4.3-4.1build1_arm64.deb ...
#14 20.30 Unpacking make (4.3-4.1build1) ...
#14 20.33 Selecting previously unselected package libdpkg-perl.
#14 20.33 Preparing to unpack .../075-libdpkg-perl_1.21.1ubuntu2.1_all.deb ...
#14 20.33 Unpacking libdpkg-perl (1.21.1ubuntu2.1) ...
#14 20.38 Selecting previously unselected package bzip2.
#14 20.38 Preparing to unpack .../076-bzip2_1.0.8-5build1_arm64.deb ...
#14 20.38 Unpacking bzip2 (1.0.8-5build1) ...
#14 20.40 Selecting previously unselected package patch.
#14 20.41 Preparing to unpack .../077-patch_2.7.6-7build2_arm64.deb ...
#14 20.41 Unpacking patch (2.7.6-7build2) ...
#14 20.44 Selecting previously unselected package lto-disabled-list.
#14 20.45 Preparing to unpack .../078-lto-disabled-list_24_all.deb ...
#14 20.45 Unpacking lto-disabled-list (24) ...
#14 20.48 Selecting previously unselected package dpkg-dev.
#14 20.49 Preparing to unpack .../079-dpkg-dev_1.21.1ubuntu2.1_all.deb ...
#14 20.49 Unpacking dpkg-dev (1.21.1ubuntu2.1) ...
#14 20.54 Selecting previously unselected package build-essential.
#14 20.55 Preparing to unpack .../080-build-essential_12.9ubuntu3_arm64.deb ...
#14 20.55 Unpacking build-essential (12.9ubuntu3) ...
#14 20.57 Selecting previously unselected package libbrotli1:arm64.
#14 20.57 Preparing to unpack .../081-libbrotli1_1.0.9-2build6_arm64.deb ...
#14 20.57 Unpacking libbrotli1:arm64 (1.0.9-2build6) ...
#14 20.60 Selecting previously unselected package libsasl2-modules-db:arm64.
#14 20.60 Preparing to unpack .../082-libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#14 20.60 Unpacking libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 20.62 Selecting previously unselected package libsasl2-2:arm64.
#14 20.62 Preparing to unpack .../083-libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#14 20.63 Unpacking libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 20.66 Selecting previously unselected package libldap-2.5-0:arm64.
#14 20.66 Preparing to unpack .../084-libldap-2.5-0_2.5.14+dfsg-0ubuntu0.22.04.1_arm64.deb ...
#14 20.66 Unpacking libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 20.72 Selecting previously unselected package librtmp1:arm64.
#14 20.75 Preparing to unpack .../085-librtmp1_2.4+20151223.gitfa8646d.1-2build4_arm64.deb ...
#14 20.75 Unpacking librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#14 20.79 Selecting previously unselected package libssh-4:arm64.
#14 20.81 Preparing to unpack .../086-libssh-4_0.9.6-2build1_arm64.deb ...
#14 20.82 Unpacking libssh-4:arm64 (0.9.6-2build1) ...
#14 20.95 Selecting previously unselected package libcurl4:arm64.
#14 20.98 Preparing to unpack .../087-libcurl4_7.81.0-1ubuntu1.10_arm64.deb ...
#14 20.98 Unpacking libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#14 21.01 Selecting previously unselected package curl.
#14 21.03 Preparing to unpack .../088-curl_7.81.0-1ubuntu1.10_arm64.deb ...
#14 21.03 Unpacking curl (7.81.0-1ubuntu1.10) ...
#14 21.06 Selecting previously unselected package libassuan0:arm64.
#14 21.07 Preparing to unpack .../089-libassuan0_2.5.5-1build1_arm64.deb ...
#14 21.07 Unpacking libassuan0:arm64 (2.5.5-1build1) ...
#14 21.09 Selecting previously unselected package gpgconf.
#14 21.10 Preparing to unpack .../090-gpgconf_2.2.27-3ubuntu2.1_arm64.deb ...
#14 21.10 Unpacking gpgconf (2.2.27-3ubuntu2.1) ...
#14 21.13 Selecting previously unselected package libksba8:arm64.
#14 21.13 Preparing to unpack .../091-libksba8_1.6.0-2ubuntu0.2_arm64.deb ...
#14 21.14 Unpacking libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#14 21.16 Selecting previously unselected package libnpth0:arm64.
#14 21.16 Preparing to unpack .../092-libnpth0_1.6-3build2_arm64.deb ...
#14 21.17 Unpacking libnpth0:arm64 (1.6-3build2) ...
#14 21.19 Selecting previously unselected package dirmngr.
#14 21.19 Preparing to unpack .../093-dirmngr_2.2.27-3ubuntu2.1_arm64.deb ...
#14 21.22 Unpacking dirmngr (2.2.27-3ubuntu2.1) ...
#14 21.24 Selecting previously unselected package libfakeroot:arm64.
#14 21.24 Preparing to unpack .../094-libfakeroot_1.28-1ubuntu1_arm64.deb ...
#14 21.24 Unpacking libfakeroot:arm64 (1.28-1ubuntu1) ...
#14 21.27 Selecting previously unselected package fakeroot.
#14 21.27 Preparing to unpack .../095-fakeroot_1.28-1ubuntu1_arm64.deb ...
#14 21.27 Unpacking fakeroot (1.28-1ubuntu1) ...
#14 21.29 Selecting previously unselected package fonts-dejavu-core.
#14 ...

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:aa2a6bdd90ddd8815ce790c22b8330d44129f03e543b8dccb54209cf21d029b0
#17 21.13 Preparing to unpack .../086-gpgconf_2.2.27-3ubuntu2.1_arm64.deb ...
#17 21.14 Unpacking gpgconf (2.2.27-3ubuntu2.1) ...
#17 21.16 Selecting previously unselected package libksba8:arm64.
#17 21.17 Preparing to unpack .../087-libksba8_1.6.0-2ubuntu0.2_arm64.deb ...
#17 21.17 Unpacking libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#17 21.19 Selecting previously unselected package libnpth0:arm64.
#17 21.19 Preparing to unpack .../088-libnpth0_1.6-3build2_arm64.deb ...
#17 21.19 Unpacking libnpth0:arm64 (1.6-3build2) ...
#17 21.21 Selecting previously unselected package dirmngr.
#17 21.22 Preparing to unpack .../089-dirmngr_2.2.27-3ubuntu2.1_arm64.deb ...
#17 21.24 Unpacking dirmngr (2.2.27-3ubuntu2.1) ...
#17 21.26 Selecting previously unselected package libfakeroot:arm64.
#17 21.27 Preparing to unpack .../090-libfakeroot_1.28-1ubuntu1_arm64.deb ...
#17 21.27 Unpacking libfakeroot:arm64 (1.28-1ubuntu1) ...
#17 21.29 Selecting previously unselected package fakeroot.
#17 21.30 Preparing to unpack .../091-fakeroot_1.28-1ubuntu1_arm64.deb ...
#17 21.30 Unpacking fakeroot (1.28-1ubuntu1) ...
#17 21.32 Selecting previously unselected package fonts-dejavu-core.
#17 21.32 Preparing to unpack .../092-fonts-dejavu-core_2.37-2build1_all.deb ...
#17 21.33 Unpacking fonts-dejavu-core (2.37-2build1) ...
#17 21.52 Selecting previously unselected package fontconfig-config.
#17 21.53 Preparing to unpack .../093-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
#17 21.53 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
#17 21.58 Selecting previously unselected package libcurl3-gnutls:arm64.
#17 21.58 Preparing to unpack .../094-libcurl3-gnutls_7.81.0-1ubuntu1.10_arm64.deb ...
#17 21.58 Unpacking libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#17 21.65 Selecting previously unselected package liberror-perl.
#17 21.67 Preparing to unpack .../095-liberror-perl_0.17029-1_all.deb ...
#17 21.70 Unpacking liberror-perl (0.17029-1) ...
#17 21.86 Selecting previously unselected package git-man.
#17 21.92 Preparing to unpack .../096-git-man_1%3a2.34.1-1ubuntu1.8_all.deb ...
#17 21.94 Unpacking git-man (1:2.34.1-1ubuntu1.8) ...
#17 22.06 Selecting previously unselected package git.
#17 22.12 Preparing to unpack .../097-git_1%3a2.34.1-1ubuntu1.8_arm64.deb ...
#17 22.18 Unpacking git (1:2.34.1-1ubuntu1.8) ...
#17 22.41 Selecting previously unselected package gnupg-l10n.
#17 22.42 Preparing to unpack .../098-gnupg-l10n_2.2.27-3ubuntu2.1_all.deb ...
#17 22.42 Unpacking gnupg-l10n (2.2.27-3ubuntu2.1) ...
#17 22.45 Selecting previously unselected package gnupg-utils.
#17 22.46 Preparing to unpack .../099-gnupg-utils_2.2.27-3ubuntu2.1_arm64.deb ...
#17 22.46 Unpacking gnupg-utils (2.2.27-3ubuntu2.1) ...
#17 22.49 Selecting previously unselected package gpg.
#17 22.49 Preparing to unpack .../100-gpg_2.2.27-3ubuntu2.1_arm64.deb ...
#17 22.49 Unpacking gpg (2.2.27-3ubuntu2.1) ...
#17 22.52 Selecting previously unselected package pinentry-curses.
#17 22.54 Preparing to unpack .../101-pinentry-curses_1.1.1-1build2_arm64.deb ...
#17 22.54 Unpacking pinentry-curses (1.1.1-1build2) ...
#17 22.59 Selecting previously unselected package gpg-agent.
#17 22.59 Preparing to unpack .../102-gpg-agent_2.2.27-3ubuntu2.1_arm64.deb ...
#17 22.60 Unpacking gpg-agent (2.2.27-3ubuntu2.1) ...
#17 22.63 Selecting previously unselected package gpg-wks-client.
#17 22.64 Preparing to unpack .../103-gpg-wks-client_2.2.27-3ubuntu2.1_arm64.deb ...
#17 22.64 Unpacking gpg-wks-client (2.2.27-3ubuntu2.1) ...
#17 22.68 Selecting previously unselected package gpg-wks-server.
#17 22.68 Preparing to unpack .../104-gpg-wks-server_2.2.27-3ubuntu2.1_arm64.deb ...
#17 22.68 Unpacking gpg-wks-server (2.2.27-3ubuntu2.1) ...
#17 22.72 Selecting previously unselected package gpgsm.
#17 22.72 Preparing to unpack .../105-gpgsm_2.2.27-3ubuntu2.1_arm64.deb ...
#17 22.72 Unpacking gpgsm (2.2.27-3ubuntu2.1) ...
#17 22.76 Selecting previously unselected package gnupg.
#17 22.76 Preparing to unpack .../106-gnupg_2.2.27-3ubuntu2.1_all.deb ...
#17 22.76 Unpacking gnupg (2.2.27-3ubuntu2.1) ...
#17 22.85 Selecting previously unselected package libalgorithm-diff-perl.
#17 22.85 Preparing to unpack .../107-libalgorithm-diff-perl_1.201-1_all.deb ...
#17 22.85 Unpacking libalgorithm-diff-perl (1.201-1) ...
#17 22.90 Selecting previously unselected package libalgorithm-diff-xs-perl.
#17 22.90 Preparing to unpack .../108-libalgorithm-diff-xs-perl_0.04-6build3_arm64.deb ...
#17 22.90 Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
#17 22.93 Selecting previously unselected package libalgorithm-merge-perl.
#17 22.93 Preparing to unpack .../109-libalgorithm-merge-perl_0.08-3_all.deb ...
#17 22.93 Unpacking libalgorithm-merge-perl (0.08-3) ...
#17 22.95 Selecting previously unselected package libfreetype6:arm64.
#17 22.96 Preparing to unpack .../110-libfreetype6_2.11.1+dfsg-1ubuntu0.1_arm64.deb ...
#17 22.96 Unpacking libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#17 22.99 Selecting previously unselected package libfontconfig1:arm64.
#17 22.99 Preparing to unpack .../111-libfontconfig1_2.13.1-4.2ubuntu5_arm64.deb ...
#17 22.99 Unpacking libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#17 23.02 Selecting previously unselected package libjpeg-turbo8:arm64.
#17 23.02 Preparing to unpack .../112-libjpeg-turbo8_2.1.2-0ubuntu1_arm64.deb ...
#17 23.02 Unpacking libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#17 23.05 Selecting previously unselected package libjpeg8:arm64.
#17 23.05 Preparing to unpack .../113-libjpeg8_8c-2ubuntu10_arm64.deb ...
#17 23.05 Unpacking libjpeg8:arm64 (8c-2ubuntu10) ...
#17 23.07 Selecting previously unselected package libdeflate0:arm64.
#17 23.08 Preparing to unpack .../114-libdeflate0_1.10-2_arm64.deb ...
#17 23.08 Unpacking libdeflate0:arm64 (1.10-2) ...
#17 23.10 Selecting previously unselected package libjbig0:arm64.
#17 23.11 Preparing to unpack .../115-libjbig0_2.1-3.1ubuntu0.22.04.1_arm64.deb ...
#17 23.11 Unpacking libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#17 23.14 Selecting previously unselected package libwebp7:arm64.
#17 23.14 Preparing to unpack .../116-libwebp7_1.2.2-2_arm64.deb ...
#17 23.15 Unpacking libwebp7:arm64 (1.2.2-2) ...
#17 23.17 Selecting previously unselected package libtiff5:arm64.
#17 23.17 Preparing to unpack .../117-libtiff5_4.3.0-6ubuntu0.4_arm64.deb ...
#17 23.18 Unpacking libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#17 23.26 Selecting previously unselected package libxpm4:arm64.
#17 23.26 Preparing to unpack .../118-libxpm4_1%3a3.5.12-1ubuntu0.22.04.1_arm64.deb ...
#17 23.27 Unpacking libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#17 23.32 Selecting previously unselected package libgd3:arm64.
#17 23.32 Preparing to unpack .../119-libgd3_2.3.0-2ubuntu2_arm64.deb ...
#17 23.32 Unpacking libgd3:arm64 (2.3.0-2ubuntu2) ...
#17 23.37 Selecting previously unselected package libc-devtools.
#17 23.37 Preparing to unpack .../120-libc-devtools_2.35-0ubuntu3.1_arm64.deb ...
#17 23.37 Unpacking libc-devtools (2.35-0ubuntu3.1) ...
#17 23.40 Selecting previously unselected package libcap-dev:arm64.
#17 23.40 Preparing to unpack .../121-libcap-dev_1%3a2.44-1build3_arm64.deb ...
#17 23.41 Unpacking libcap-dev:arm64 (1:2.44-1build3) ...
#17 23.44 Selecting previously unselected package libfile-fcntllock-perl.
#17 23.44 Preparing to unpack .../122-libfile-fcntllock-perl_0.22-3build7_arm64.deb ...
#17 23.44 Unpacking libfile-fcntllock-perl (0.22-3build7) ...
#17 23.47 Selecting previously unselected package libldap-common.
#17 23.48 Preparing to unpack .../123-libldap-common_2.5.14+dfsg-0ubuntu0.22.04.1_all.deb ...
#17 23.48 Unpacking libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 23.50 Selecting previously unselected package libsasl2-modules:arm64.
#17 23.50 Preparing to unpack .../124-libsasl2-modules_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#17 23.51 Unpacking libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 23.53 Selecting previously unselected package manpages-dev.
#17 23.53 Preparing to unpack .../125-manpages-dev_5.10-1ubuntu1_all.deb ...
#17 23.53 Unpacking manpages-dev (5.10-1ubuntu1) ...
#17 23.77 Setting up libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#17 23.78 Setting up libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#17 23.78 Setting up gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 23.79 Setting up libxau6:arm64 (1:1.0.9-1build5) ...
#17 23.79 Setting up lto-disabled-list (24) ...
#17 23.79 Setting up libpsl5:arm64 (0.21.0-1.2build2) ...
#17 23.79 Setting up manpages (5.10-1ubuntu1) ...
#17 23.79 Setting up libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#17 23.80 Setting up libbrotli1:arm64 (1.0.9-2build6) ...
#17 23.80 Setting up libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#17 23.80 Setting up libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 23.81 Setting up binutils-common:arm64 (2.38-4ubuntu2.1) ...
#17 23.81 Setting up libnghttp2-14:arm64 (1.43.0-1build3) ...
#17 23.82 Setting up libdeflate0:arm64 (1.10-2) ...
#17 23.82 Setting up less (590-1ubuntu0.22.04.1) ...
#17 23.82 Setting up linux-libc-dev:arm64 (5.15.0-67.74) ...
#17 23.83 Setting up libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#17 23.83 Setting up libnpth0:arm64 (1.6-3build2) ...
#17 23.83 Setting up libassuan0:arm64 (2.5.5-1build1) ...
#17 23.83 Setting up libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 23.84 Setting up perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#17 23.84 Setting up bzip2 (1.0.8-5build1) ...
#17 23.84 Setting up libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 23.84 Setting up libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#17 23.85 Setting up libfakeroot:arm64 (1.28-1ubuntu1) ...
#17 23.85 Setting up libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 23.85 Setting up libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 23.85 Setting up fakeroot (1.28-1ubuntu1) ...
#17 23.86 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.86 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#17 23.87 Setting up libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#17 23.87 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
#17 23.88 Setting up libx11-data (2:1.7.5-1) ...
#17 23.88 Setting up make (4.3-4.1build1) ...
#17 23.88 Setting up libmpfr6:arm64 (4.1.0-3build3) ...
#17 23.89 Setting up gnupg-l10n (2.2.27-3ubuntu2.1) ...
#17 23.89 Setting up librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#17 23.90 Setting up xz-utils (5.2.5-2ubuntu1) ...
#17 23.90 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
#17 23.91 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
#17 23.91 Setting up libpng16-16:arm64 (1.6.37-3build5) ...
#17 23.92 Setting up libmpc3:arm64 (1.2.1-2build1) ...
#17 23.92 Setting up libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 23.93 Setting up patch (2.7.6-7build2) ...
#17 23.93 Setting up sudo (1.9.9-1ubuntu2.3) ...
#17 23.99 Setting up fonts-dejavu-core (2.37-2build1) ...
#17 24.00 Setting up ucf (3.0043) ...
#17 24.09 Setting up libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#17 24.09 Setting up libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 24.10 Setting up libssh-4:arm64 (0.9.6-2build1) ...
#17 24.10 Setting up libwebp7:arm64 (1.2.2-2) ...
#17 24.10 Setting up libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 24.11 Setting up libmd0:arm64 (1.0.4-1build1) ...
#17 24.11 Setting up libnsl-dev:arm64 (1.3.0-2build2) ...
#17 24.11 Setting up libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 24.11 Setting up libcrypt-dev:arm64 (1:4.4.27-1) ...
#17 24.11 Setting up git-man (1:2.34.1-1ubuntu1.8) ...
#17 24.13 Setting up netbase (6.3) ...
#17 24.13 Setting up libbinutils:arm64 (2.38-4ubuntu2.1) ...
#17 24.13 Setting up libfido2-1:arm64 (1.10.0-1) ...
#17 24.13 Setting up libisl23:arm64 (0.24-2build1) ...
#17 24.13 Setting up libc-dev-bin (2.35-0ubuntu3.1) ...
#17 24.13 Setting up openssl (3.0.2-0ubuntu1.8) ...
#17 24.14 Setting up libbsd0:arm64 (0.11.5-1) ...
#17 24.14 Setting up libcap-dev:arm64 (1:2.44-1build3) ...
#17 24.14 Setting up readline-common (8.1.2-1) ...
#17 24.15 Setting up publicsuffix (20211207.1025-1) ...
#17 24.15 Setting up libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 24.15 Setting up liblocale-gettext-perl (1.07-4build3) ...
#17 24.16 Setting up liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 24.16 Setting up libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 24.16 Setting up libgdbm6:arm64 (1.23-1) ...
#17 24.16 Setting up libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 24.16 Setting up libctf0:arm64 (2.38-4ubuntu2.1) ...
#17 24.17 Setting up libjpeg8:arm64 (8c-2ubuntu10) ...
#17 24.17 Setting up pinentry-curses (1.1.1-1build2) ...
#17 24.18 Setting up cpp-11 (11.3.0-1ubuntu1~22.04) ...
#17 24.18 Setting up manpages-dev (5.10-1ubuntu1) ...
#17 24.18 Setting up libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#17 24.20 Setting up libxcb1:arm64 (1.14-3ubuntu3) ...
#17 24.20 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
#17 24.23 Setting up libedit2:arm64 (3.1-20210910-1build1) ...
#17 24.23 Setting up libreadline8:arm64 (8.1.2-1) ...
#17 24.24 Setting up binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#17 24.24 Setting up binutils (2.38-4ubuntu2.1) ...
#17 24.24 Setting up libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 24.24 Setting up ca-certificates (20211016ubuntu0.22.04.1) ...
#17 27.17 Updating certificates in /etc/ssl/certs...
#17 ...

#14 [stage-1  6/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
#14 sha256:a8ae30d2a784d075ecc5cf19dc50c3bb664056e2f02b54e3ad85dd92af04bb6f
#14 21.29 Preparing to unpack .../096-fonts-dejavu-core_2.37-2build1_all.deb ...
#14 21.30 Unpacking fonts-dejavu-core (2.37-2build1) ...
#14 21.39 Selecting previously unselected package fontconfig-config.
#14 21.39 Preparing to unpack .../097-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
#14 21.39 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
#14 21.58 Selecting previously unselected package libcurl3-gnutls:arm64.
#14 21.58 Preparing to unpack .../098-libcurl3-gnutls_7.81.0-1ubuntu1.10_arm64.deb ...
#14 21.58 Unpacking libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#14 21.61 Selecting previously unselected package liberror-perl.
#14 21.61 Preparing to unpack .../099-liberror-perl_0.17029-1_all.deb ...
#14 21.61 Unpacking liberror-perl (0.17029-1) ...
#14 21.65 Selecting previously unselected package git-man.
#14 21.65 Preparing to unpack .../100-git-man_1%3a2.34.1-1ubuntu1.8_all.deb ...
#14 21.65 Unpacking git-man (1:2.34.1-1ubuntu1.8) ...
#14 21.82 Selecting previously unselected package git.
#14 21.85 Preparing to unpack .../101-git_1%3a2.34.1-1ubuntu1.8_arm64.deb ...
#14 21.93 Unpacking git (1:2.34.1-1ubuntu1.8) ...
#14 22.26 Selecting previously unselected package gnupg-l10n.
#14 22.27 Preparing to unpack .../102-gnupg-l10n_2.2.27-3ubuntu2.1_all.deb ...
#14 22.28 Unpacking gnupg-l10n (2.2.27-3ubuntu2.1) ...
#14 22.32 Selecting previously unselected package gnupg-utils.
#14 22.34 Preparing to unpack .../103-gnupg-utils_2.2.27-3ubuntu2.1_arm64.deb ...
#14 22.34 Unpacking gnupg-utils (2.2.27-3ubuntu2.1) ...
#14 22.38 Selecting previously unselected package gpg.
#14 22.41 Preparing to unpack .../104-gpg_2.2.27-3ubuntu2.1_arm64.deb ...
#14 22.45 Unpacking gpg (2.2.27-3ubuntu2.1) ...
#14 22.49 Selecting previously unselected package pinentry-curses.
#14 22.49 Preparing to unpack .../105-pinentry-curses_1.1.1-1build2_arm64.deb ...
#14 22.49 Unpacking pinentry-curses (1.1.1-1build2) ...
#14 22.51 Selecting previously unselected package gpg-agent.
#14 22.52 Preparing to unpack .../106-gpg-agent_2.2.27-3ubuntu2.1_arm64.deb ...
#14 22.52 Unpacking gpg-agent (2.2.27-3ubuntu2.1) ...
#14 22.55 Selecting previously unselected package gpg-wks-client.
#14 22.55 Preparing to unpack .../107-gpg-wks-client_2.2.27-3ubuntu2.1_arm64.deb ...
#14 22.55 Unpacking gpg-wks-client (2.2.27-3ubuntu2.1) ...
#14 22.58 Selecting previously unselected package gpg-wks-server.
#14 22.58 Preparing to unpack .../108-gpg-wks-server_2.2.27-3ubuntu2.1_arm64.deb ...
#14 22.60 Unpacking gpg-wks-server (2.2.27-3ubuntu2.1) ...
#14 22.66 Selecting previously unselected package gpgsm.
#14 22.66 Preparing to unpack .../109-gpgsm_2.2.27-3ubuntu2.1_arm64.deb ...
#14 22.66 Unpacking gpgsm (2.2.27-3ubuntu2.1) ...
#14 22.69 Selecting previously unselected package gnupg.
#14 22.69 Preparing to unpack .../110-gnupg_2.2.27-3ubuntu2.1_all.deb ...
#14 22.70 Unpacking gnupg (2.2.27-3ubuntu2.1) ...
#14 22.74 Selecting previously unselected package libalgorithm-diff-perl.
#14 22.74 Preparing to unpack .../111-libalgorithm-diff-perl_1.201-1_all.deb ...
#14 22.74 Unpacking libalgorithm-diff-perl (1.201-1) ...
#14 22.78 Selecting previously unselected package libalgorithm-diff-xs-perl.
#14 22.78 Preparing to unpack .../112-libalgorithm-diff-xs-perl_0.04-6build3_arm64.deb ...
#14 22.79 Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
#14 22.81 Selecting previously unselected package libalgorithm-merge-perl.
#14 22.82 Preparing to unpack .../113-libalgorithm-merge-perl_0.08-3_all.deb ...
#14 22.82 Unpacking libalgorithm-merge-perl (0.08-3) ...
#14 22.91 Selecting previously unselected package libfreetype6:arm64.
#14 22.91 Preparing to unpack .../114-libfreetype6_2.11.1+dfsg-1ubuntu0.1_arm64.deb ...
#14 22.91 Unpacking libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#14 22.96 Selecting previously unselected package libfontconfig1:arm64.
#14 22.96 Preparing to unpack .../115-libfontconfig1_2.13.1-4.2ubuntu5_arm64.deb ...
#14 22.97 Unpacking libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#14 22.99 Selecting previously unselected package libjpeg-turbo8:arm64.
#14 22.99 Preparing to unpack .../116-libjpeg-turbo8_2.1.2-0ubuntu1_arm64.deb ...
#14 22.99 Unpacking libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#14 23.01 Selecting previously unselected package libjpeg8:arm64.
#14 23.01 Preparing to unpack .../117-libjpeg8_8c-2ubuntu10_arm64.deb ...
#14 23.02 Unpacking libjpeg8:arm64 (8c-2ubuntu10) ...
#14 23.04 Selecting previously unselected package libdeflate0:arm64.
#14 23.04 Preparing to unpack .../118-libdeflate0_1.10-2_arm64.deb ...
#14 23.04 Unpacking libdeflate0:arm64 (1.10-2) ...
#14 23.06 Selecting previously unselected package libjbig0:arm64.
#14 23.07 Preparing to unpack .../119-libjbig0_2.1-3.1ubuntu0.22.04.1_arm64.deb ...
#14 23.07 Unpacking libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#14 23.09 Selecting previously unselected package libwebp7:arm64.
#14 23.09 Preparing to unpack .../120-libwebp7_1.2.2-2_arm64.deb ...
#14 23.09 Unpacking libwebp7:arm64 (1.2.2-2) ...
#14 23.12 Selecting previously unselected package libtiff5:arm64.
#14 23.12 Preparing to unpack .../121-libtiff5_4.3.0-6ubuntu0.4_arm64.deb ...
#14 23.12 Unpacking libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#14 23.14 Selecting previously unselected package libxpm4:arm64.
#14 23.14 Preparing to unpack .../122-libxpm4_1%3a3.5.12-1ubuntu0.22.04.1_arm64.deb ...
#14 23.14 Unpacking libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#14 23.17 Selecting previously unselected package libgd3:arm64.
#14 23.17 Preparing to unpack .../123-libgd3_2.3.0-2ubuntu2_arm64.deb ...
#14 23.17 Unpacking libgd3:arm64 (2.3.0-2ubuntu2) ...
#14 23.20 Selecting previously unselected package libc-devtools.
#14 23.20 Preparing to unpack .../124-libc-devtools_2.35-0ubuntu3.1_arm64.deb ...
#14 23.21 Unpacking libc-devtools (2.35-0ubuntu3.1) ...
#14 23.23 Selecting previously unselected package libcap-dev:arm64.
#14 23.23 Preparing to unpack .../125-libcap-dev_1%3a2.44-1build3_arm64.deb ...
#14 23.24 Unpacking libcap-dev:arm64 (1:2.44-1build3) ...
#14 23.32 Selecting previously unselected package libfile-fcntllock-perl.
#14 23.33 Preparing to unpack .../126-libfile-fcntllock-perl_0.22-3build7_arm64.deb ...
#14 23.33 Unpacking libfile-fcntllock-perl (0.22-3build7) ...
#14 23.38 Selecting previously unselected package libldap-common.
#14 23.38 Preparing to unpack .../127-libldap-common_2.5.14+dfsg-0ubuntu0.22.04.1_all.deb ...
#14 23.39 Unpacking libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 23.42 Selecting previously unselected package libpthread-stubs0-dev:arm64.
#14 23.43 Preparing to unpack .../128-libpthread-stubs0-dev_0.4-1build2_arm64.deb ...
#14 23.43 Unpacking libpthread-stubs0-dev:arm64 (0.4-1build2) ...
#14 23.45 Selecting previously unselected package libsasl2-modules:arm64.
#14 23.45 Preparing to unpack .../129-libsasl2-modules_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#14 23.46 Unpacking libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 23.48 Selecting previously unselected package xorg-sgml-doctools.
#14 23.49 Preparing to unpack .../130-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ...
#14 23.50 Unpacking xorg-sgml-doctools (1:1.11-1.1) ...
#14 23.52 Selecting previously unselected package x11proto-dev.
#14 23.52 Preparing to unpack .../131-x11proto-dev_2021.5-1_all.deb ...
#14 23.52 Unpacking x11proto-dev (2021.5-1) ...
#14 23.56 Selecting previously unselected package libxau-dev:arm64.
#14 23.56 Preparing to unpack .../132-libxau-dev_1%3a1.0.9-1build5_arm64.deb ...
#14 23.57 Unpacking libxau-dev:arm64 (1:1.0.9-1build5) ...
#14 23.58 Selecting previously unselected package libxdmcp-dev:arm64.
#14 23.59 Preparing to unpack .../133-libxdmcp-dev_1%3a1.1.3-0ubuntu5_arm64.deb ...
#14 23.59 Unpacking libxdmcp-dev:arm64 (1:1.1.3-0ubuntu5) ...
#14 23.61 Selecting previously unselected package xtrans-dev.
#14 23.61 Preparing to unpack .../134-xtrans-dev_1.4.0-1_all.deb ...
#14 23.61 Unpacking xtrans-dev (1.4.0-1) ...
#14 23.64 Selecting previously unselected package libxcb1-dev:arm64.
#14 23.65 Preparing to unpack .../135-libxcb1-dev_1.14-3ubuntu3_arm64.deb ...
#14 23.65 Unpacking libxcb1-dev:arm64 (1.14-3ubuntu3) ...
#14 23.68 Selecting previously unselected package libx11-dev:arm64.
#14 23.68 Preparing to unpack .../136-libx11-dev_2%3a1.7.5-1_arm64.deb ...
#14 23.69 Unpacking libx11-dev:arm64 (2:1.7.5-1) ...
#14 23.73 Selecting previously unselected package manpages-dev.
#14 23.74 Preparing to unpack .../137-manpages-dev_5.10-1ubuntu1_all.deb ...
#14 23.74 Unpacking manpages-dev (5.10-1ubuntu1) ...
#14 23.92 Selecting previously unselected package unzip.
#14 23.93 Preparing to unpack .../138-unzip_6.0-26ubuntu3.1_arm64.deb ...
#14 23.93 Unpacking unzip (6.0-26ubuntu3.1) ...
#14 23.98 Setting up libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#14 23.98 Setting up libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#14 23.99 Setting up bubblewrap (0.6.1-1) ...
#14 23.99 sysctl: setting key "kernel.unprivileged_userns_clone", ignoring: Read-only file system
#14 23.99 Setting up gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 24.00 Setting up libxau6:arm64 (1:1.0.9-1build5) ...
#14 24.00 Setting up lto-disabled-list (24) ...
#14 24.00 Setting up libpsl5:arm64 (0.21.0-1.2build2) ...
#14 24.01 Setting up manpages (5.10-1ubuntu1) ...
#14 24.02 Setting up unzip (6.0-26ubuntu3.1) ...
#14 24.03 Setting up libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#14 24.03 Setting up libbrotli1:arm64 (1.0.9-2build6) ...
#14 24.03 Setting up libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#14 24.03 Setting up libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 24.04 Setting up binutils-common:arm64 (2.38-4ubuntu2.1) ...
#14 24.05 Setting up libnghttp2-14:arm64 (1.43.0-1build3) ...
#14 24.05 Setting up libdeflate0:arm64 (1.10-2) ...
#14 24.05 Setting up less (590-1ubuntu0.22.04.1) ...
#14 24.06 Setting up linux-libc-dev:arm64 (5.15.0-67.74) ...
#14 24.06 Setting up libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#14 24.06 Setting up libnpth0:arm64 (1.6-3build2) ...
#14 24.07 Setting up libassuan0:arm64 (2.5.5-1build1) ...
#14 24.07 Setting up libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 24.07 Setting up perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#14 24.07 Setting up bzip2 (1.0.8-5build1) ...
#14 24.07 Setting up libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 24.07 Setting up libpthread-stubs0-dev:arm64 (0.4-1build2) ...
#14 24.08 Setting up libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#14 24.08 Setting up libfakeroot:arm64 (1.28-1ubuntu1) ...
#14 24.08 Setting up libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 24.08 Setting up libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 24.08 Setting up fakeroot (1.28-1ubuntu1) ...
#14 24.09 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#14 24.09 Setting up xtrans-dev (1.4.0-1) ...
#14 24.09 Setting up libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#14 24.09 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
#14 24.10 Setting up libx11-data (2:1.7.5-1) ...
#14 24.10 Setting up make (4.3-4.1build1) ...
#14 24.10 Setting up libmpfr6:arm64 (4.1.0-3build3) ...
#14 24.10 Setting up gnupg-l10n (2.2.27-3ubuntu2.1) ...
#14 24.11 Setting up librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#14 24.11 Setting up xz-utils (5.2.5-2ubuntu1) ...
#14 24.11 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#14 24.11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
#14 24.11 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
#14 24.11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
#14 24.11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
#14 24.11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
#14 24.11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
#14 24.11 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
#14 24.12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
#14 24.12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
#14 24.12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
#14 24.12 Setting up libpng16-16:arm64 (1.6.37-3build5) ...
#14 24.12 Setting up libmpc3:arm64 (1.2.1-2build1) ...
#14 24.12 Setting up libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 24.13 Setting up patch (2.7.6-7build2) ...
#14 24.13 Setting up sudo (1.9.9-1ubuntu2.3) ...
#14 24.19 Setting up fonts-dejavu-core (2.37-2build1) ...
#14 24.20 Setting up ucf (3.0043) ...
#14 24.28 Setting up libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#14 24.28 Setting up libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 24.29 Setting up libssh-4:arm64 (0.9.6-2build1) ...
#14 24.29 Setting up libwebp7:arm64 (1.2.2-2) ...
#14 24.29 Setting up libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 24.29 Setting up nano (6.2-1) ...
#14 24.30 update-alternatives: using /bin/nano to provide /usr/bin/editor (editor) in auto mode
#14 24.30 update-alternatives: warning: skip creation of /usr/share/man/man1/editor.1.gz because associated file /usr/share/man/man1/nano.1.gz (of link group editor) doesn't exist
#14 24.30 update-alternatives: using /bin/nano to provide /usr/bin/pico (pico) in auto mode
#14 24.30 update-alternatives: warning: skip creation of /usr/share/man/man1/pico.1.gz because associated file /usr/share/man/man1/nano.1.gz (of link group pico) doesn't exist
#14 24.30 Setting up libmd0:arm64 (1.0.4-1build1) ...
#14 24.30 Setting up libnsl-dev:arm64 (1.3.0-2build2) ...
#14 24.30 Setting up libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 24.31 Setting up libcrypt-dev:arm64 (1:4.4.27-1) ...
#14 24.31 Setting up git-man (1:2.34.1-1ubuntu1.8) ...
#14 24.31 Setting up xorg-sgml-doctools (1:1.11-1.1) ...
#14 24.31 Setting up netbase (6.3) ...
#14 24.32 Setting up libbinutils:arm64 (2.38-4ubuntu2.1) ...
#14 24.32 Setting up libfido2-1:arm64 (1.10.0-1) ...
#14 24.32 Setting up libisl23:arm64 (0.24-2build1) ...
#14 24.32 Setting up libc-dev-bin (2.35-0ubuntu3.1) ...
#14 24.32 Setting up openssl (3.0.2-0ubuntu1.8) ...
#14 24.33 Setting up libbsd0:arm64 (0.11.5-1) ...
#14 24.33 Setting up libcap-dev:arm64 (1:2.44-1build3) ...
#14 24.33 Setting up readline-common (8.1.2-1) ...
#14 24.34 Setting up publicsuffix (20211207.1025-1) ...
#14 24.34 Setting up libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 24.34 Setting up liblocale-gettext-perl (1.07-4build3) ...
#14 24.34 Setting up liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 24.34 Setting up libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 24.35 Setting up libgdbm6:arm64 (1.23-1) ...
#14 24.35 Setting up libpopt0:arm64 (1.18-3build1) ...
#14 24.36 Setting up libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 24.37 Setting up libctf0:arm64 (2.38-4ubuntu2.1) ...
#14 24.38 Setting up libjpeg8:arm64 (8c-2ubuntu10) ...
#14 24.38 Setting up pinentry-curses (1.1.1-1build2) ...
#14 24.38 Setting up x11proto-dev (2021.5-1) ...
#14 24.38 Setting up cpp-11 (11.3.0-1ubuntu1~22.04) ...
#14 24.39 Setting up manpages-dev (5.10-1ubuntu1) ...
#14 24.39 Setting up libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#14 24.39 Setting up libxcb1:arm64 (1.14-3ubuntu3) ...
#14 24.39 Setting up libxau-dev:arm64 (1:1.0.9-1build5) ...
#14 24.39 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
#14 24.43 Setting up libedit2:arm64 (3.1-20210910-1build1) ...
#14 24.43 Setting up libreadline8:arm64 (8.1.2-1) ...
#14 24.43 Setting up binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#14 24.43 Setting up binutils (2.38-4ubuntu2.1) ...
#14 24.43 Setting up libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 24.44 Setting up ca-certificates (20211016ubuntu0.22.04.1) ...
#14 27.30 Updating certificates in /etc/ssl/certs...
#14 ...

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:aa2a6bdd90ddd8815ce790c22b8330d44129f03e543b8dccb54209cf21d029b0
#17 30.80 124 added, 0 removed; done.
#17 30.83 Setting up libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#17 30.83 Setting up libgdbm-compat4:arm64 (1.23-1) ...
#17 30.83 Setting up libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 30.83 Setting up gcc-11 (11.3.0-1ubuntu1~22.04) ...
#17 30.84 Setting up cpp (4:11.2.0-1ubuntu1) ...
#17 30.84 Setting up gpgconf (2.2.27-3ubuntu2.1) ...
#17 30.84 Setting up libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#17 30.85 Setting up libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#17 30.85 Setting up libx11-6:arm64 (2:1.7.5-1) ...
#17 30.85 Setting up libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#17 30.85 Setting up curl (7.81.0-1ubuntu1.10) ...
#17 30.85 Setting up libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#17 30.85 Setting up libxmuu1:arm64 (2:1.1.3-3) ...
#17 30.86 Setting up gpg (2.2.27-3ubuntu2.1) ...
#17 30.86 Setting up gnupg-utils (2.2.27-3ubuntu2.1) ...
#17 30.86 Setting up libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#17 30.86 Setting up gpg-agent (2.2.27-3ubuntu2.1) ...
#17 31.36 Setting up libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#17 31.38 Setting up openssh-client (1:8.9p1-3ubuntu0.1) ...
#17 31.46 update-alternatives: using /usr/bin/ssh to provide /usr/bin/rsh (rsh) in auto mode
#17 31.46 update-alternatives: warning: skip creation of /usr/share/man/man1/rsh.1.gz because associated file /usr/share/man/man1/ssh.1.gz (of link group rsh) doesn't exist
#17 31.46 update-alternatives: using /usr/bin/slogin to provide /usr/bin/rlogin (rlogin) in auto mode
#17 31.46 update-alternatives: warning: skip creation of /usr/share/man/man1/rlogin.1.gz because associated file /usr/share/man/man1/slogin.1.gz (of link group rlogin) doesn't exist
#17 31.47 update-alternatives: using /usr/bin/scp to provide /usr/bin/rcp (rcp) in auto mode
#17 31.47 update-alternatives: warning: skip creation of /usr/share/man/man1/rcp.1.gz because associated file /usr/share/man/man1/scp.1.gz (of link group rcp) doesn't exist
#17 31.47 Setting up gpgsm (2.2.27-3ubuntu2.1) ...
#17 31.47 Setting up libxext6:arm64 (2:1.3.4-1build1) ...
#17 31.48 Setting up libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#17 31.48 Setting up gcc (4:11.2.0-1ubuntu1) ...
#17 31.49 Setting up dirmngr (2.2.27-3ubuntu2.1) ...
#17 31.62 Setting up perl (5.34.0-3ubuntu1.1) ...
#17 31.64 Setting up libgd3:arm64 (2.3.0-2ubuntu2) ...
#17 31.64 Setting up libdpkg-perl (1.21.1ubuntu2.1) ...
#17 31.64 Setting up libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 31.64 Setting up gpg-wks-server (2.2.27-3ubuntu2.1) ...
#17 31.64 Setting up xauth (1:1.1-1build2) ...
#17 31.64 Setting up libc-devtools (2.35-0ubuntu3.1) ...
#17 31.65 Setting up gpg-wks-client (2.2.27-3ubuntu2.1) ...
#17 31.65 Setting up g++-11 (11.3.0-1ubuntu1~22.04) ...
#17 31.65 Setting up libfile-fcntllock-perl (0.22-3build7) ...
#17 31.65 Setting up libalgorithm-diff-perl (1.201-1) ...
#17 31.65 Setting up dpkg-dev (1.21.1ubuntu2.1) ...
#17 31.65 Setting up liberror-perl (0.17029-1) ...
#17 31.66 Setting up git (1:2.34.1-1ubuntu1.8) ...
#17 31.67 Setting up g++ (4:11.2.0-1ubuntu1) ...
#17 31.70 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#17 31.70 update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist
#17 31.70 Setting up gnupg (2.2.27-3ubuntu2.1) ...
#17 31.70 Setting up build-essential (12.9ubuntu3) ...
#17 31.70 Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
#17 31.70 Setting up libalgorithm-merge-perl (0.08-3) ...
#17 31.71 Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
#17 31.73 Processing triggers for ca-certificates (20211016ubuntu0.22.04.1) ...
#17 31.73 Updating certificates in /etc/ssl/certs...
#17 33.08 0 added, 0 removed; done.
#17 33.08 Running hooks in /etc/ca-certificates/update.d...
#17 33.08 done.
#17 DONE 33.4s

#14 [stage-1  6/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
#14 sha256:a8ae30d2a784d075ecc5cf19dc50c3bb664056e2f02b54e3ad85dd92af04bb6f
#14 30.99 124 added, 0 removed; done.
#14 31.01 Setting up libxdmcp-dev:arm64 (1:1.1.3-0ubuntu5) ...
#14 31.01 Setting up libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#14 31.01 Setting up libgdbm-compat4:arm64 (1.23-1) ...
#14 31.01 Setting up libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 31.01 Setting up gcc-11 (11.3.0-1ubuntu1~22.04) ...
#14 31.01 Setting up cpp (4:11.2.0-1ubuntu1) ...
#14 31.02 Setting up gpgconf (2.2.27-3ubuntu2.1) ...
#14 31.02 Setting up libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#14 31.02 Setting up libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#14 31.02 Setting up libx11-6:arm64 (2:1.7.5-1) ...
#14 31.03 Setting up libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#14 31.03 Setting up curl (7.81.0-1ubuntu1.10) ...
#14 31.03 Setting up libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#14 31.03 Setting up libxmuu1:arm64 (2:1.1.3-3) ...
#14 31.03 Setting up gpg (2.2.27-3ubuntu2.1) ...
#14 31.03 Setting up rsync (3.2.7-0ubuntu0.22.04.2) ...
#14 31.05 invoke-rc.d: could not determine current runlevel
#14 31.06 invoke-rc.d: policy-rc.d denied execution of start.
#14 31.14 Setting up gnupg-utils (2.2.27-3ubuntu2.1) ...
#14 31.14 Setting up libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#14 31.14 Setting up gpg-agent (2.2.27-3ubuntu2.1) ...
#14 31.67 Setting up libxcb1-dev:arm64 (1.14-3ubuntu3) ...
#14 31.67 Setting up libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#14 31.67 Setting up openssh-client (1:8.9p1-3ubuntu0.1) ...
#14 31.73 update-alternatives: using /usr/bin/ssh to provide /usr/bin/rsh (rsh) in auto mode
#14 31.73 update-alternatives: warning: skip creation of /usr/share/man/man1/rsh.1.gz because associated file /usr/share/man/man1/ssh.1.gz (of link group rsh) doesn't exist
#14 31.73 update-alternatives: using /usr/bin/slogin to provide /usr/bin/rlogin (rlogin) in auto mode
#14 31.73 update-alternatives: warning: skip creation of /usr/share/man/man1/rlogin.1.gz because associated file /usr/share/man/man1/slogin.1.gz (of link group rlogin) doesn't exist
#14 31.74 update-alternatives: using /usr/bin/scp to provide /usr/bin/rcp (rcp) in auto mode
#14 31.74 update-alternatives: warning: skip creation of /usr/share/man/man1/rcp.1.gz because associated file /usr/share/man/man1/scp.1.gz (of link group rcp) doesn't exist
#14 31.74 Setting up gpgsm (2.2.27-3ubuntu2.1) ...
#14 31.74 Setting up libx11-dev:arm64 (2:1.7.5-1) ...
#14 31.75 Setting up libxext6:arm64 (2:1.3.4-1build1) ...
#14 31.75 Setting up libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#14 31.75 Setting up gcc (4:11.2.0-1ubuntu1) ...
#14 31.76 Setting up dirmngr (2.2.27-3ubuntu2.1) ...
#14 31.94 Setting up perl (5.34.0-3ubuntu1.1) ...
#14 32.06 Setting up libgd3:arm64 (2.3.0-2ubuntu2) ...
#14 32.10 Setting up libdpkg-perl (1.21.1ubuntu2.1) ...
#14 32.11 Setting up libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 32.11 Setting up gpg-wks-server (2.2.27-3ubuntu2.1) ...
#14 32.12 Setting up xauth (1:1.1-1build2) ...
#14 32.12 Setting up libc-devtools (2.35-0ubuntu3.1) ...
#14 32.12 Setting up gpg-wks-client (2.2.27-3ubuntu2.1) ...
#14 32.12 Setting up g++-11 (11.3.0-1ubuntu1~22.04) ...
#14 32.12 Setting up libfile-fcntllock-perl (0.22-3build7) ...
#14 32.13 Setting up libalgorithm-diff-perl (1.201-1) ...
#14 32.13 Setting up dpkg-dev (1.21.1ubuntu2.1) ...
#14 32.13 Setting up liberror-perl (0.17029-1) ...
#14 32.14 Setting up git (1:2.34.1-1ubuntu1.8) ...
#14 32.15 Setting up g++ (4:11.2.0-1ubuntu1) ...
#14 32.18 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#14 32.18 update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist
#14 32.19 Setting up gnupg (2.2.27-3ubuntu2.1) ...
#14 32.19 Setting up build-essential (12.9ubuntu3) ...
#14 32.19 Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
#14 32.20 Setting up libalgorithm-merge-perl (0.08-3) ...
#14 32.20 Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
#14 32.22 Processing triggers for ca-certificates (20211016ubuntu0.22.04.1) ...
#14 32.23 Updating certificates in /etc/ssl/certs...
#14 33.44 0 added, 0 removed; done.
#14 33.44 Running hooks in /etc/ca-certificates/update.d...
#14 33.44 done.
#14 DONE 33.7s

#18 [stage-0  5/10] RUN git config --global user.email "docker@example.com"
#18 sha256:bffa186e06b2cd4084de058d63eb6a62fa2782c669e6c4097b8e951ce3795ef9
#18 DONE 3.1s

#19 [stage-0  6/10] RUN git config --global user.name "Docker"
#19 sha256:219f60fe6a4708842607d38ee0b8bb272c3a59dc3108b3b803e2afabb5eaa686
#19 DONE 0.8s

#20 [stage-0  7/10] RUN git clone https://github.com/ocaml/opam /tmp/opam && cd /tmp/opam && cp -P -R -p . ../opam-sources && git checkout 8bc4698fb9caded0fa5c2bf08fe67a34d732451e && env MAKE='make -j' shell/bootstrap-ocaml.sh && make -C src_ext cache-archives
#20 sha256:115040dfb9e73743927d83993d216c12a1d412d2a00f17e8c131d055e931995c
#20 2.605 Cloning into '/tmp/opam'...
#20 15.92 Note: switching to '8bc4698fb9caded0fa5c2bf08fe67a34d732451e'.
#20 15.92 
#20 15.92 You are in 'detached HEAD' state. You can look around, make experimental
#20 15.92 changes and commit them, and you can discard any commits you make in this
#20 15.92 state without impacting any branches by switching back to a branch.
#20 15.92 
#20 15.92 If you want to create a new branch to retain commits you create, you may
#20 15.92 do so (now or later) by using -c with the switch command. Example:
#20 15.92 
#20 15.92   git switch -c <new-branch-name>
#20 15.92 
#20 15.92 Or undo this operation with:
#20 15.92 
#20 15.92   git switch -
#20 15.92 
#20 15.92 Turn off this advice by setting config variable advice.detachedHead to false
#20 15.92 
#20 15.92 HEAD is now at 8bc4698f Merge pull request #5480 from rjbou/config-invariant
#20 18.28 configure: Configuring OCaml version 4.14.1
#20 18.29 checking build system type... aarch64-unknown-linux-gnu
#20 18.39 checking host system type... aarch64-unknown-linux-gnu
#20 18.39 checking target system type... aarch64-unknown-linux-gnu
#20 18.40 checking for ld... ld
#20 18.40 checking how to print strings... printf
#20 18.40 checking for gcc... gcc
#20 18.45 checking whether the C compiler works... yes
#20 18.52 checking for C compiler default output file name... a.out
#20 18.52 checking for suffix of executables... 
#20 18.57 checking whether we are cross compiling... no
#20 18.64 checking for suffix of object files... o
#20 18.68 checking whether we are using the GNU C compiler... yes
#20 18.71 checking whether gcc accepts -g... yes
#20 18.74 checking for gcc option to accept ISO C89... none needed
#20 18.80 checking for a sed that does not truncate output... /usr/bin/sed
#20 18.81 checking for grep that handles long lines and -e... /usr/bin/grep
#20 18.81 checking for egrep... /usr/bin/grep -E
#20 18.82 checking for fgrep... /usr/bin/grep -F
#20 18.82 checking for ld used by gcc... ld
#20 18.83 checking if the linker (ld) is GNU ld... yes
#20 18.84 checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
#20 18.84 checking the name lister (/usr/bin/nm -B) interface... BSD nm
#20 18.88 checking whether ln -s works... yes
#20 18.88 checking the maximum length of command line arguments... 1572864
#20 18.89 checking how to convert aarch64-unknown-linux-gnu file names to aarch64-unknown-linux-gnu format... func_convert_file_noop
#20 18.89 checking how to convert aarch64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
#20 18.89 checking for ld option to reload object files... -r
#20 18.89 checking for objdump... objdump
#20 18.90 checking how to recognize dependent libraries... pass_all
#20 18.90 checking for dlltool... no
#20 18.90 checking how to associate runtime and link libraries... printf %s\n
#20 18.90 checking for ar... ar
#20 18.90 checking for archiver @FILE support... @
#20 18.94 checking for strip... strip
#20 18.94 checking for ranlib... ranlib
#20 18.94 checking for gawk... no
#20 18.94 checking for mawk... mawk
#20 18.94 checking command to parse /usr/bin/nm -B output from gcc object... ok
#20 19.16 checking for sysroot... no
#20 19.16 checking for a working dd... /usr/bin/dd
#20 19.17 checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
#20 19.18 checking for mt... no
#20 19.18 checking if : is a manifest tool... no
#20 19.18 checking how to run the C preprocessor... gcc -E
#20 19.28 checking for ANSI C header files... yes
#20 19.60 checking for sys/types.h... yes
#20 19.78 checking for sys/stat.h... yes
#20 19.85 checking for stdlib.h... yes
#20 19.90 checking for string.h... yes
#20 19.95 checking for memory.h... yes
#20 20.00 checking for strings.h... yes
#20 20.06 checking for inttypes.h... yes
#20 20.11 checking for stdint.h... yes
#20 20.17 checking for unistd.h... yes
#20 20.22 checking for dlfcn.h... yes
#20 20.27 checking for objdir... .libs
#20 20.37 checking if gcc supports -fno-rtti -fno-exceptions... no
#20 20.41 checking for gcc option to produce PIC... -fPIC -DPIC
#20 20.41 checking if gcc PIC flag -fPIC -DPIC works... yes
#20 20.44 checking if gcc static flag -static works... yes
#20 20.52 checking if gcc supports -c -o file.o... yes
#20 20.57 checking if gcc supports -c -o file.o... (cached) yes
#20 20.57 checking whether the gcc linker (ld) supports shared libraries... yes
#20 20.58 checking whether -lc should be explicitly linked in... no
#20 20.66 checking dynamic linker characteristics... GNU/Linux ld.so
#20 20.97 checking how to hardcode library paths into programs... immediate
#20 20.97 checking whether stripping libraries is possible... yes
#20 21.00 checking if libtool supports shared libraries... yes
#20 21.00 checking whether to build shared libraries... yes
#20 21.00 checking whether to build static libraries... yes
#20 21.01 checking C compiler vendor... gcc-11-3
#20 21.11 checking whether host executables can be run in the build... yes
#20 21.29 checking whether #! works in shell scripts... yes
#20 21.32 checking for flexdll sources... checking for flexlink... no
#20 21.34 checking flexdll.h usability... no
#20 21.46 checking flexdll.h presence... no
#20 21.57 checking for flexdll.h... no
#20 21.60 checking for a BSD-compatible install... /usr/bin/install -c
#20 21.69 checking for cos in -lm... yes
#20 21.79 checking math.h usability... yes
#20 21.83 checking math.h presence... yes
#20 21.86 checking for math.h... yes
#20 21.86 checking for unistd.h... (cached) yes
#20 21.86 checking for stdint.h... (cached) yes
#20 21.86 checking for dirent.h... yes
#20 21.89 checking for sys/select.h... yes
#20 21.92 checking for off_t... yes
#20 22.01 checking size of int... 4
#20 22.09 checking size of long... 8
#20 22.17 checking size of long *... 8
#20 22.25 checking size of short... 2
#20 22.32 checking size of long long... 8
#20 22.40 configure: Target is a 64 bits architecture
#20 22.40 checking whether byte ordering is bigendian... no
#20 22.52 checking alignment of double... 8
#20 22.59 checking alignment of long... 8
#20 22.68 checking alignment of long long... 8
#20 22.77 checking whether the C compiler supports __attribute__((aligned(n)))... yes
#20 22.79 checking whether the C compiler supports __attribute__((optimize("tree-vectorize")))... yes
#20 22.82 checking for ld... ld
#20 22.83 checking for rlwrap... no
#20 22.83 configure: checking semantics of signal handlers
#20 22.83 checking for sigaction... yes
#20 22.89 checking for sigprocmask... yes
#20 22.94 configure: POSIX signal handling found.
#20 22.95 checking for expm1... yes
#20 23.04 checking for log1p... yes
#20 23.14 checking for hypot... yes
#20 23.23 checking for fma... yes
#20 23.32 checking for exp2... yes
#20 23.43 checking for log2... yes
#20 23.53 checking for cbrt... yes
#20 23.61 checking for acosh... yes
#20 23.71 checking for asinh... yes
#20 23.80 checking for atanh... yes
#20 23.89 checking for erf... yes
#20 23.98 checking for erfc... yes
#20 24.12 checking for trunc... yes
#20 24.33 checking for round... yes
#20 24.43 checking for copysign... yes
#20 24.52 checking whether round works... yes
#20 24.59 checking whether fma works... yes
#20 24.66 checking for getrusage... yes
#20 24.72 checking for times... yes
#20 24.77 checking for secure_getenv... yes
#20 24.83 checking for issetugid... no
#20 24.94 checking for library containing clock_gettime... none required
#20 25.01 checking for socket... yes
#20 25.08 checking for socketpair... yes
#20 25.16 checking for bind... yes
#20 25.25 checking for listen... yes
#20 25.32 checking for accept... yes
#20 25.40 checking for connect... yes
#20 25.46 checking for socklen_t... yes
#20 25.54 checking for inet_aton... yes
#20 25.60 checking for struct sockaddr_in6... yes
#20 25.68 checking for getaddrinfo... yes
#20 25.74 checking for getnameinfo... yes
#20 25.80 checking for inet_pton... yes
#20 25.87 checking for inet_ntop... yes
#20 25.94 checking for rewinddir... yes
#20 26.04 checking for lockf... yes
#20 26.10 checking for mkfifo... yes
#20 26.16 checking for getcwd... yes
#20 26.24 checking whether system is declared... yes
#20 26.28 checking for sys/types.h... (cached) yes
#20 26.28 checking utime.h usability... yes
#20 26.31 checking utime.h presence... yes
#20 26.33 checking for utime.h... yes
#20 26.33 checking for utime... yes
#20 26.39 checking for utimes... yes
#20 26.45 checking for fchmod... yes
#20 26.50 checking for fchown... yes
#20 26.56 checking for truncate... yes
#20 26.62 checking for ftruncate... yes
#20 26.68 checking for select... yes
#20 26.74 checking for fd_set... yes
#20 26.85 checking for nanosleep... yes
#20 26.91 checking for symlink... yes
#20 26.97 checking for readlink... yes
#20 27.03 checking for lstat... yes
#20 27.09 checking for realpath... yes
#20 27.15 checking for waitpid... yes
#20 27.22 checking for wait4... yes
#20 27.28 checking for getgroups... yes
#20 27.35 checking for setgroups... yes
#20 27.41 checking for initgroups... yes
#20 27.50 checking termios.h usability... yes
#20 27.54 checking termios.h presence... yes
#20 27.56 checking for termios.h... yes
#20 27.57 checking for tcgetattr... yes
#20 27.63 checking for tcsetattr... yes
#20 27.69 checking for tcsendbreak... yes
#20 27.75 checking for tcflush... yes
#20 27.81 checking for tcflow... yes
#20 27.87 checking for setitimer... yes
#20 27.95 checking for gethostname... yes
#20 28.01 checking sys/utsname.h usability... yes
#20 28.05 checking sys/utsname.h presence... yes
#20 28.07 checking for sys/utsname.h... yes
#20 28.07 checking for uname... yes
#20 28.13 checking for gettimeofday... yes
#20 28.20 checking for mktime... yes
#20 28.26 checking for setsid... yes
#20 28.32 checking for putenv... yes
#20 28.39 checking for setenv... yes
#20 28.45 checking for unsetenv... yes
#20 28.51 checking locale.h usability... yes
#20 28.54 checking locale.h presence... yes
#20 28.57 checking for locale.h... yes
#20 28.57 checking for newlocale... yes
#20 28.63 checking for freelocale... yes
#20 28.70 checking for uselocale... yes
#20 28.77 checking xlocale.h usability... no
#20 28.83 checking xlocale.h presence... no
#20 28.87 checking for xlocale.h... no
#20 28.87 checking for strtod_l... yes
#20 28.93 checking for dlopen... yes
#20 29.01 configure: Dynamic loading of shared libraries is supported.
#20 29.01 checking sys/mman.h usability... yes
#20 29.05 checking sys/mman.h presence... yes
#20 29.08 checking for sys/mman.h... yes
#20 29.08 checking for mmap... yes
#20 29.15 checking for munmap... yes
#20 29.23 checking for pwrite... yes
#20 29.30 checking whether the C compiler supports -fdebug-prefix-map... yes
#20 29.34 checking for struct stat.st_atim.tv_nsec... yes
#20 29.38 configure: stat supports nanosecond precision
#20 29.38 checking how many arguments gethostbyname_r() takes... six
#20 29.47 checking how many arguments gethostbyaddr_r() takes... eight
#20 29.55 checking for mkstemp... yes
#20 29.61 checking for nice... yes
#20 29.68 checking for dup3... yes
#20 29.75 checking for pipe2... yes
#20 29.87 checking for accept4... yes
#20 29.99 checking for getauxval... yes
#20 30.12 checking sys/shm.h usability... yes
#20 30.20 checking sys/shm.h presence... yes
#20 30.23 checking for sys/shm.h... yes
#20 30.24 checking for shmat... yes
#20 30.30 checking for execvpe... yes
#20 30.37 checking spawn.h usability... yes
#20 30.43 checking spawn.h presence... yes
#20 30.47 checking for spawn.h... yes
#20 30.48 checking for posix_spawn... yes
#20 30.58 checking for posix_spawnp... yes
#20 30.64 checking for ffs... yes
#20 30.70 checking for _BitScanForward... no
#20 30.78 configure: replay debugger supported
#20 30.78 checking whether stack overflows can be detected... yes
#20 30.78 checking whether gcc is Clang... no
#20 30.80 checking whether pthreads work with "-pthread" and "-lpthread"... yes
#20 30.87 checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
#20 30.93 checking whether more special flags are required for pthreads... no
#20 30.93 checking for PTHREAD_PRIO_INHERIT... yes
#20 31.00 configure: the POSIX threads library is supported
#20 31.00 checking for sigwait... yes
#20 31.06 checking whether the assembler supports --debug-prefix-map... yes
#20 31.07 checking whether the assembler supports CFI directives... yes
#20 31.11 configure: not using frame pointers
#20 31.11 checking whether mmap supports huge pages... yes
#20 31.27 configure: creating ./config.status
#20 32.18 config.status: creating Makefile.build_config
#20 32.21 config.status: creating Makefile.config
#20 32.25 config.status: creating stdlib/sys.ml
#20 32.33 config.status: creating manual/src/version.tex
#20 32.37 config.status: creating manual/src/html_processing/src/common.ml
#20 32.39 config.status: creating tools/eventlog_metadata
#20 32.41 config.status: creating runtime/caml/m.h
#20 32.42 config.status: creating runtime/caml/s.h
#20 32.44 config.status: creating runtime/caml/version.h
#20 32.45 config.status: executing libtool commands
#20 32.51 make -j -C runtime sak
#20 32.51 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 32.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o sak.o sak.c
#20 32.63 gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -Wl,-E  -o sak sak.o
#20 32.65 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 32.66 make -j coldstart
#20 32.66 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 32.67 make -j -C runtime all
#20 32.68 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 32.74 echo "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs" > ld.conf
#20 32.74 tr -d '\r' < caml/instruct.h | \
#20 32.74 sed -e '/\/\*/d' \
#20 32.74     -e '/^#/d' \
#20 32.74     -e 's/enum /static char * names_of_/' \
#20 32.74     -e 's/{$/[] = {/' \
#20 32.74     -e 's/\([[:upper:]][[:upper:]_0-9]*\)/"\1"/g' > caml/opnames.h
#20 32.74 tr -d '\r' < caml/instruct.h | \
#20 32.74 sed -n -e '/^  /s/ \([A-Z]\)/ \&\&lbl_\1/gp' \
#20 32.74        -e '/^}/q' > caml/jumptbl.h
#20 32.74 echo "/tmp/opam/bootstrap/ocaml/lib/ocaml" >> ld.conf
#20 32.74 echo '/* This file is generated from ../Makefile.config */' > build_config.h
#20 32.76 echo '#define OCAML_STDLIB_DIR "/tmp/opam/bootstrap/ocaml/lib/ocaml"' >> build_config.h
#20 32.76 cp primitives.new primitives
#20 32.76 echo '#define HOST "aarch64-unknown-linux-gnu"' >> build_config.h
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o interp.b.o interp.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o misc.b.o misc.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o stacks.b.o stacks.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fix_code.b.o fix_code.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_aux.b.o startup_aux.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_byt.b.o startup_byt.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o freelist.b.o freelist.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o major_gc.b.o major_gc.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o minor_gc.b.o minor_gc.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memory.b.o memory.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o alloc.b.o alloc.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o roots_byt.b.o roots_byt.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o globroots.b.o globroots.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fail_byt.b.o fail_byt.c
#20 32.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals.b.o signals.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals_byt.b.o signals_byt.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o printexc.b.o printexc.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace_byt.b.o backtrace_byt.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace.b.o backtrace.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compare.b.o compare.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o ints.b.o ints.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o eventlog.b.o eventlog.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o floats.b.o floats.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o str.b.o str.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o array.b.o array.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o io.b.o io.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o extern.b.o extern.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o intern.b.o intern.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o hash.b.o hash.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o sys.b.o sys.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o meta.b.o meta.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o parsing.b.o parsing.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o gc_ctrl.b.o gc_ctrl.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o md5.b.o md5.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o obj.b.o obj.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o lexing.b.o lexing.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o callback.b.o callback.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o debugger.b.o debugger.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o weak.b.o weak.c
#20 32.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compact.b.o compact.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o finalise.b.o finalise.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o custom.b.o custom.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o dynlink.b.o dynlink.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o afl.b.o afl.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o unix.b.o unix.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o bigarray.b.o bigarray.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o main.b.o main.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memprof.b.o memprof.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o domain.b.o domain.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o skiplist.b.o skiplist.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o codefrag.b.o codefrag.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o interp.bd.o interp.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o misc.bd.o misc.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o stacks.bd.o stacks.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o fix_code.bd.o fix_code.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o startup_aux.bd.o startup_aux.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o startup_byt.bd.o startup_byt.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o freelist.bd.o freelist.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o major_gc.bd.o major_gc.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o minor_gc.bd.o minor_gc.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o memory.bd.o memory.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o alloc.bd.o alloc.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o roots_byt.bd.o roots_byt.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o globroots.bd.o globroots.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o fail_byt.bd.o fail_byt.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o signals.bd.o signals.c
#20 32.78 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o signals_byt.bd.o signals_byt.c
#20 32.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o printexc.bd.o printexc.c
#20 32.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o backtrace_byt.bd.o backtrace_byt.c
#20 32.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o backtrace.bd.o backtrace.c
#20 32.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o compare.bd.o compare.c
#20 32.80 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o ints.bd.o ints.c
#20 32.80 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o eventlog.bd.o eventlog.c
#20 32.81 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o floats.bd.o floats.c
#20 32.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o str.bd.o str.c
#20 32.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o array.bd.o array.c
#20 32.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o io.bd.o io.c
#20 32.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o extern.bd.o extern.c
#20 32.84 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o intern.bd.o intern.c
#20 32.84 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o hash.bd.o hash.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o sys.bd.o sys.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o meta.bd.o meta.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o parsing.bd.o parsing.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o gc_ctrl.bd.o gc_ctrl.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o md5.bd.o md5.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o obj.bd.o obj.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o lexing.bd.o lexing.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o callback.bd.o callback.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o debugger.bd.o debugger.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o weak.bd.o weak.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o compact.bd.o compact.c
#20 32.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o finalise.bd.o finalise.c
#20 32.87 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o custom.bd.o custom.c
#20 32.87 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o dynlink.bd.o dynlink.c
#20 32.88 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o afl.bd.o afl.c
#20 32.88 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o unix.bd.o unix.c
#20 32.88 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o bigarray.bd.o bigarray.c
#20 32.88 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o main.bd.o main.c
#20 32.89 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o memprof.bd.o memprof.c
#20 32.89 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o domain.bd.o domain.c
#20 32.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o skiplist.bd.o skiplist.c
#20 32.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o codefrag.bd.o codefrag.c
#20 32.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o instrtrace.bd.o instrtrace.c
#20 32.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o interp.bi.o interp.c
#20 32.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o misc.bi.o misc.c
#20 32.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o stacks.bi.o stacks.c
#20 32.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o fix_code.bi.o fix_code.c
#20 32.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o startup_aux.bi.o startup_aux.c
#20 32.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o startup_byt.bi.o startup_byt.c
#20 32.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o freelist.bi.o freelist.c
#20 32.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o major_gc.bi.o major_gc.c
#20 32.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o minor_gc.bi.o minor_gc.c
#20 32.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o memory.bi.o memory.c
#20 32.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o alloc.bi.o alloc.c
#20 32.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o roots_byt.bi.o roots_byt.c
#20 32.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o globroots.bi.o globroots.c
#20 32.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o fail_byt.bi.o fail_byt.c
#20 32.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o signals.bi.o signals.c
#20 32.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o signals_byt.bi.o signals_byt.c
#20 32.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o printexc.bi.o printexc.c
#20 32.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o backtrace_byt.bi.o backtrace_byt.c
#20 32.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o backtrace.bi.o backtrace.c
#20 32.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o compare.bi.o compare.c
#20 32.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o ints.bi.o ints.c
#20 32.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o eventlog.bi.o eventlog.c
#20 32.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o floats.bi.o floats.c
#20 32.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o str.bi.o str.c
#20 32.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o array.bi.o array.c
#20 33.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o io.bi.o io.c
#20 33.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o extern.bi.o extern.c
#20 33.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o intern.bi.o intern.c
#20 33.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o hash.bi.o hash.c
#20 33.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o sys.bi.o sys.c
#20 33.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o meta.bi.o meta.c
#20 33.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o parsing.bi.o parsing.c
#20 33.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o gc_ctrl.bi.o gc_ctrl.c
#20 33.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o md5.bi.o md5.c
#20 33.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o obj.bi.o obj.c
#20 33.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o lexing.bi.o lexing.c
#20 33.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o callback.bi.o callback.c
#20 33.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o debugger.bi.o debugger.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o weak.bi.o weak.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o compact.bi.o compact.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o finalise.bi.o finalise.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o custom.bi.o custom.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o dynlink.bi.o dynlink.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o afl.bi.o afl.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o unix.bi.o unix.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o bigarray.bi.o bigarray.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o main.bi.o main.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o memprof.bi.o memprof.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o domain.bi.o domain.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o skiplist.bi.o skiplist.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o codefrag.bi.o codefrag.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o interp.bpic.o interp.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o misc.bpic.o misc.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o stacks.bpic.o stacks.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fix_code.bpic.o fix_code.c
#20 33.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_aux.bpic.o startup_aux.c
#20 33.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_byt.bpic.o startup_byt.c
#20 33.08 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o freelist.bpic.o freelist.c
#20 33.09 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o major_gc.bpic.o major_gc.c
#20 33.10 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o minor_gc.bpic.o minor_gc.c
#20 33.10 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memory.bpic.o memory.c
#20 33.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o alloc.bpic.o alloc.c
#20 33.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o roots_byt.bpic.o roots_byt.c
#20 33.12 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o globroots.bpic.o globroots.c
#20 33.12 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fail_byt.bpic.o fail_byt.c
#20 33.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals.bpic.o signals.c
#20 33.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals_byt.bpic.o signals_byt.c
#20 33.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o printexc.bpic.o printexc.c
#20 33.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace_byt.bpic.o backtrace_byt.c
#20 33.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace.bpic.o backtrace.c
#20 33.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compare.bpic.o compare.c
#20 33.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o ints.bpic.o ints.c
#20 33.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o eventlog.bpic.o eventlog.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o floats.bpic.o floats.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o str.bpic.o str.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o array.bpic.o array.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o io.bpic.o io.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o extern.bpic.o extern.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o intern.bpic.o intern.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o hash.bpic.o hash.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o sys.bpic.o sys.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o meta.bpic.o meta.c
#20 33.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o parsing.bpic.o parsing.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o gc_ctrl.bpic.o gc_ctrl.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o md5.bpic.o md5.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o obj.bpic.o obj.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o lexing.bpic.o lexing.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o callback.bpic.o callback.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o debugger.bpic.o debugger.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o weak.bpic.o weak.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compact.bpic.o compact.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o finalise.bpic.o finalise.c
#20 33.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o custom.bpic.o custom.c
#20 33.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o dynlink.bpic.o dynlink.c
#20 33.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o afl.bpic.o afl.c
#20 33.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o unix.bpic.o unix.c
#20 33.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o bigarray.bpic.o bigarray.c
#20 33.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o main.bpic.o main.c
#20 33.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memprof.bpic.o memprof.c
#20 33.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o domain.bpic.o domain.c
#20 33.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o skiplist.bpic.o skiplist.c
#20 33.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o codefrag.bpic.o codefrag.c
#20 33.22 (echo '#define CAML_INTERNALS'; \
#20 33.22          echo '#include "caml/mlvalues.h"'; \
#20 33.22  echo '#include "caml/prims.h"'; \
#20 33.22  sed -e 's/.*/extern value &();/' primitives; \
#20 33.22  echo 'c_primitive caml_builtin_cprim[] = {'; \
#20 33.22  sed -e 's/.*/  &,/' primitives; \
#20 33.22  echo '  0 };'; \
#20 33.22  echo 'char * caml_names_of_builtin_cprim[] = {'; \
#20 33.22  sed -e 's/.*/  "&",/' primitives; \
#20 33.22  echo '  0 };') > prims.c
#20 33.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  \
#20 33.24   -o prims.o prims.c
#20 33.44 rm -f libcamlrund.a && ar rc libcamlrund.a  interp.bd.o misc.bd.o stacks.bd.o fix_code.bd.o startup_aux.bd.o startup_byt.bd.o freelist.bd.o major_gc.bd.o minor_gc.bd.o memory.bd.o alloc.bd.o roots_byt.bd.o globroots.bd.o fail_byt.bd.o signals.bd.o signals_byt.bd.o printexc.bd.o backtrace_byt.bd.o backtrace.bd.o compare.bd.o ints.bd.o eventlog.bd.o floats.bd.o str.bd.o array.bd.o io.bd.o extern.bd.o intern.bd.o hash.bd.o sys.bd.o meta.bd.o parsing.bd.o gc_ctrl.bd.o md5.bd.o obj.bd.o lexing.bd.o callback.bd.o debugger.bd.o weak.bd.o compact.bd.o finalise.bd.o custom.bd.o dynlink.bd.o afl.bd.o unix.bd.o bigarray.bd.o main.bd.o memprof.bd.o domain.bd.o skiplist.bd.o codefrag.bd.o instrtrace.bd.o
#20 33.47 gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -Wl,-E  -g -o ocamlrund prims.o libcamlrund.a -lm  -lpthread
#20 33.47 rm -f libcamlrun.a && ar rc libcamlrun.a  interp.b.o misc.b.o stacks.b.o fix_code.b.o startup_aux.b.o startup_byt.b.o freelist.b.o major_gc.b.o minor_gc.b.o memory.b.o alloc.b.o roots_byt.b.o globroots.b.o fail_byt.b.o signals.b.o signals_byt.b.o printexc.b.o backtrace_byt.b.o backtrace.b.o compare.b.o ints.b.o eventlog.b.o floats.b.o str.b.o array.b.o io.b.o extern.b.o intern.b.o hash.b.o sys.b.o meta.b.o parsing.b.o gc_ctrl.b.o md5.b.o obj.b.o lexing.b.o callback.b.o debugger.b.o weak.b.o compact.b.o finalise.b.o custom.b.o dynlink.b.o afl.b.o unix.b.o bigarray.b.o main.b.o memprof.b.o domain.b.o skiplist.b.o codefrag.b.o
#20 33.49 gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -Wl,-E  -o ocamlrun prims.o libcamlrun.a -lm  -lpthread
#20 33.61 rm -f libcamlruni.a && ar rc libcamlruni.a  interp.bi.o misc.bi.o stacks.bi.o fix_code.bi.o startup_aux.bi.o startup_byt.bi.o freelist.bi.o major_gc.bi.o minor_gc.bi.o memory.bi.o alloc.bi.o roots_byt.bi.o globroots.bi.o fail_byt.bi.o signals.bi.o signals_byt.bi.o printexc.bi.o backtrace_byt.bi.o backtrace.bi.o compare.bi.o ints.bi.o eventlog.bi.o floats.bi.o str.bi.o array.bi.o io.bi.o extern.bi.o intern.bi.o hash.bi.o sys.bi.o meta.bi.o parsing.bi.o gc_ctrl.bi.o md5.bi.o obj.bi.o lexing.bi.o callback.bi.o debugger.bi.o weak.bi.o compact.bi.o finalise.bi.o custom.bi.o dynlink.bi.o afl.bi.o unix.bi.o bigarray.bi.o main.bi.o memprof.bi.o domain.bi.o skiplist.bi.o codefrag.bi.o
#20 33.64 gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -Wl,-E  -o ocamlruni prims.o libcamlruni.a  -lm  -lpthread
#20 33.71 rm -f libcamlrun_pic.a && ar rc libcamlrun_pic.a  interp.bpic.o misc.bpic.o stacks.bpic.o fix_code.bpic.o startup_aux.bpic.o startup_byt.bpic.o freelist.bpic.o major_gc.bpic.o minor_gc.bpic.o memory.bpic.o alloc.bpic.o roots_byt.bpic.o globroots.bpic.o fail_byt.bpic.o signals.bpic.o signals_byt.bpic.o printexc.bpic.o backtrace_byt.bpic.o backtrace.bpic.o compare.bpic.o ints.bpic.o eventlog.bpic.o floats.bpic.o str.bpic.o array.bpic.o io.bpic.o extern.bpic.o intern.bpic.o hash.bpic.o sys.bpic.o meta.bpic.o parsing.bpic.o gc_ctrl.bpic.o md5.bpic.o obj.bpic.o lexing.bpic.o callback.bpic.o debugger.bpic.o weak.bpic.o compact.bpic.o finalise.bpic.o custom.bpic.o dynlink.bpic.o afl.bpic.o unix.bpic.o bigarray.bpic.o main.bpic.o memprof.bpic.o domain.bpic.o skiplist.bpic.o codefrag.bpic.o
#20 33.71 gcc -shared  -o libcamlrun_shared.so interp.bpic.o misc.bpic.o stacks.bpic.o fix_code.bpic.o startup_aux.bpic.o startup_byt.bpic.o freelist.bpic.o major_gc.bpic.o minor_gc.bpic.o memory.bpic.o alloc.bpic.o roots_byt.bpic.o globroots.bpic.o fail_byt.bpic.o signals.bpic.o signals_byt.bpic.o printexc.bpic.o backtrace_byt.bpic.o backtrace.bpic.o compare.bpic.o ints.bpic.o eventlog.bpic.o floats.bpic.o str.bpic.o array.bpic.o io.bpic.o extern.bpic.o intern.bpic.o hash.bpic.o sys.bpic.o meta.bpic.o parsing.bpic.o gc_ctrl.bpic.o md5.bpic.o obj.bpic.o lexing.bpic.o callback.bpic.o debugger.bpic.o weak.bpic.o compact.bpic.o finalise.bpic.o custom.bpic.o dynlink.bpic.o afl.bpic.o unix.bpic.o bigarray.bpic.o main.bpic.o memprof.bpic.o domain.bpic.o skiplist.bpic.o codefrag.bpic.o -lm  -lpthread
#20 33.79 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 33.79 make -j -C stdlib \
#20 33.79   OCAMLRUN='$(ROOTDIR)/runtime/ocamlrun' \
#20 33.79   CAMLC='$(BOOT_OCAMLC) -use-prims ../runtime/primitives' all
#20 33.79 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 33.80 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalFormatBasics.mli
#20 33.80 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalAtomic.mli
#20 33.81 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrun' > camlheader
#20 33.81 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrun' > target_camlheader
#20 33.81 echo '#!' | tr -d '\012' > camlheader_ur
#20 33.81 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrund' > camlheaderd
#20 33.81 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrund' > target_camlheaderd
#20 33.81 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlruni' > camlheaderi
#20 33.81 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlruni' > target_camlheaderi
#20 33.83 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalAtomic.ml
#20 33.92 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalFormatBasics.ml
#20 33.94 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -no-alias-deps -w -49  -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.mli
#20 34.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -no-alias-deps -w -49  -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.ml
#20 34.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.01          -o stdlib__Pervasives.cmo -c pervasives.ml
#20 34.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.01          -o stdlib__Either.cmi -c either.mli
#20 34.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.02          -o stdlib__Sys.cmi -c sys.mli
#20 34.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.02          -o stdlib__Nativeint.cmi -c nativeint.mli
#20 34.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.02          -o stdlib__Int32.cmi -c int32.mli
#20 34.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalLazy.mli
#20 34.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.02          -o stdlib__Bool.cmi -c bool.mli
#20 34.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.02          -o stdlib__Char.cmi -c char.mli
#20 34.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.02          -o stdlib__Uchar.cmi -c uchar.mli
#20 34.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.03          -o stdlib__Int.cmi -c int.mli
#20 34.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.03          -o stdlib__Unit.cmi -c unit.mli
#20 34.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.03          -o stdlib__Marshal.cmi -c marshal.mli
#20 34.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.03          -o stdlib__Int64.cmi -c int64.mli
#20 34.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.03          -o stdlib__Lexing.cmi -c lexing.mli
#20 34.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.03          -o stdlib__Stream.cmi -c stream.mli
#20 34.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.03          -o stdlib__Arg.cmi -c arg.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.04          -o stdlib__Atomic.cmi -c atomic.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.04          -o stdlib__Printexc.cmi -c printexc.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.04          -o stdlib__Fun.cmi -c fun.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.04          -o stdlib__Digest.cmi -c digest.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 34.04          -o stdlib__Scanf.cmi -c scanf.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.04          -o stdlib__Callback.cmi -c callback.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.04          -o stdlib__Filename.cmi -c filename.mli
#20 34.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.04          -o stdlib__Complex.cmi -c complex.mli
#20 34.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.05          -o stdlib__In_channel.cmi -c in_channel.mli
#20 34.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.05          -o stdlib__Out_channel.cmi -c out_channel.mli
#20 34.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c std_exit.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Either.cmo -c either.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Lazy.cmi -c lazy.mli
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Seq.cmi -c seq.mli
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Bool.cmo -c bool.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Char.cmo -c char.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Uchar.cmo -c uchar.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Unit.cmo -c unit.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Int32.cmo -c int32.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Nativeint.cmo -c nativeint.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Sys.cmo -c sys.ml
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Obj.cmi -c obj.mli
#20 34.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.06          -o stdlib__Int.cmo -c int.ml
#20 34.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.07          -o stdlib__Int64.cmo -c int64.ml
#20 34.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.07          -o stdlib__Atomic.cmo -c atomic.ml
#20 34.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.07          -o stdlib__Random.cmi -c random.mli
#20 34.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.07          -o stdlib__Genlex.cmi -c genlex.mli
#20 34.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.07          -o stdlib__Gc.cmi -c gc.mli
#20 34.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.07          -o stdlib__Fun.cmo -c fun.ml
#20 34.08 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.08          -o stdlib__Complex.cmo -c complex.ml
#20 34.08 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.08          -o stdlib__Bigarray.cmi -c bigarray.mli
#20 34.08 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.08          -o stdlib__Out_channel.cmo -c out_channel.ml
#20 34.09 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.09          -o stdlib__Seq.cmo -c seq.ml
#20 34.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.10          -o stdlib__Option.cmi -c option.mli
#20 34.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.10          -o stdlib__Result.cmi -c result.mli
#20 34.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.10          -o stdlib__List.cmi -c list.mli
#20 34.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.10          -o stdlib__Bytes.cmi -c bytes.mli
#20 34.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.10          -o stdlib__String.cmi -c string.mli
#20 34.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.10          -o stdlib__Array.cmi -c array.mli
#20 34.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.10          -o stdlib__Float.cmi -c float.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.11          -o stdlib__Parsing.cmi -c parsing.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.11          -o stdlib__Set.cmi -c set.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.11          -o stdlib__Map.cmi -c map.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.11          -o stdlib__Stack.cmi -c stack.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.11          -o stdlib__Queue.cmi -c queue.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A \
#20 34.11          -o stdlib__Buffer.cmi -c buffer.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.11          -o stdlib__Hashtbl.cmi -c hashtbl.mli
#20 34.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.11          -o stdlib__Callback.cmo -c callback.ml
#20 34.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalOO.mli
#20 34.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalMod.mli
#20 34.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 34.12          -o stdlib__ArrayLabels.cmi -c arrayLabels.mli
#20 34.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 34.12          -o stdlib__ListLabels.cmi -c listLabels.mli
#20 34.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 34.12          -o stdlib__BytesLabels.cmi -c bytesLabels.mli
#20 34.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 34.12          -o stdlib__StringLabels.cmi -c stringLabels.mli
#20 34.13 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.13          -o stdlib__Obj.cmo -c obj.ml
#20 34.13 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalLazy.ml
#20 34.13 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.13          -o stdlib__Lazy.cmo -c lazy.ml
#20 34.13 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.13          -o stdlib__Option.cmo -c option.ml
#20 34.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.14          -o stdlib__Queue.cmo -c queue.ml
#20 34.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.14          -o stdlib__Result.cmo -c result.ml
#20 34.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match -c camlinternalFormat.mli
#20 34.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 34.14          -o stdlib__Printf.cmi -c printf.mli
#20 34.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.14          -o stdlib__Random.cmo -c random.ml
#20 34.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 34.15          -o stdlib__Format.cmi -c format.mli
#20 34.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.15          -o stdlib__Array.cmo -c array.ml
#20 34.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.15          -o stdlib__Parsing.cmo -c parsing.ml
#20 34.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.15          -o stdlib__List.cmo -c list.ml
#20 34.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.15          -o stdlib__Bytes.cmo -c bytes.ml
#20 34.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.15          -o stdlib__String.cmo -c string.ml
#20 34.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.15          -o stdlib__Marshal.cmo -c marshal.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.16          -o stdlib__Lexing.cmo -c lexing.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.16          -o stdlib__Set.cmo -c set.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.16          -o stdlib__Stack.cmo -c stack.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.16          -o stdlib__Stream.cmo -c stream.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A \
#20 34.16          -o stdlib__Buffer.cmo -c buffer.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.16          -o stdlib__Digest.cmo -c digest.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalOO.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -no-principal \
#20 34.16          -o stdlib__Oo.cmi -c oo.mli
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalMod.ml
#20 34.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.16          -o stdlib__Bigarray.cmo -c bigarray.ml
#20 34.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.17          -o stdlib__In_channel.cmo -c in_channel.ml
#20 34.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 34.17          -o stdlib__Float.cmo -c float.ml
#20 34.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.17          -o stdlib__Map.cmo -c map.ml
#20 34.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 34.17          -o stdlib__ArrayLabels.cmo -c arrayLabels.ml
#20 34.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 34.17          -o stdlib__StringLabels.cmo -c stringLabels.ml
#20 34.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.17          -o stdlib__Hashtbl.cmo -c hashtbl.ml
#20 34.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.17          -o stdlib__Weak.cmi -c weak.mli
#20 34.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.18          -o stdlib__Genlex.cmo -c genlex.ml
#20 34.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.18          -o stdlib__Ephemeron.cmi -c ephemeron.mli
#20 34.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 34.18          -o stdlib__ListLabels.cmo -c listLabels.ml
#20 34.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 34.18          -o stdlib__BytesLabels.cmo -c bytesLabels.ml
#20 34.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 34.18          -o stdlib__MoreLabels.cmi -c moreLabels.mli
#20 34.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 34.18          -o stdlib__StdLabels.cmi -c stdLabels.mli
#20 34.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match -c camlinternalFormat.ml
#20 34.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 34.19          -o stdlib__Printf.cmo -c printf.ml
#20 34.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.19          -o stdlib__Arg.cmo -c arg.ml
#20 34.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.19          -o stdlib__Printexc.cmo -c printexc.ml
#20 34.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.19          -o stdlib__Gc.cmo -c gc.ml
#20 34.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 34.19          -o stdlib__Scanf.cmo -c scanf.ml
#20 34.20 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.20          -o stdlib__Oo.cmo -c oo.ml
#20 34.20 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.20          -o stdlib__Filename.cmo -c filename.ml
#20 34.21 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 34.21          -o stdlib__StdLabels.cmo -c stdLabels.ml
#20 34.21 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.21          -o stdlib__Weak.cmo -c weak.ml
#20 34.22 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 34.22          -o stdlib__Format.cmo -c format.ml
#20 34.28 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 34.28          -o stdlib__Ephemeron.cmo -c ephemeron.ml
#20 34.30 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 34.30          -o stdlib__MoreLabels.cmo -c moreLabels.ml
#20 35.95 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -a -o stdlib.cma camlinternalFormatBasics.cmo camlinternalAtomic.cmo stdlib.cmo stdlib__Pervasives.cmo stdlib__Either.cmo stdlib__Sys.cmo stdlib__Obj.cmo camlinternalLazy.cmo stdlib__Lazy.cmo stdlib__Seq.cmo stdlib__Option.cmo stdlib__Result.cmo stdlib__Bool.cmo stdlib__Char.cmo stdlib__Uchar.cmo stdlib__List.cmo stdlib__Int.cmo stdlib__Bytes.cmo stdlib__String.cmo stdlib__Unit.cmo stdlib__Marshal.cmo stdlib__Array.cmo stdlib__Float.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__Stream.cmo stdlib__Buffer.cmo camlinternalFormat.cmo stdlib__Printf.cmo stdlib__Arg.cmo stdlib__Atomic.cmo stdlib__Printexc.cmo stdlib__Fun.cmo stdlib__Gc.cmo stdlib__Digest.cmo stdlib__Random.cmo stdlib__Hashtbl.cmo stdlib__Weak.cmo stdlib__Format.cmo stdlib__Scanf.cmo stdlib__Callback.cmo camlinternalOO.cmo stdlib__Oo.cmo camlinternalMod.cmo stdlib__Genlex.cmo stdlib__Ephemeron.cmo stdlib__Filename.cmo stdlib__Complex.cmo stdlib__ArrayLabels.cmo stdlib__ListLabels.cmo stdlib__BytesLabels.cmo stdlib__StringLabels.cmo stdlib__MoreLabels.cmo stdlib__StdLabels.cmo stdlib__Bigarray.cmo stdlib__In_channel.cmo stdlib__Out_channel.cmo
#20 35.98 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 35.99 cp runtime/ocamlrun boot/ocamlrun
#20 35.99 cd boot; rm -f stdlib.cma std_exit.cmo *.cmi camlheader
#20 35.99 cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
#20 36.01 cd boot; ln -sf ../runtime/libcamlrun.a .
#20 36.01 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 36.01 make -j opt.opt
#20 36.01 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 36.03 make -j checkstack
#20 36.03 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 36.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE   \
#20 36.05   -o tools/checkstack.o tools/checkstack.c
#20 36.09 make -j -C tools  checkstack
#20 36.09 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 36.11 gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -Wl,-E  -o checkstack checkstack.o
#20 36.13 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 36.13 tools/checkstack
#20 36.13 rm tools/checkstack tools/checkstack.o
#20 36.13 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 36.13 make -j coreall
#20 36.14 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 36.15 make -j -C runtime  all
#20 36.15 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 36.27 make[3]: Nothing to be done for 'all'.
#20 36.27 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 36.27 cd stdlib; ln -sf ../runtime/libcamlrun.a .
#20 36.27 make -j ocamlc
#20 36.27 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/warnings.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/longident.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/build_path_prefix_map.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/identifiable.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/load_path.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/allocated_const.mli
#20 36.29 make -j -C utils config.ml
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/config.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/arg_helper.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/profile.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/local_store.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/terminfo.mli
#20 36.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/ccomp.mli
#20 36.30 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/utils'
#20 36.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/targetint.mli
#20 36.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/int_replace_polymorphic_compare.mli
#20 36.30 gcc -E -I runtime/caml utils/domainstate.ml.c > utils/domainstate.ml
#20 36.30 gcc -E -I runtime/caml utils/domainstate.mli.c > utils/domainstate.mli
#20 36.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/binutils.mli
#20 36.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/lazy_backtrack.mli
#20 36.30 cp boot/menhir/menhirLib.ml parsing/camlinternalMenhirLib.ml
#20 36.30 sed -e 's!%%AFL_INSTRUMENT%%!false!' \
#20 36.30     -e 's!%%ARCH%%!arm64!' \
#20 36.30     -e 's!%%ARCMD%%!ar!' \
#20 36.30     -e 's!%%ASM%%!as!' \
#20 36.30     -e 's!%%ASM_CFI_SUPPORTED%%!true!' \
#20 36.30     -e 's!%%BYTECCLIBS%%!-lm  -lpthread!' \
#20 36.30     -e 's!%%CC%%!gcc!' \
#20 36.30     -e 's!%%CCOMPTYPE%%!cc!' \
#20 36.30     -e 's!%%OUTPUTOBJ%%!-o !' \
#20 36.30     -e 's!%%EXT_ASM%%!.s!' \
#20 36.30     -e 's!%%EXT_DLL%%!.so!' \
#20 36.30     -e 's!%%EXE%%!!' \
#20 36.30     -e 's!%%EXT_LIB%%!.a!' \
#20 36.30     -e 's!%%EXT_OBJ%%!.o!' \
#20 36.30     -e 's!%%FLAMBDA%%!false!' \
#20 36.30     -e 's!%%WITH_FLAMBDA_INVARIANTS%%!false!' \
#20 36.30     -e 's!%%WITH_CMM_INVARIANTS%%!false!' \
#20 36.30     -e 's!%%FLEXLINK_FLAGS%%!!' \
#20 36.30     -e 's!%%FLEXDLL_DIR%%!!' \
#20 36.30     -e 's!%%HOST%%!aarch64-unknown-linux-gnu!' \
#20 36.30     -e 's!%%BINDIR%%!/tmp/opam/bootstrap/ocaml/bin!' \
#20 36.30     -e 's!%%LIBDIR%%!/tmp/opam/bootstrap/ocaml/lib/ocaml!' \
#20 36.30     -e 's!%%MKDLL%%!gcc -shared !' \
#20 36.30     -e 's!%%MKEXE%%!gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -Wl,-E !' \
#20 36.30     -e 's!%%FLEXLINK_LDFLAGS%%! -link \\"-Wl,-E\\"!' \
#20 36.30     -e 's!%%FLEXLINK_DLL_LDFLAGS%%!!' \
#20 36.30     -e 's!%%MKMAINDLL%%!gcc -shared !' \
#20 36.30     -e 's!%%MODEL%%!default!' \
#20 36.30     -e 's!%%NATIVECCLIBS%%!-lm !' \
#20 36.30     -e 's!%%OCAMLC_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC !' \
#20 36.30     -e 's!%%OCAMLC_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 !' \
#20 36.30     -e 's!%%OCAMLOPT_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC !' \
#20 36.30     -e 's!%%OCAMLOPT_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 !' \
#20 36.30     -e 's!%%PACKLD%%!ld -r -o !' \
#20 36.30     -e 's!%%PROFINFO_WIDTH%%!0!' \
#20 36.30     -e 's!%%RPATH%%!-Wl,-rpath,!' \
#20 36.30     -e 's!%%MKSHAREDLIBRPATH%%!-Wl,-rpath,!' \
#20 36.30     -e 's!%%FORCE_SAFE_STRING%%!true!' \
#20 36.30     -e 's!%%DEFAULT_SAFE_STRING%%!true!' \
#20 36.30     -e 's!%%WINDOWS_UNICODE%%!0!' \
#20 36.30     -e 's!%%NAKED_POINTERS%%!true!' \
#20 36.30     -e 's!%%SUPPORTS_SHARED_LIBRARIES%%!true!' \
#20 36.30     -e 's!%%SYSTEM%%!linux!' \
#20 36.30     -e 's!%%SYSTHREAD_SUPPORT%%!true!' \
#20 36.30     -e 's!%%TARGET%%!aarch64-unknown-linux-gnu!' \
#20 36.30     -e 's!%%WITH_FRAME_POINTERS%%!false!' \
#20 36.30     -e 's!%%WITH_PROFINFO%%!false!' \
#20 36.30     -e 's!%%FLAT_FLOAT_ARRAY%%!true!' \
#20 36.30     -e 's!%%FUNCTION_SECTIONS%%!true!' \
#20 36.30     -e 's!%%CC_HAS_DEBUG_PREFIX_MAP%%!true!' \
#20 36.30     -e 's!%%AS_HAS_DEBUG_PREFIX_MAP%%!true!' \
#20 36.30     config.mlp > config.ml
#20 36.31 echo '[@@@ocaml.warning "-67"]' > parsing/camlinternalMenhirLib.mli
#20 36.32 ./boot/ocamlrun ./boot/ocamllex -q parsing/lexer.mll
#20 36.32 cat boot/menhir/menhirLib.mli >> parsing/camlinternalMenhirLib.mli
#20 36.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/switch.mli
#20 36.32 lambda/generate_runtimedef.sh runtime/caml/fail.h runtime/primitives > lambda/runtimedef.ml
#20 36.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/runtimedef.mli
#20 36.32 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/utils'
#20 36.32 make -j -C tools make_opcodes
#20 36.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.mli
#20 36.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/dll.mli
#20 36.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/main_args.mli
#20 36.33 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 36.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/makedepend.mli
#20 36.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.mli
#20 36.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/errors.mli
#20 36.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/maindriver.mli
#20 36.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/misc.mli
#20 36.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/build_path_prefix_map.ml -I utils
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/int_replace_polymorphic_compare.ml -I utils
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/domainstate.mli
#20 36.35 ../boot/ocamlrun ../boot/ocamllex -q make_opcodes.mll
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/binutils.ml -I utils
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/camlinternalMenhirLib.mli
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/location.mli
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/config.ml -I utils
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/arg_helper.ml -I utils
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/local_store.ml -I utils
#20 36.35 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. make_opcodes.ml -o make_opcodes
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/terminfo.ml -I utils
#20 36.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/lazy_backtrack.ml -I utils
#20 36.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/runtimedef.ml -I lambda
#20 36.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.ml -I bytecomp
#20 36.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/main.ml -I driver
#20 36.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/switch.ml -I lambda
#20 36.38 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/domainstate.ml -I utils
#20 36.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/asttypes.mli
#20 36.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/annot.mli
#20 36.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.mli
#20 36.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/errors.ml -I driver
#20 36.44 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.ml -I parsing
#20 36.44 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/parsetree.mli
#20 36.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmxs_format.mli
#20 36.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/misc.ml -I utils
#20 36.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/clflags.mli
#20 36.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/profile.ml -I utils
#20 36.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/load_path.ml -I utils
#20 36.45 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 36.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/warnings.ml -I utils
#20 36.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/consistbl.mli
#20 36.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/strongly_connected_components.mli
#20 36.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/targetint.ml -I utils
#20 36.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/diffing.mli
#20 36.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/longident.ml -I parsing
#20 36.47 ./runtime/ocamlrun tools/make_opcodes -opcodes < runtime/caml/instruct.h > bytecomp/opcodes.ml
#20 36.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/dll.ml -I bytecomp
#20 36.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/ident.mli
#20 36.51 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/linkage_name.mli
#20 36.51 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/tag.mli
#20 36.52 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/static_exception.mli
#20 36.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/numbers.mli
#20 36.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/identifiable.ml -I utils
#20 36.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/ccomp.ml -I utils
#20 36.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/consistbl.ml -I utils
#20 36.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/diffing.ml -I utils
#20 36.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/diffing_with_keys.mli
#20 36.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/location.ml -I parsing
#20 36.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/docstrings.mli
#20 36.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/pprintast.mli
#20 36.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/camlinternalMenhirLib.ml -I parsing
#20 36.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/parse.mli
#20 36.58 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/printast.mli
#20 36.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.mli
#20 36.61 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_iterator.mli
#20 36.62 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/attr_helper.mli
#20 36.62 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/builtin_attributes.mli
#20 36.62 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_invariants.mli
#20 36.63 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/depend.mli
#20 36.65 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/ident.ml -I typing
#20 36.65 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -i bytecomp/opcodes.ml > bytecomp/opcodes.mli
#20 36.67 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/pparse.mli
#20 36.67 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compenv.mli
#20 36.67 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/type_immediacy.mli
#20 36.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/path.mli
#20 36.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/debuginfo.mli
#20 36.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/compilation_unit.mli
#20 36.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/numbers.ml -I utils
#20 36.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/clflags.ml -I utils
#20 36.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/strongly_connected_components.ml -I utils
#20 36.69 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/diffing_with_keys.ml -I utils
#20 36.69 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/docstrings.ml -I parsing
#20 36.69 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_helper.mli
#20 36.69 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/printast.ml -I parsing
#20 36.71 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_iterator.ml -I parsing
#20 36.71 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/attr_helper.ml -I parsing
#20 36.71 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/builtin_attributes.ml -I parsing
#20 36.71 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_invariants.ml -I parsing
#20 36.71 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/depend.ml -I parsing
#20 36.73 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.mli
#20 36.73 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/pparse.ml -I driver
#20 36.73 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compenv.ml -I driver
#20 36.73 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/main_args.ml -I driver
#20 36.75 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/outcometree.mli
#20 36.75 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/shape.mli
#20 36.75 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_id.mli
#20 36.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/export_id.mli
#20 36.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/backend_var.mli
#20 36.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/path.ml -I typing
#20 36.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/type_immediacy.ml -I typing
#20 36.77 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/debuginfo.ml -I lambda
#20 36.77 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.ml -I bytecomp
#20 36.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_helper.ml -I parsing
#20 36.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/pprintast.ml -I parsing
#20 36.78 sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.ml > parsing/parser.ml
#20 36.78 sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.mli > parsing/parser.mli
#20 36.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.ml -I parsing
#20 36.80 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/primitive.mli
#20 36.80 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/oprint.mli
#20 36.80 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/parser.mli
#20 36.82 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_origin.mli
#20 36.83 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/primitive.ml -I typing
#20 36.83 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/oprint.ml -I typing
#20 36.86 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/parser.ml -I parsing
#20 36.86 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/lexer.mli
#20 36.86 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/types.mli
#20 36.86 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/shape.ml -I typing
#20 36.89 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/lexer.ml -I parsing
#20 36.89 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/parse.ml -I parsing
#20 36.89 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/makedepend.ml -I driver
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/subst.mli
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmi_format.mli
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/types.ml -I typing
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/btype.mli
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/predef.mli
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/datarepr.mli
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/errortrace.mli
#20 36.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/signature_group.mli
#20 37.02 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/env.mli
#20 37.02 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmi_format.ml -I file_formats
#20 37.02 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/persistent_env.mli
#20 37.03 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/errortrace.ml -I typing
#20 37.06 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/btype.ml -I typing
#20 37.06 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/subst.ml -I typing
#20 37.06 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/predef.ml -I typing
#20 37.06 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/datarepr.ml -I typing
#20 37.06 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/signature_group.ml -I typing
#20 37.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/persistent_env.ml -I typing
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/lambda.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/env.ml -I typing
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedtree.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/ctype.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printtyp.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/mtype.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/envaux.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_properties.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_unboxed.mli
#20 37.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compmisc.mli
#20 37.12 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.mli
#20 37.16 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_properties.ml -I typing
#20 37.16 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_immediacy.mli
#20 37.16 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_separability.mli
#20 37.18 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/envaux.ml -I typing
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmo_format.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/internal_variable_names.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/clambda_primitives.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/lambda.ml -I lambda
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/printlambda.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translobj.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/tmc.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/simplif.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/instruct.mli
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/ctype.ml -I typing
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printtyp.ml -I typing
#20 37.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includeclass.mli
#20 37.20 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/mtype.ml -I typing
#20 37.20 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_unboxed.ml -I typing
#20 37.20 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_immediacy.ml -I typing
#20 37.20 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_separability.ml -I typing
#20 37.22 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/tmc.ml -I lambda
#20 37.22 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/symtable.mli
#20 37.23 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/simplif.ml -I lambda
#20 37.23 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/variable.mli
#20 37.23 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translobj.ml -I lambda
#20 37.23 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/printlambda.ml -I lambda
#20 37.25 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/clambda.mli
#20 37.25 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includeclass.ml -I typing
#20 37.25 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/meta.mli
#20 37.25 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/instruct.ml -I bytecomp
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedtree.ml -I typing
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printtyped.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includecore.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/tast_iterator.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/tast_mapper.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/stypes.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmt_format.mli
#20 37.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/untypeast.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typetexp.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printpat.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/patterns.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/parmatch.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_variance.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typeopt.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/rec_check.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typecore.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typeclass.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/matching.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translattribute.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translprim.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translcore.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translclass.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translmod.mli
#20 37.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compile_common.mli
#20 37.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.ml -I bytecomp
#20 37.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/meta.ml -I bytecomp
#20 37.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/symtable.ml -I bytecomp
#20 37.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printtyped.ml -I typing
#20 37.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/stypes.ml -I typing
#20 37.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.ml -I bytecomp
#20 37.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.ml -I bytecomp
#20 37.31 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printpat.ml -I typing
#20 37.31 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.ml -I bytecomp
#20 37.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/tast_iterator.ml -I typing
#20 37.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.ml -I bytecomp
#20 37.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includecore.ml -I typing
#20 37.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includemod.mli
#20 37.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/tast_mapper.ml -I typing
#20 37.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translattribute.ml -I lambda
#20 37.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compile.mli
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/patterns.ml -I typing
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typeopt.ml -I typing
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/rec_check.ml -I typing
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_element.mli
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/symbol.mli
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/parameter.mli
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/mutable_variable.mli
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/untypeast.ml -I typing
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typetexp.ml -I typing
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translprim.ml -I lambda
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/parmatch.ml -I typing
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/matching.ml -I lambda
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmt_format.ml -I file_formats
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/cmt2annot.ml -I typing
#20 37.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_variance.ml -I typing
#20 37.34 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl.mli
#20 37.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translclass.ml -I lambda
#20 37.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translmod.ml -I lambda
#20 37.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translcore.ml -I lambda
#20 37.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compile.ml -I driver
#20 37.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/maindriver.ml -I driver
#20 37.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/var_within_closure.mli
#20 37.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_id.mli
#20 37.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl.ml -I typing
#20 37.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typecore.ml -I typing
#20 37.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typeclass.ml -I typing
#20 37.42 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includemod.ml -I typing
#20 37.42 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includemod_errorprinter.mli
#20 37.42 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typemod.mli
#20 37.46 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includemod_errorprinter.ml -I typing
#20 37.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_origin.mli
#20 37.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/projection.mli
#20 37.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typemod.ml -I typing
#20 37.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compmisc.ml -I driver
#20 37.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compile_common.ml -I driver
#20 37.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.ml -I bytecomp
#20 37.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda.mli
#20 37.67 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/freshening.mli
#20 37.72 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simple_value_approx.mli
#20 37.77 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -o compilerlibs/ocamlbytecomp.cma bytecomp/instruct.cmo bytecomp/bytegen.cmo bytecomp/printinstr.cmo bytecomp/emitcode.cmo bytecomp/bytelink.cmo bytecomp/bytelibrarian.cmo bytecomp/bytepackager.cmo driver/errors.cmo driver/compile.cmo driver/maindriver.cmo
#20 37.82 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info.mli
#20 37.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmx_format.mli
#20 43.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -linkall -o compilerlibs/ocamlcommon.cma utils/config.cmo utils/build_path_prefix_map.cmo utils/misc.cmo utils/identifiable.cmo utils/numbers.cmo utils/arg_helper.cmo utils/clflags.cmo utils/profile.cmo utils/local_store.cmo utils/load_path.cmo utils/terminfo.cmo utils/ccomp.cmo utils/warnings.cmo utils/consistbl.cmo utils/strongly_connected_components.cmo utils/targetint.cmo utils/int_replace_polymorphic_compare.cmo utils/domainstate.cmo utils/binutils.cmo utils/lazy_backtrack.cmo utils/diffing.cmo utils/diffing_with_keys.cmo parsing/location.cmo parsing/longident.cmo parsing/docstrings.cmo parsing/syntaxerr.cmo parsing/ast_helper.cmo parsing/pprintast.cmo parsing/camlinternalMenhirLib.cmo parsing/parser.cmo parsing/lexer.cmo parsing/parse.cmo parsing/printast.cmo parsing/ast_mapper.cmo parsing/ast_iterator.cmo parsing/attr_helper.cmo parsing/builtin_attributes.cmo parsing/ast_invariants.cmo parsing/depend.cmo typing/ident.cmo typing/path.cmo typing/primitive.cmo typing/type_immediacy.cmo typing/shape.cmo typing/types.cmo typing/btype.cmo typing/oprint.cmo typing/subst.cmo typing/predef.cmo typing/datarepr.cmo file_formats/cmi_format.cmo typing/persistent_env.cmo typing/env.cmo typing/errortrace.cmo typing/typedtree.cmo typing/signature_group.cmo typing/printtyped.cmo typing/ctype.cmo typing/printtyp.cmo typing/includeclass.cmo typing/mtype.cmo typing/envaux.cmo typing/includecore.cmo typing/tast_iterator.cmo typing/tast_mapper.cmo typing/stypes.cmo file_formats/cmt_format.cmo typing/cmt2annot.cmo typing/untypeast.cmo typing/includemod.cmo typing/includemod_errorprinter.cmo typing/typetexp.cmo typing/printpat.cmo typing/patterns.cmo typing/parmatch.cmo typing/typedecl_properties.cmo typing/typedecl_variance.cmo typing/typedecl_unboxed.cmo typing/typedecl_immediacy.cmo typing/typedecl_separability.cmo typing/typedecl.cmo typing/typeopt.cmo typing/rec_check.cmo typing/typecore.cmo typing/typeclass.cmo typing/typemod.cmo lambda/debuginfo.cmo lambda/lambda.cmo lambda/printlambda.cmo lambda/switch.cmo lambda/matching.cmo lambda/translobj.cmo lambda/translattribute.cmo lambda/translprim.cmo lambda/translcore.cmo lambda/translclass.cmo lambda/translmod.cmo lambda/tmc.cmo lambda/simplif.cmo lambda/runtimedef.cmo bytecomp/meta.cmo bytecomp/opcodes.cmo bytecomp/bytesections.cmo bytecomp/dll.cmo bytecomp/symtable.cmo driver/pparse.cmo driver/compenv.cmo driver/main_args.cmo driver/compmisc.cmo driver/makedepend.cmo driver/compile_common.cmo
#20 43.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -compat-32 -o ocamlc compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma driver/main.cmo
#20 44.24 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.24 make -j ocamllex ocamltools library
#20 44.25 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.27 make -j -C yacc  all
#20 44.28 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 44.28 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/backend_intf.mli
#20 44.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_cost.mli
#20 44.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.29   -o closure.o closure.c
#20 44.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/internal_variable_names.ml -I middle_end
#20 44.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.30   -o error.o error.c
#20 44.31 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.31   -o lalr.o lalr.c
#20 44.31 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/linkage_name.ml -I middle_end
#20 44.31 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/compilation_unit.ml -I middle_end
#20 44.31 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.31   -o lr0.o lr0.c
#20 44.32 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.32   -o main.o main.c
#20 44.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.33   -o mkpar.o mkpar.c
#20 44.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.33   -o output.o output.c
#20 44.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.34   -o reader.o reader.c
#20 44.34 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/variable.ml -I middle_end
#20 44.34 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_element.ml -I middle_end/flambda/base_types
#20 44.35 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.35   -o skeleton.o skeleton.c
#20 44.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_id.ml -I middle_end/flambda/base_types
#20 44.35 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.35   -o symtab.o symtab.c
#20 44.36 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.36   -o verbose.o verbose.c
#20 44.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/symbol.ml -I middle_end
#20 44.37 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../runtime  \
#20 44.37   -o warshall.o warshall.c
#20 44.38 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/backend_var.ml -I middle_end
#20 44.39 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/clambda_primitives.ml -I middle_end
#20 44.39 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda_primitives.mli
#20 44.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/clambda.ml -I middle_end
#20 44.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda.mli
#20 44.42 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/semantics_of_primitives.mli
#20 44.43 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/convert_primitives.mli
#20 44.44 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/id_types.mli
#20 44.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/tag.ml -I middle_end/flambda/base_types
#20 44.46 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/mutable_variable.ml -I middle_end/flambda/base_types
#20 44.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_origin.ml -I middle_end/flambda/base_types
#20 44.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_origin.ml -I middle_end/flambda/base_types
#20 44.48 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/var_within_closure.ml -I middle_end/flambda/base_types
#20 44.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/static_exception.ml -I middle_end/flambda/base_types
#20 44.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/pass_wrapper.mli
#20 44.51 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/allocated_const.ml -I middle_end/flambda
#20 44.51 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/parameter.ml -I middle_end/flambda
#20 44.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/projection.ml -I middle_end/flambda
#20 44.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda.ml -I middle_end/flambda
#20 44.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_iterators.mli
#20 44.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_utils.mli
#20 44.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/effect_analysis.mli
#20 44.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info.ml -I middle_end/flambda
#20 44.58 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info_for_pack.mli
#20 44.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/compilenv.mli
#20 44.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure/closure.mli
#20 44.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure/closure_middle_end.mli
#20 44.61 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/import_approx.mli
#20 44.63 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_code.mli
#20 44.64 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_conversion_aux.mli
#20 44.65 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_conversion.mli
#20 44.65 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/initialize_symbol_to_let_symbol.mli
#20 44.65 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_let_to_initialize_symbol.mli
#20 44.66 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/find_recursive_functions.mli
#20 44.66 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/invariant_params.mli
#20 44.67 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inconstant_idents.mli
#20 44.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/alias_analysis.mli
#20 44.69 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_constants.mli
#20 44.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/share_constants.mli
#20 44.71 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_common.mli
#20 44.71 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_arguments.mli
#20 44.72 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_closure_vars.mli
#20 44.72 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_program_constructs.mli
#20 44.73 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_primitives.mli
#20 44.74 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_free_vars_equal_to_args.mli
#20 44.74 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/ref_to_variables.mli
#20 44.75 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_invariants.mli
#20 44.75 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/traverse_for_exported_symbols.mli
#20 44.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/build_export_info.mli
#20 44.77 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_offsets.mli
#20 44.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/un_anf.mli
#20 44.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_to_clambda.mli
#20 44.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_middle_end.mli
#20 44.80 make -j -C stdlib  all
#20 44.81 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats_types.mli
#20 44.81 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 44.81 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops_intf.mli
#20 44.82 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda_primitives.ml -I middle_end
#20 44.83 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda.ml -I middle_end
#20 44.84 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/semantics_of_primitives.ml -I middle_end
#20 44.85 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/convert_primitives.ml -I middle_end
#20 44.85 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/id_types.ml -I middle_end/flambda/base_types
#20 44.85 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/export_id.ml -I middle_end/flambda/base_types
#20 44.86 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_id.ml -I middle_end/flambda/base_types
#20 44.88 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/pass_wrapper.ml -I middle_end/flambda
#20 44.88 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_iterators.ml -I middle_end/flambda
#20 44.90 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_utils.ml -I middle_end/flambda
#20 44.90 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalFormatBasics.mli
#20 44.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/freshening.ml -I middle_end/flambda
#20 44.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/effect_analysis.ml -I middle_end/flambda
#20 44.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_cost.ml -I middle_end/flambda
#20 44.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simple_value_approx.ml -I middle_end/flambda
#20 44.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info_for_pack.ml -I middle_end/flambda
#20 44.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalAtomic.mli
#20 44.95 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/compilenv.ml -I middle_end
#20 44.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure/closure.ml -I middle_end/closure
#20 44.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure/closure_middle_end.ml -I middle_end/closure
#20 44.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/import_approx.ml -I middle_end/flambda
#20 44.98 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalAtomic.ml
#20 44.98 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_code.ml -I middle_end/flambda
#20 44.99 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_conversion_aux.ml -I middle_end/flambda
#20 45.00 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_conversion.ml -I middle_end/flambda
#20 45.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/initialize_symbol_to_let_symbol.ml -I middle_end/flambda
#20 45.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_let_to_initialize_symbol.ml -I middle_end/flambda
#20 45.02 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/find_recursive_functions.ml -I middle_end/flambda
#20 45.03 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/invariant_params.ml -I middle_end/flambda
#20 45.04 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inconstant_idents.ml -I middle_end/flambda
#20 45.05 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/alias_analysis.ml -I middle_end/flambda
#20 45.05 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_constants.ml -I middle_end/flambda
#20 45.05 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/share_constants.ml -I middle_end/flambda
#20 45.07 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_common.ml -I middle_end/flambda
#20 45.08 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_arguments.ml -I middle_end/flambda
#20 45.08 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalFormatBasics.ml
#20 45.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_closure_vars.ml -I middle_end/flambda
#20 45.10 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_program_constructs.ml -I middle_end/flambda
#20 45.10 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -no-alias-deps -w -49  -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.mli
#20 45.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops.mli
#20 45.12 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats_types.ml -I middle_end/flambda
#20 45.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats.mli
#20 45.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_free_vars_equal_to_args.ml -I middle_end/flambda
#20 45.15 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/ref_to_variables.ml -I middle_end/flambda
#20 45.16 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_invariants.ml -I middle_end/flambda
#20 45.17 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/traverse_for_exported_symbols.ml -I middle_end/flambda
#20 45.17 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_offsets.ml -I middle_end/flambda
#20 45.17 gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -Wl,-E  -o ocamlyacc closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o skeleton.o symtab.o verbose.o warshall.o 
#20 45.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/un_anf.ml -I middle_end/flambda
#20 45.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_to_clambda.ml -I middle_end/flambda
#20 45.20 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify_aux.mli
#20 45.21 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops.ml -I middle_end/flambda
#20 45.21 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_primitives.ml -I middle_end/flambda
#20 45.22 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats.ml -I middle_end/flambda
#20 45.26 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 45.26 make -j -C lex all
#20 45.27 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 45.28 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot cset.mli
#20 45.28 ../yacc/ocamlyacc -v parser.mly
#20 45.28 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -no-alias-deps -w -49  -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.ml
#20 45.28 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.28          -o stdlib__Pervasives.cmo -c pervasives.ml
#20 45.29 ../boot/ocamlrun ../boot/ocamllex -q lexer.mll
#20 45.29 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot table.mli
#20 45.29 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.29          -o stdlib__Either.cmi -c either.mli
#20 45.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_decision_intf.mli
#20 45.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify_aux.ml -I middle_end/flambda
#20 45.30 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.30          -o stdlib__Sys.cmi -c sys.mli
#20 45.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/extract_projections.mli
#20 45.31 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot cset.ml
#20 45.31 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.31          -o stdlib__Nativeint.cmi -c nativeint.mli
#20 45.31 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/augment_specialised_args.mli
#20 45.31 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot syntax.mli
#20 45.31 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.31          -o stdlib__Int32.cmi -c int32.mli
#20 45.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_free_vars_of_closures.mli
#20 45.32 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot table.ml
#20 45.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_specialised_args.mli
#20 45.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_closures.mli
#20 45.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify.mli
#20 45.33 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot syntax.ml
#20 45.33 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot parser.mli
#20 45.34 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalLazy.mli
#20 45.35 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.35          -o stdlib__Seq.cmi -c seq.mli
#20 45.35 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.35          -o stdlib__Bool.cmi -c bool.mli
#20 45.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/build_export_info.ml -I middle_end/flambda
#20 45.35 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.mli
#20 45.35 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.35          -o stdlib__Char.cmi -c char.mli
#20 45.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/extract_projections.ml -I middle_end/flambda
#20 45.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_free_vars_of_closures.ml -I middle_end/flambda
#20 45.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_transforms.mli
#20 45.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_decision.mli
#20 45.36 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.36          -o stdlib__Uchar.cmi -c uchar.mli
#20 45.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/augment_specialised_args.ml -I middle_end/flambda
#20 45.37 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.37          -o stdlib__Int.cmi -c int.mli
#20 45.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_specialised_args.ml -I middle_end/flambda
#20 45.37 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.37          -o stdlib__Unit.cmi -c unit.mli
#20 45.37 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.37          -o stdlib__Marshal.cmi -c marshal.mli
#20 45.37 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.37          -o stdlib__Int32.cmo -c int32.ml
#20 45.37 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot parser.ml
#20 45.37 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot lexer.mli
#20 45.37 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.37          -o stdlib__Int64.cmi -c int64.mli
#20 45.38 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_closures.ml -I middle_end/flambda
#20 45.38 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.ml
#20 45.38 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot compact.mli
#20 45.38 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.38          -o stdlib__Nativeint.cmo -c nativeint.ml
#20 45.38 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot common.mli
#20 45.39 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.39          -o stdlib__Lexing.cmi -c lexing.mli
#20 45.39 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.39          -o stdlib__Stream.cmi -c stream.mli
#20 45.39 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.39          -o stdlib__Arg.cmi -c arg.mli
#20 45.39 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.39          -o stdlib__Atomic.cmi -c atomic.mli
#20 45.39 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.39          -o stdlib__Printexc.cmi -c printexc.mli
#20 45.39 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_middle_end.ml -I middle_end/flambda
#20 45.39 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.39          -o stdlib__Fun.cmi -c fun.mli
#20 45.40 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.40          -o stdlib__Digest.cmi -c digest.mli
#20 45.40 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 45.40          -o stdlib__Scanf.cmi -c scanf.mli
#20 45.40 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot lexer.ml
#20 45.40 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.40          -o stdlib__Callback.cmi -c callback.mli
#20 45.40 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.40          -o stdlib__Filename.cmi -c filename.mli
#20 45.40 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.40          -o stdlib__Complex.cmi -c complex.mli
#20 45.41 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 45.41          -o stdlib__ArrayLabels.cmi -c arrayLabels.mli
#20 45.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify.ml -I middle_end/flambda
#20 45.41 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 45.41          -o stdlib__ListLabels.cmi -c listLabels.mli
#20 45.41 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 45.41          -o stdlib__BytesLabels.cmi -c bytesLabels.mli
#20 45.41 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot compact.ml
#20 45.41 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot common.ml
#20 45.41 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 45.41          -o stdlib__StringLabels.cmi -c stringLabels.mli
#20 45.41 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot output.mli
#20 45.41 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.mli
#20 45.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_transforms.ml -I middle_end/flambda
#20 45.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_decision.ml -I middle_end/flambda
#20 45.42 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.42          -o stdlib__In_channel.cmi -c in_channel.mli
#20 45.42 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.42          -o stdlib__Out_channel.cmi -c out_channel.mli
#20 45.43 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c std_exit.ml
#20 45.43 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.43          -o stdlib__Either.cmo -c either.ml
#20 45.43 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.43          -o stdlib__Sys.cmo -c sys.ml
#20 45.44 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.44          -o stdlib__Obj.cmi -c obj.mli
#20 45.44 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.44          -o stdlib__Lazy.cmi -c lazy.mli
#20 45.44 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot output.ml
#20 45.44 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.44          -o stdlib__Option.cmi -c option.mli
#20 45.44 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.44          -o stdlib__Result.cmi -c result.mli
#20 45.44 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.44          -o stdlib__Bool.cmo -c bool.ml
#20 45.45 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.ml
#20 45.45 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot main.ml
#20 45.45 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.45          -o stdlib__Char.cmo -c char.ml
#20 45.46 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.46          -o stdlib__Uchar.cmo -c uchar.ml
#20 45.46 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.46          -o stdlib__List.cmi -c list.mli
#20 45.46 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.46          -o stdlib__Int.cmo -c int.ml
#20 45.46 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.46          -o stdlib__Bytes.cmi -c bytes.mli
#20 45.46 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.46          -o stdlib__String.cmi -c string.mli
#20 45.46 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.46          -o stdlib__Unit.cmo -c unit.ml
#20 45.46 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.46          -o stdlib__Array.cmi -c array.mli
#20 45.47 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.47          -o stdlib__Float.cmi -c float.mli
#20 45.47 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.47          -o stdlib__Int64.cmo -c int64.ml
#20 45.47 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.47          -o stdlib__Set.cmi -c set.mli
#20 45.48 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.48          -o stdlib__Map.cmi -c map.mli
#20 45.48 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.48          -o stdlib__Stack.cmi -c stack.mli
#20 45.48 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.48          -o stdlib__Queue.cmi -c queue.mli
#20 45.48 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A \
#20 45.48          -o stdlib__Buffer.cmi -c buffer.mli
#20 45.48 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.48          -o stdlib__Atomic.cmo -c atomic.ml
#20 45.49 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.49          -o stdlib__Fun.cmo -c fun.ml
#20 45.50 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.50          -o stdlib__Gc.cmi -c gc.mli
#20 45.50 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.50          -o stdlib__Random.cmi -c random.mli
#20 45.51 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.51          -o stdlib__Hashtbl.cmi -c hashtbl.mli
#20 45.51 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.51          -o stdlib__Callback.cmo -c callback.ml
#20 45.51 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalOO.mli
#20 45.51 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalMod.mli
#20 45.51 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.51          -o stdlib__Genlex.cmi -c genlex.mli
#20 45.52 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.52          -o stdlib__Complex.cmo -c complex.ml
#20 45.52 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 45.52          -o stdlib__ArrayLabels.cmo -c arrayLabels.ml
#20 45.52 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 45.52          -o stdlib__ListLabels.cmo -c listLabels.ml
#20 45.52 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 45.52          -o stdlib__BytesLabels.cmo -c bytesLabels.ml
#20 45.52 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 45.52          -o stdlib__StringLabels.cmo -c stringLabels.ml
#20 45.52 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 45.52          -o stdlib__StdLabels.cmi -c stdLabels.mli
#20 45.53 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.53          -o stdlib__Bigarray.cmi -c bigarray.mli
#20 45.53 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.53          -o stdlib__In_channel.cmo -c in_channel.ml
#20 45.53 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.53          -o stdlib__Out_channel.cmo -c out_channel.ml
#20 45.54 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.54          -o stdlib__Obj.cmo -c obj.ml
#20 45.54 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalLazy.ml
#20 45.54 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.54          -o stdlib__Lazy.cmo -c lazy.ml
#20 45.54 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.54          -o stdlib__Seq.cmo -c seq.ml
#20 45.54 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.54          -o stdlib__Option.cmo -c option.ml
#20 45.55 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.55          -o stdlib__Result.cmo -c result.ml
#20 45.56 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.56          -o stdlib__List.cmo -c list.ml
#20 45.57 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.57          -o stdlib__Bytes.cmo -c bytes.ml
#20 45.57 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.57          -o stdlib__String.cmo -c string.ml
#20 45.58 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.58          -o stdlib__Marshal.cmo -c marshal.ml
#20 45.60 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.60          -o stdlib__Array.cmo -c array.ml
#20 45.60 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 45.60          -o stdlib__Float.cmo -c float.ml
#20 45.60 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.60          -o stdlib__Lexing.cmo -c lexing.ml
#20 45.60 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.60          -o stdlib__Parsing.cmi -c parsing.mli
#20 45.60 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.60          -o stdlib__Set.cmo -c set.ml
#20 45.60 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.60          -o stdlib__Map.cmo -c map.ml
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.61          -o stdlib__Stack.cmo -c stack.ml
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.61          -o stdlib__Queue.cmo -c queue.ml
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.61          -o stdlib__Stream.cmo -c stream.ml
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A \
#20 45.61          -o stdlib__Buffer.cmo -c buffer.ml
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match -c camlinternalFormat.mli
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 45.61          -o stdlib__Printf.cmi -c printf.mli
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.61          -o stdlib__Digest.cmo -c digest.ml
#20 45.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.61          -o stdlib__Random.cmo -c random.ml
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.62          -o stdlib__Hashtbl.cmo -c hashtbl.ml
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.62          -o stdlib__Weak.cmi -c weak.mli
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 45.62          -o stdlib__Format.cmi -c format.mli
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalOO.ml
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -no-principal \
#20 45.62          -o stdlib__Oo.cmi -c oo.mli
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalMod.ml
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.62          -o stdlib__Genlex.cmo -c genlex.ml
#20 45.62 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.62          -o stdlib__Ephemeron.cmi -c ephemeron.mli
#20 45.63 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 45.63          -o stdlib__MoreLabels.cmi -c moreLabels.mli
#20 45.63 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 45.63          -o stdlib__StdLabels.cmo -c stdLabels.ml
#20 45.63 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.63          -o stdlib__Bigarray.cmo -c bigarray.ml
#20 45.64 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.64          -o stdlib__Parsing.cmo -c parsing.ml
#20 45.65 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.65          -o stdlib__Arg.cmo -c arg.ml
#20 45.65 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.65          -o stdlib__Printexc.cmo -c printexc.ml
#20 45.65 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.65          -o stdlib__Gc.cmo -c gc.ml
#20 45.65 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.65          -o stdlib__Oo.cmo -c oo.ml
#20 45.67 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.67          -o stdlib__Filename.cmo -c filename.ml
#20 45.67 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match -c camlinternalFormat.ml
#20 45.67 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 45.67          -o stdlib__Printf.cmo -c printf.ml
#20 45.67 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.67          -o stdlib__Weak.cmo -c weak.ml
#20 45.67 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 45.67          -o stdlib__Scanf.cmo -c scanf.ml
#20 45.68 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives  -compat-32 -o ocamllex cset.cmo syntax.cmo parser.cmo lexer.cmo table.cmo lexgen.cmo compact.cmo common.cmo output.cmo outputbis.cmo main.cmo
#20 45.69 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 45.69          -o stdlib__Format.cmo -c format.ml
#20 45.71 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 45.73 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 45.73          -o stdlib__Ephemeron.cmo -c ephemeron.ml
#20 45.76 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 45.76          -o stdlib__MoreLabels.cmo -c moreLabels.ml
#20 46.02 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -o compilerlibs/ocamlmiddleend.cma middle_end/internal_variable_names.cmo middle_end/linkage_name.cmo middle_end/compilation_unit.cmo middle_end/variable.cmo middle_end/flambda/base_types/closure_element.cmo middle_end/flambda/base_types/closure_id.cmo middle_end/symbol.cmo middle_end/backend_var.cmo middle_end/clambda_primitives.cmo middle_end/printclambda_primitives.cmo middle_end/clambda.cmo middle_end/printclambda.cmo middle_end/semantics_of_primitives.cmo middle_end/convert_primitives.cmo middle_end/flambda/base_types/id_types.cmo middle_end/flambda/base_types/export_id.cmo middle_end/flambda/base_types/tag.cmo middle_end/flambda/base_types/mutable_variable.cmo middle_end/flambda/base_types/set_of_closures_id.cmo middle_end/flambda/base_types/set_of_closures_origin.cmo middle_end/flambda/base_types/closure_origin.cmo middle_end/flambda/base_types/var_within_closure.cmo middle_end/flambda/base_types/static_exception.cmo middle_end/flambda/pass_wrapper.cmo middle_end/flambda/allocated_const.cmo middle_end/flambda/parameter.cmo middle_end/flambda/projection.cmo middle_end/flambda/flambda.cmo middle_end/flambda/flambda_iterators.cmo middle_end/flambda/flambda_utils.cmo middle_end/flambda/freshening.cmo middle_end/flambda/effect_analysis.cmo middle_end/flambda/inlining_cost.cmo middle_end/flambda/simple_value_approx.cmo middle_end/flambda/export_info.cmo middle_end/flambda/export_info_for_pack.cmo middle_end/compilenv.cmo middle_end/closure/closure.cmo middle_end/closure/closure_middle_end.cmo middle_end/flambda/import_approx.cmo middle_end/flambda/lift_code.cmo middle_end/flambda/closure_conversion_aux.cmo middle_end/flambda/closure_conversion.cmo middle_end/flambda/initialize_symbol_to_let_symbol.cmo middle_end/flambda/lift_let_to_initialize_symbol.cmo middle_end/flambda/find_recursive_functions.cmo middle_end/flambda/invariant_params.cmo middle_end/flambda/inconstant_idents.cmo middle_end/flambda/alias_analysis.cmo middle_end/flambda/lift_constants.cmo middle_end/flambda/share_constants.cmo middle_end/flambda/simplify_common.cmo middle_end/flambda/remove_unused_arguments.cmo middle_end/flambda/remove_unused_closure_vars.cmo middle_end/flambda/remove_unused_program_constructs.cmo middle_end/flambda/simplify_boxed_integer_ops.cmo middle_end/flambda/simplify_primitives.cmo middle_end/flambda/inlining_stats_types.cmo middle_end/flambda/inlining_stats.cmo middle_end/flambda/inline_and_simplify_aux.cmo middle_end/flambda/remove_free_vars_equal_to_args.cmo middle_end/flambda/extract_projections.cmo middle_end/flambda/augment_specialised_args.cmo middle_end/flambda/unbox_free_vars_of_closures.cmo middle_end/flambda/unbox_specialised_args.cmo middle_end/flambda/unbox_closures.cmo middle_end/flambda/inlining_transforms.cmo middle_end/flambda/inlining_decision.cmo middle_end/flambda/inline_and_simplify.cmo middle_end/flambda/ref_to_variables.cmo middle_end/flambda/flambda_invariants.cmo middle_end/flambda/traverse_for_exported_symbols.cmo middle_end/flambda/build_export_info.cmo middle_end/flambda/closure_offsets.cmo middle_end/flambda/un_anf.cmo middle_end/flambda/flambda_to_clambda.cmo middle_end/flambda/flambda_middle_end.cmo
#20 46.07 make -j -C tools all
#20 46.07 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 46.08 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamldep.ml
#20 46.08 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlprof.ml
#20 46.08 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlcp.ml
#20 46.08 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamloptp.ml
#20 46.08 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlmklib.ml
#20 46.08 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlmktop.ml
#20 46.08 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - ocamlcmt.ml
#20 46.09 ../runtime/ocamlrun make_opcodes -opnames < ../runtime/caml/instruct.h > opnames.ml
#20 46.09 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - objinfo.ml
#20 46.09 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - primreq.ml
#20 46.09 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - stripdebug.ml
#20 46.09 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - cmpbyt.ml
#20 46.09 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - profiling.mli
#20 46.09 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - opnames.ml
#20 46.11 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -compat-32 -I .. -o ocamldep ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ocamldep.cmo
#20 46.13 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - profiling.ml
#20 46.13 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlmktop ../utils/config.cmo ../utils/build_path_prefix_map.cmo ../utils/misc.cmo ../utils/identifiable.cmo ../utils/numbers.cmo ../utils/arg_helper.cmo ../utils/clflags.cmo ../utils/local_store.cmo ../utils/load_path.cmo ../utils/profile.cmo ../utils/ccomp.cmo ocamlmktop.cmo
#20 46.14 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o stripdebug ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma stripdebug.cmo
#20 46.14 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - dumpobj.ml
#20 46.16 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o primreq ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma primreq.cmo
#20 46.16 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o cmpbyt ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma cmpbyt.cmo
#20 46.17 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlcp ../utils/config.cmo ../utils/build_path_prefix_map.cmo ../utils/misc.cmo ../utils/profile.cmo ../utils/warnings.cmo ../utils/identifiable.cmo ../utils/numbers.cmo ../utils/arg_helper.cmo ../utils/clflags.cmo ../utils/local_store.cmo ../utils/terminfo.cmo ../parsing/location.cmo ../utils/load_path.cmo ../utils/ccomp.cmo ../driver/compenv.cmo ../driver/main_args.cmo ocamlcp.cmo
#20 46.17 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamloptp ../utils/config.cmo ../utils/build_path_prefix_map.cmo ../utils/misc.cmo ../utils/profile.cmo ../utils/warnings.cmo ../utils/identifiable.cmo ../utils/numbers.cmo ../utils/arg_helper.cmo ../utils/clflags.cmo ../utils/local_store.cmo ../utils/terminfo.cmo ../parsing/location.cmo ../utils/load_path.cmo ../utils/ccomp.cmo ../driver/compenv.cmo ../driver/main_args.cmo ocamloptp.cmo
#20 46.24 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlcmt ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ocamlcmt.cmo
#20 46.26 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlmklib ../utils/config.cmo ../utils/build_path_prefix_map.cmo ../utils/misc.cmo ocamlmklib.cmo
#20 46.35 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlobjinfo ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ../compilerlibs/ocamlmiddleend.cma objinfo.cmo
#20 46.36 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlprof ../utils/config.cmo ../utils/build_path_prefix_map.cmo ../utils/misc.cmo ../utils/identifiable.cmo ../utils/numbers.cmo ../utils/arg_helper.cmo ../utils/clflags.cmo ../utils/terminfo.cmo ../utils/warnings.cmo ../parsing/location.cmo ../parsing/longident.cmo ../parsing/docstrings.cmo ../parsing/syntaxerr.cmo ../parsing/ast_helper.cmo ../parsing/camlinternalMenhirLib.cmo ../parsing/parser.cmo ../parsing/pprintast.cmo ../parsing/lexer.cmo ../parsing/parse.cmo ocamlprof.cmo
#20 46.40 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o dumpobj ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma opnames.cmo dumpobj.cmo
#20 47.11 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 47.69 ../boot/ocamlrun ../ocamlc -a -o stdlib.cma camlinternalFormatBasics.cmo camlinternalAtomic.cmo stdlib.cmo stdlib__Pervasives.cmo stdlib__Either.cmo stdlib__Sys.cmo stdlib__Obj.cmo camlinternalLazy.cmo stdlib__Lazy.cmo stdlib__Seq.cmo stdlib__Option.cmo stdlib__Result.cmo stdlib__Bool.cmo stdlib__Char.cmo stdlib__Uchar.cmo stdlib__List.cmo stdlib__Int.cmo stdlib__Bytes.cmo stdlib__String.cmo stdlib__Unit.cmo stdlib__Marshal.cmo stdlib__Array.cmo stdlib__Float.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__Stream.cmo stdlib__Buffer.cmo camlinternalFormat.cmo stdlib__Printf.cmo stdlib__Arg.cmo stdlib__Atomic.cmo stdlib__Printexc.cmo stdlib__Fun.cmo stdlib__Gc.cmo stdlib__Digest.cmo stdlib__Random.cmo stdlib__Hashtbl.cmo stdlib__Weak.cmo stdlib__Format.cmo stdlib__Scanf.cmo stdlib__Callback.cmo camlinternalOO.cmo stdlib__Oo.cmo camlinternalMod.cmo stdlib__Genlex.cmo stdlib__Ephemeron.cmo stdlib__Filename.cmo stdlib__Complex.cmo stdlib__ArrayLabels.cmo stdlib__ListLabels.cmo stdlib__BytesLabels.cmo stdlib__StringLabels.cmo stdlib__MoreLabels.cmo stdlib__StdLabels.cmo stdlib__Bigarray.cmo stdlib__In_channel.cmo stdlib__Out_channel.cmo
#20 47.73 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 47.73 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 47.73 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 47.74 make -j ocaml
#20 47.74 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 47.77 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/expunge.ml -I toplevel
#20 47.77 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/genprintval.mli
#20 47.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/trace.mli
#20 47.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/toploop.mli
#20 47.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topdirs.mli
#20 47.78 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topmain.mli
#20 47.83 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topcommon.mli
#20 47.85 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/genprintval.ml -I toplevel
#20 47.85 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topstart.ml -I toplevel
#20 47.89 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -o expunge compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma toplevel/expunge.cmo
#20 47.90 cp toplevel/trace.cmi toplevel/trace.mli toplevel/byte
#20 47.91 cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/byte
#20 47.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topeval.mli
#20 47.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topcommon.ml -I toplevel
#20 47.99 cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/byte
#20 48.00 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/toploop.ml -I toplevel
#20 48.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topdirs.ml -I toplevel
#20 48.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/byte/topeval.ml -I toplevel/byte
#20 48.03 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/byte/trace.ml -I toplevel/byte
#20 48.03 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/byte/topmain.ml -I toplevel/byte
#20 48.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -o compilerlibs/ocamltoplevel.cma -I toplevel/byte toplevel/genprintval.cmo toplevel/topcommon.cmo toplevel/byte/topeval.cmo toplevel/byte/trace.cmo toplevel/toploop.cmo toplevel/topdirs.cmo toplevel/byte/topmain.cmo
#20 48.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -I toplevel/byte -linkall -o ocaml.tmp compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma compilerlibs/ocamltoplevel.cma toplevel/topstart.cmo
#20 49.24 ./boot/ocamlrun expunge ocaml.tmp ocaml  camlinternalFormatBasics camlinternalAtomic stdlib stdlib__Pervasives stdlib__Either stdlib__Sys stdlib__Obj camlinternalLazy stdlib__Lazy stdlib__Seq stdlib__Option stdlib__Result stdlib__Bool stdlib__Char stdlib__Uchar stdlib__List stdlib__Int stdlib__Bytes stdlib__String stdlib__Unit stdlib__Marshal stdlib__Array stdlib__Float stdlib__Int32 stdlib__Int64 stdlib__Nativeint stdlib__Lexing stdlib__Parsing stdlib__Set stdlib__Map stdlib__Stack stdlib__Queue stdlib__Stream stdlib__Buffer camlinternalFormat stdlib__Printf stdlib__Arg stdlib__Atomic stdlib__Printexc stdlib__Fun stdlib__Gc stdlib__Digest stdlib__Random stdlib__Hashtbl stdlib__Weak stdlib__Format stdlib__Scanf stdlib__Callback camlinternalOO stdlib__Oo camlinternalMod stdlib__Genlex stdlib__Ephemeron stdlib__Filename stdlib__Complex stdlib__ArrayLabels stdlib__ListLabels stdlib__BytesLabels stdlib__StringLabels stdlib__MoreLabels stdlib__StdLabels stdlib__Bigarray stdlib__In_channel stdlib__Out_channel outcometree topdirs toploop
#20 49.29 rm ocaml.tmp
#20 49.29 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 49.29 make -j opt-core
#20 49.31 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 49.34 make -j -C runtime  allopt
#20 49.35 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 50.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_aux.n.o startup_aux.c
#20 50.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_nat.n.o startup_nat.c
#20 50.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o main.n.o main.c
#20 50.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o fail_nat.n.o fail_nat.c
#20 50.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o roots_nat.n.o roots_nat.c
#20 50.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals.n.o signals.c
#20 50.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals_nat.n.o signals_nat.c
#20 50.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o misc.n.o misc.c
#20 50.08 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o freelist.n.o freelist.c
#20 50.09 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o major_gc.n.o major_gc.c
#20 50.09 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o minor_gc.n.o minor_gc.c
#20 50.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memory.n.o memory.c
#20 50.12 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o alloc.n.o alloc.c
#20 50.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compare.n.o compare.c
#20 50.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o ints.n.o ints.c
#20 50.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o floats.n.o floats.c
#20 50.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o str.n.o str.c
#20 50.16 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o array.n.o array.c
#20 50.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o io.n.o io.c
#20 50.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o extern.n.o extern.c
#20 50.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o intern.n.o intern.c
#20 50.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o hash.n.o hash.c
#20 50.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o sys.n.o sys.c
#20 50.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o parsing.n.o parsing.c
#20 50.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o gc_ctrl.n.o gc_ctrl.c
#20 50.23 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o eventlog.n.o eventlog.c
#20 50.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o md5.n.o md5.c
#20 50.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o obj.n.o obj.c
#20 50.28 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o lexing.n.o lexing.c
#20 50.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o unix.n.o unix.c
#20 50.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o printexc.n.o printexc.c
#20 50.31 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o callback.n.o callback.c
#20 50.32 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o weak.n.o weak.c
#20 50.32 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compact.n.o compact.c
#20 50.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o finalise.n.o finalise.c
#20 50.36 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o custom.n.o custom.c
#20 50.37 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o globroots.n.o globroots.c
#20 50.37 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace_nat.n.o backtrace_nat.c
#20 50.43 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace.n.o backtrace.c
#20 50.45 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink_nat.n.o dynlink_nat.c
#20 50.46 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o debugger.n.o debugger.c
#20 50.47 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o meta.n.o meta.c
#20 50.49 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink.n.o dynlink.c
#20 50.51 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o clambda_checks.n.o clambda_checks.c
#20 50.52 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o afl.n.o afl.c
#20 50.53 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o bigarray.n.o bigarray.c
#20 50.53 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memprof.n.o memprof.c
#20 50.55 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o domain.n.o domain.c
#20 50.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o skiplist.n.o skiplist.c
#20 50.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o codefrag.n.o codefrag.c
#20 50.61 gcc -c -DSYS_linux -I../runtime -DMODEL_default -o arm64.o arm64.S || \
#20 50.61 { echo "If your assembler produced syntax errors, it is probably";\
#20 50.61           echo "unhappy with the preprocessor. Check your assembler, or";\
#20 50.61           echo "try producing arm64.o by hand.";\
#20 50.61           exit 2; }
#20 50.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o startup_aux.nd.o startup_aux.c
#20 50.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o startup_nat.nd.o startup_nat.c
#20 50.64 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o main.nd.o main.c
#20 50.65 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o fail_nat.nd.o fail_nat.c
#20 50.66 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o roots_nat.nd.o roots_nat.c
#20 50.67 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o signals.nd.o signals.c
#20 50.75 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o signals_nat.nd.o signals_nat.c
#20 50.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o misc.nd.o misc.c
#20 50.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o freelist.nd.o freelist.c
#20 50.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o major_gc.nd.o major_gc.c
#20 50.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o minor_gc.nd.o minor_gc.c
#20 50.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o memory.nd.o memory.c
#20 50.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o alloc.nd.o alloc.c
#20 50.81 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o compare.nd.o compare.c
#20 50.82 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o ints.nd.o ints.c
#20 50.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o floats.nd.o floats.c
#20 50.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o str.nd.o str.c
#20 50.84 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o array.nd.o array.c
#20 50.84 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o io.nd.o io.c
#20 50.85 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o extern.nd.o extern.c
#20 50.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o intern.nd.o intern.c
#20 50.88 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o hash.nd.o hash.c
#20 50.89 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o sys.nd.o sys.c
#20 50.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o parsing.nd.o parsing.c
#20 50.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o gc_ctrl.nd.o gc_ctrl.c
#20 50.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o eventlog.nd.o eventlog.c
#20 50.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o md5.nd.o md5.c
#20 50.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o obj.nd.o obj.c
#20 50.97 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o lexing.nd.o lexing.c
#20 50.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o unix.nd.o unix.c
#20 51.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o printexc.nd.o printexc.c
#20 51.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o callback.nd.o callback.c
#20 51.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o weak.nd.o weak.c
#20 51.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o compact.nd.o compact.c
#20 51.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o finalise.nd.o finalise.c
#20 51.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o custom.nd.o custom.c
#20 51.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o globroots.nd.o globroots.c
#20 51.08 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o backtrace_nat.nd.o backtrace_nat.c
#20 51.09 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o backtrace.nd.o backtrace.c
#20 51.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o dynlink_nat.nd.o dynlink_nat.c
#20 51.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o debugger.nd.o debugger.c
#20 51.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o meta.nd.o meta.c
#20 51.16 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o dynlink.nd.o dynlink.c
#20 51.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o clambda_checks.nd.o clambda_checks.c
#20 51.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o afl.nd.o afl.c
#20 51.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o bigarray.nd.o bigarray.c
#20 51.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o memprof.nd.o memprof.c
#20 51.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o domain.nd.o domain.c
#20 51.23 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o skiplist.nd.o skiplist.c
#20 51.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o codefrag.nd.o codefrag.c
#20 51.25 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o startup_aux.ni.o startup_aux.c
#20 51.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o startup_nat.ni.o startup_nat.c
#20 51.27 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o main.ni.o main.c
#20 51.28 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o fail_nat.ni.o fail_nat.c
#20 51.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o roots_nat.ni.o roots_nat.c
#20 51.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o signals.ni.o signals.c
#20 51.31 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o signals_nat.ni.o signals_nat.c
#20 51.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o misc.ni.o misc.c
#20 51.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o freelist.ni.o freelist.c
#20 51.35 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o major_gc.ni.o major_gc.c
#20 51.35 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o minor_gc.ni.o minor_gc.c
#20 51.36 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o memory.ni.o memory.c
#20 51.37 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o alloc.ni.o alloc.c
#20 51.38 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o compare.ni.o compare.c
#20 51.39 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o ints.ni.o ints.c
#20 51.40 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o floats.ni.o floats.c
#20 51.40 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o str.ni.o str.c
#20 51.41 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o array.ni.o array.c
#20 51.42 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o io.ni.o io.c
#20 51.43 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o extern.ni.o extern.c
#20 51.43 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o intern.ni.o intern.c
#20 51.44 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o hash.ni.o hash.c
#20 51.45 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o sys.ni.o sys.c
#20 51.46 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o parsing.ni.o parsing.c
#20 51.47 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o gc_ctrl.ni.o gc_ctrl.c
#20 51.47 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o eventlog.ni.o eventlog.c
#20 51.48 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o md5.ni.o md5.c
#20 51.49 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o obj.ni.o obj.c
#20 51.50 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o lexing.ni.o lexing.c
#20 51.51 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o unix.ni.o unix.c
#20 51.52 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o printexc.ni.o printexc.c
#20 51.54 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o callback.ni.o callback.c
#20 51.55 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o weak.ni.o weak.c
#20 51.56 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o compact.ni.o compact.c
#20 51.56 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o finalise.ni.o finalise.c
#20 51.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o custom.ni.o custom.c
#20 51.58 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o globroots.ni.o globroots.c
#20 51.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o backtrace_nat.ni.o backtrace_nat.c
#20 51.66 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o backtrace.ni.o backtrace.c
#20 51.69 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o dynlink_nat.ni.o dynlink_nat.c
#20 51.71 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o debugger.ni.o debugger.c
#20 51.74 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o meta.ni.o meta.c
#20 51.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o dynlink.ni.o dynlink.c
#20 51.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o clambda_checks.ni.o clambda_checks.c
#20 51.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o afl.ni.o afl.c
#20 51.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o bigarray.ni.o bigarray.c
#20 51.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o memprof.ni.o memprof.c
#20 52.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o domain.ni.o domain.c
#20 52.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o skiplist.ni.o skiplist.c
#20 52.10 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o codefrag.ni.o codefrag.c
#20 52.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_aux.npic.o startup_aux.c
#20 52.12 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_nat.npic.o startup_nat.c
#20 52.16 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o main.npic.o main.c
#20 52.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o fail_nat.npic.o fail_nat.c
#20 52.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o roots_nat.npic.o roots_nat.c
#20 52.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals.npic.o signals.c
#20 52.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals_nat.npic.o signals_nat.c
#20 52.27 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o misc.npic.o misc.c
#20 52.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o freelist.npic.o freelist.c
#20 52.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o major_gc.npic.o major_gc.c
#20 52.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o minor_gc.npic.o minor_gc.c
#20 52.32 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memory.npic.o memory.c
#20 52.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o alloc.npic.o alloc.c
#20 52.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compare.npic.o compare.c
#20 52.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o ints.npic.o ints.c
#20 52.39 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o floats.npic.o floats.c
#20 52.39 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o str.npic.o str.c
#20 52.46 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o array.npic.o array.c
#20 52.47 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o io.npic.o io.c
#20 52.48 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o extern.npic.o extern.c
#20 52.51 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o intern.npic.o intern.c
#20 52.54 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o hash.npic.o hash.c
#20 52.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o sys.npic.o sys.c
#20 52.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o parsing.npic.o parsing.c
#20 52.59 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o gc_ctrl.npic.o gc_ctrl.c
#20 52.59 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o eventlog.npic.o eventlog.c
#20 52.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o md5.npic.o md5.c
#20 52.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o obj.npic.o obj.c
#20 52.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o lexing.npic.o lexing.c
#20 52.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o unix.npic.o unix.c
#20 52.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o printexc.npic.o printexc.c
#20 52.65 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o callback.npic.o callback.c
#20 52.66 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o weak.npic.o weak.c
#20 52.67 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compact.npic.o compact.c
#20 52.71 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o finalise.npic.o finalise.c
#20 52.73 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o custom.npic.o custom.c
#20 52.75 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o globroots.npic.o globroots.c
#20 52.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace_nat.npic.o backtrace_nat.c
#20 52.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace.npic.o backtrace.c
#20 52.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink_nat.npic.o dynlink_nat.c
#20 52.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o debugger.npic.o debugger.c
#20 52.84 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o meta.npic.o meta.c
#20 52.85 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink.npic.o dynlink.c
#20 52.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o clambda_checks.npic.o clambda_checks.c
#20 52.87 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o afl.npic.o afl.c
#20 52.87 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o bigarray.npic.o bigarray.c
#20 52.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memprof.npic.o memprof.c
#20 52.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o domain.npic.o domain.c
#20 52.96 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o skiplist.npic.o skiplist.c
#20 52.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o codefrag.npic.o codefrag.c
#20 52.99 gcc -c -DSYS_linux -I../runtime -DMODEL_default -fPIC -o arm64_libasmrunpic.o arm64.S
#20 53.02 rm -f libasmrun.a && ar rc libasmrun.a  startup_aux.n.o startup_nat.n.o main.n.o fail_nat.n.o roots_nat.n.o signals.n.o signals_nat.n.o misc.n.o freelist.n.o major_gc.n.o minor_gc.n.o memory.n.o alloc.n.o compare.n.o ints.n.o floats.n.o str.n.o array.n.o io.n.o extern.n.o intern.n.o hash.n.o sys.n.o parsing.n.o gc_ctrl.n.o eventlog.n.o md5.n.o obj.n.o lexing.n.o unix.n.o printexc.n.o callback.n.o weak.n.o compact.n.o finalise.n.o custom.n.o globroots.n.o backtrace_nat.n.o backtrace.n.o dynlink_nat.n.o debugger.n.o meta.n.o dynlink.n.o clambda_checks.n.o afl.n.o bigarray.n.o memprof.n.o domain.n.o skiplist.n.o codefrag.n.o arm64.o
#20 53.31 rm -f libasmruni.a && ar rc libasmruni.a  startup_aux.ni.o startup_nat.ni.o main.ni.o fail_nat.ni.o roots_nat.ni.o signals.ni.o signals_nat.ni.o misc.ni.o freelist.ni.o major_gc.ni.o minor_gc.ni.o memory.ni.o alloc.ni.o compare.ni.o ints.ni.o floats.ni.o str.ni.o array.ni.o io.ni.o extern.ni.o intern.ni.o hash.ni.o sys.ni.o parsing.ni.o gc_ctrl.ni.o eventlog.ni.o md5.ni.o obj.ni.o lexing.ni.o unix.ni.o printexc.ni.o callback.ni.o weak.ni.o compact.ni.o finalise.ni.o custom.ni.o globroots.ni.o backtrace_nat.ni.o backtrace.ni.o dynlink_nat.ni.o debugger.ni.o meta.ni.o dynlink.ni.o clambda_checks.ni.o afl.ni.o bigarray.ni.o memprof.ni.o domain.ni.o skiplist.ni.o codefrag.ni.o arm64.o
#20 53.50 rm -f libasmrund.a && ar rc libasmrund.a  startup_aux.nd.o startup_nat.nd.o main.nd.o fail_nat.nd.o roots_nat.nd.o signals.nd.o signals_nat.nd.o misc.nd.o freelist.nd.o major_gc.nd.o minor_gc.nd.o memory.nd.o alloc.nd.o compare.nd.o ints.nd.o floats.nd.o str.nd.o array.nd.o io.nd.o extern.nd.o intern.nd.o hash.nd.o sys.nd.o parsing.nd.o gc_ctrl.nd.o eventlog.nd.o md5.nd.o obj.nd.o lexing.nd.o unix.nd.o printexc.nd.o callback.nd.o weak.nd.o compact.nd.o finalise.nd.o custom.nd.o globroots.nd.o backtrace_nat.nd.o backtrace.nd.o dynlink_nat.nd.o debugger.nd.o meta.nd.o dynlink.nd.o clambda_checks.nd.o afl.nd.o bigarray.nd.o memprof.nd.o domain.nd.o skiplist.nd.o codefrag.nd.o arm64.o
#20 53.97 rm -f libasmrun_pic.a && ar rc libasmrun_pic.a  startup_aux.npic.o startup_nat.npic.o main.npic.o fail_nat.npic.o roots_nat.npic.o signals.npic.o signals_nat.npic.o misc.npic.o freelist.npic.o major_gc.npic.o minor_gc.npic.o memory.npic.o alloc.npic.o compare.npic.o ints.npic.o floats.npic.o str.npic.o array.npic.o io.npic.o extern.npic.o intern.npic.o hash.npic.o sys.npic.o parsing.npic.o gc_ctrl.npic.o eventlog.npic.o md5.npic.o obj.npic.o lexing.npic.o unix.npic.o printexc.npic.o callback.npic.o weak.npic.o compact.npic.o finalise.npic.o custom.npic.o globroots.npic.o backtrace_nat.npic.o backtrace.npic.o dynlink_nat.npic.o debugger.npic.o meta.npic.o dynlink.npic.o clambda_checks.npic.o afl.npic.o bigarray.npic.o memprof.npic.o domain.npic.o skiplist.npic.o codefrag.npic.o arm64_libasmrunpic.o
#20 53.97 gcc -shared  -o libasmrun_shared.so startup_aux.npic.o startup_nat.npic.o main.npic.o fail_nat.npic.o roots_nat.npic.o signals.npic.o signals_nat.npic.o misc.npic.o freelist.npic.o major_gc.npic.o minor_gc.npic.o memory.npic.o alloc.npic.o compare.npic.o ints.npic.o floats.npic.o str.npic.o array.npic.o io.npic.o extern.npic.o intern.npic.o hash.npic.o sys.npic.o parsing.npic.o gc_ctrl.npic.o eventlog.npic.o md5.npic.o obj.npic.o lexing.npic.o unix.npic.o printexc.npic.o callback.npic.o weak.npic.o compact.npic.o finalise.npic.o custom.npic.o globroots.npic.o backtrace_nat.npic.o backtrace.npic.o dynlink_nat.npic.o debugger.npic.o meta.npic.o dynlink.npic.o clambda_checks.npic.o afl.npic.o bigarray.npic.o memprof.npic.o domain.npic.o skiplist.npic.o codefrag.npic.o arm64_libasmrunpic.o -lm 
#20 54.28 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 54.28 cp runtime/libasmrun.a stdlib/libasmrun.a
#20 54.30 make -j ocamlopt
#20 54.31 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 54.35 cd asmcomp; ln -sf arm64/arch.ml .
#20 54.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm.mli
#20 54.36 cd asmcomp; ln -sf arm64/proc.ml .
#20 54.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_ast.mli
#20 54.38 cd asmcomp; ln -sf arm64/selection.ml .
#20 54.38 cd asmcomp; ln -sf arm64/CSE.ml .
#20 54.39 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/coloring.mli
#20 54.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linscan.mli
#20 54.40 cd asmcomp; ln -sf arm64/reload.ml .
#20 54.41 cd asmcomp; ln -sf arm64/scheduling.ml .
#20 54.43 make -j -C tools cvt_emit
#20 54.44 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.mli
#20 54.45 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 54.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.mli
#20 54.45 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.mli
#20 54.46 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/opterrors.mli
#20 54.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/optcompile.mli
#20 54.48 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/optmaindriver.mli
#20 54.49 ../boot/ocamlrun ../boot/ocamllex -q cvt_emit.mll
#20 54.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/arch.ml -I asmcomp
#20 54.50 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.mli
#20 54.51 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reg.mli
#20 54.51 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_proc.mli
#20 54.52 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -c -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda - cvt_emit.ml
#20 54.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/afl_instrument.mli
#20 54.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.mli
#20 54.54 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen_state.mli
#20 54.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.mli
#20 54.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_invariants.mli
#20 54.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_masm.mli
#20 54.58 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_gas.mli
#20 54.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_dsl.mli
#20 54.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.ml -I asmcomp
#20 54.61 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/opterrors.ml -I driver
#20 54.61 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/optmain.ml -I driver
#20 54.63 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.ml -I asmcomp
#20 54.63 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reg.ml -I asmcomp
#20 54.64 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/afl_instrument.ml -I asmcomp
#20 54.65 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -o cvt_emit cvt_emit.cmo
#20 54.65 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen_state.ml -I asmcomp
#20 54.67 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_helpers.mli
#20 54.69 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_invariants.ml -I asmcomp
#20 54.71 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 54.71 echo \# 1 \"arm64/emit.mlp\" > asmcomp/emit.ml
#20 54.72 ./boot/ocamlrun tools/cvt_emit < asmcomp/arm64/emit.mlp >> asmcomp/emit.ml \
#20 54.72 || { rm -f asmcomp/emit.ml; exit 2; }
#20 54.83 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm.ml -I asmcomp
#20 54.84 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/mach.mli
#20 54.84 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.ml -I asmcomp
#20 54.85 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.ml -I asmcomp
#20 54.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/mach.ml -I asmcomp
#20 54.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/proc.mli
#20 54.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interval.mli
#20 54.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printmach.mli
#20 54.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/dataflow.mli
#20 54.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/polling.mli
#20 54.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.mli
#20 54.95 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selection.mli
#20 54.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.mli
#20 54.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.mli
#20 54.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/liveness.mli
#20 54.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spill.mli
#20 54.98 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/split.mli
#20 55.00 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interf.mli
#20 55.00 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/coloring.ml -I asmcomp
#20 55.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linscan.ml -I asmcomp
#20 55.02 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.mli
#20 55.03 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reload.mli
#20 55.03 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.mli
#20 55.04 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linear.mli
#20 55.05 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/optmaindriver.ml -I driver
#20 55.05 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/proc.ml -I asmcomp
#20 55.06 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_helpers.ml -I asmcomp
#20 55.06 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interval.ml -I asmcomp
#20 55.07 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printmach.ml -I asmcomp
#20 55.08 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/dataflow.ml -I asmcomp
#20 55.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/polling.ml -I asmcomp
#20 55.10 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.ml -I asmcomp
#20 55.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selection.ml -I asmcomp
#20 55.11 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.ml -I asmcomp
#20 55.12 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.ml -I asmcomp
#20 55.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSE.ml -I asmcomp
#20 55.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/liveness.ml -I asmcomp
#20 55.15 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spill.ml -I asmcomp
#20 55.16 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/split.ml -I asmcomp
#20 55.17 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interf.ml -I asmcomp
#20 55.18 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.ml -I asmcomp
#20 55.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reload.ml -I asmcomp
#20 55.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.ml -I asmcomp
#20 55.20 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linear.ml -I asmcomp
#20 55.21 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.mli
#20 55.22 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linearize.mli
#20 55.23 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/linear_format.mli
#20 55.24 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.mli
#20 55.24 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.mli
#20 55.25 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation_intf.ml -I asmcomp
#20 55.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitenv.mli
#20 55.27 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emit.mli
#20 55.28 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linearize.ml -I asmcomp
#20 55.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/linear_format.ml -I file_formats
#20 55.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.ml -I asmcomp
#20 55.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.ml -I asmcomp
#20 55.34 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.mli
#20 55.34 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.mli
#20 55.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.ml -I asmcomp
#20 55.44 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.ml -I asmcomp
#20 55.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.ml -I asmcomp
#20 55.47 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emit.ml -I asmcomp
#20 55.48 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.mli
#20 55.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.ml -I asmcomp
#20 55.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.ml -I asmcomp
#20 55.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.ml -I asmcomp
#20 55.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/optcompile.ml -I driver
#20 56.85 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -a -o compilerlibs/ocamloptcomp.cma middle_end/internal_variable_names.cmo middle_end/linkage_name.cmo middle_end/compilation_unit.cmo middle_end/variable.cmo middle_end/flambda/base_types/closure_element.cmo middle_end/flambda/base_types/closure_id.cmo middle_end/symbol.cmo middle_end/backend_var.cmo middle_end/clambda_primitives.cmo middle_end/printclambda_primitives.cmo middle_end/clambda.cmo middle_end/printclambda.cmo middle_end/semantics_of_primitives.cmo middle_end/convert_primitives.cmo middle_end/flambda/base_types/id_types.cmo middle_end/flambda/base_types/export_id.cmo middle_end/flambda/base_types/tag.cmo middle_end/flambda/base_types/mutable_variable.cmo middle_end/flambda/base_types/set_of_closures_id.cmo middle_end/flambda/base_types/set_of_closures_origin.cmo middle_end/flambda/base_types/closure_origin.cmo middle_end/flambda/base_types/var_within_closure.cmo middle_end/flambda/base_types/static_exception.cmo middle_end/flambda/pass_wrapper.cmo middle_end/flambda/allocated_const.cmo middle_end/flambda/parameter.cmo middle_end/flambda/projection.cmo middle_end/flambda/flambda.cmo middle_end/flambda/flambda_iterators.cmo middle_end/flambda/flambda_utils.cmo middle_end/flambda/freshening.cmo middle_end/flambda/effect_analysis.cmo middle_end/flambda/inlining_cost.cmo middle_end/flambda/simple_value_approx.cmo middle_end/flambda/export_info.cmo middle_end/flambda/export_info_for_pack.cmo middle_end/compilenv.cmo middle_end/closure/closure.cmo middle_end/closure/closure_middle_end.cmo middle_end/flambda/import_approx.cmo middle_end/flambda/lift_code.cmo middle_end/flambda/closure_conversion_aux.cmo middle_end/flambda/closure_conversion.cmo middle_end/flambda/initialize_symbol_to_let_symbol.cmo middle_end/flambda/lift_let_to_initialize_symbol.cmo middle_end/flambda/find_recursive_functions.cmo middle_end/flambda/invariant_params.cmo middle_end/flambda/inconstant_idents.cmo middle_end/flambda/alias_analysis.cmo middle_end/flambda/lift_constants.cmo middle_end/flambda/share_constants.cmo middle_end/flambda/simplify_common.cmo middle_end/flambda/remove_unused_arguments.cmo middle_end/flambda/remove_unused_closure_vars.cmo middle_end/flambda/remove_unused_program_constructs.cmo middle_end/flambda/simplify_boxed_integer_ops.cmo middle_end/flambda/simplify_primitives.cmo middle_end/flambda/inlining_stats_types.cmo middle_end/flambda/inlining_stats.cmo middle_end/flambda/inline_and_simplify_aux.cmo middle_end/flambda/remove_free_vars_equal_to_args.cmo middle_end/flambda/extract_projections.cmo middle_end/flambda/augment_specialised_args.cmo middle_end/flambda/unbox_free_vars_of_closures.cmo middle_end/flambda/unbox_specialised_args.cmo middle_end/flambda/unbox_closures.cmo middle_end/flambda/inlining_transforms.cmo middle_end/flambda/inlining_decision.cmo middle_end/flambda/inline_and_simplify.cmo middle_end/flambda/ref_to_variables.cmo middle_end/flambda/flambda_invariants.cmo middle_end/flambda/traverse_for_exported_symbols.cmo middle_end/flambda/build_export_info.cmo middle_end/flambda/closure_offsets.cmo middle_end/flambda/un_anf.cmo middle_end/flambda/flambda_to_clambda.cmo middle_end/flambda/flambda_middle_end.cmo  asmcomp/arch.cmo asmcomp/cmm.cmo asmcomp/printcmm.cmo asmcomp/reg.cmo asmcomp/mach.cmo asmcomp/proc.cmo asmcomp/afl_instrument.cmo asmcomp/strmatch.cmo asmcomp/cmmgen_state.cmo asmcomp/cmm_helpers.cmo asmcomp/cmmgen.cmo asmcomp/cmm_invariants.cmo asmcomp/interval.cmo asmcomp/printmach.cmo asmcomp/dataflow.cmo asmcomp/polling.cmo asmcomp/selectgen.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/linscan.cmo asmcomp/reloadgen.cmo asmcomp/reload.cmo asmcomp/deadcode.cmo asmcomp/linear.cmo asmcomp/printlinear.cmo asmcomp/linearize.cmo file_formats/linear_format.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 driver/optmaindriver.cmo
#20 56.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -o ocamlopt compilerlibs/ocamlcommon.cma compilerlibs/ocamloptcomp.cma driver/optmain.cmo
#20 57.90 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 57.90 make -j libraryopt
#20 57.91 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 57.93 make -j -C stdlib  allopt
#20 57.94 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 57.96 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nopervasives -c camlinternalFormatBasics.ml
#20 57.98 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nopervasives -c camlinternalAtomic.ml
#20 58.30 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nopervasives -no-alias-deps -w -49  -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.ml
#20 58.58 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.58            -o stdlib__Pervasives.cmx -c pervasives.ml
#20 58.59 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.59            -o stdlib__Either.cmx -c either.ml
#20 58.61 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.61            -o stdlib__Sys.cmx -c sys.ml
#20 58.63 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.63            -o stdlib__Bool.cmx -c bool.ml
#20 58.64 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.64            -o stdlib__Char.cmx -c char.ml
#20 58.65 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.65            -o stdlib__Int.cmx -c int.ml
#20 58.68 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.68            -o stdlib__Unit.cmx -c unit.ml
#20 58.69 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.69            -o stdlib__Int64.cmx -c int64.ml
#20 58.71 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.71            -o stdlib__Atomic.cmx -c atomic.ml
#20 58.72 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.72            -o stdlib__Complex.cmx -c complex.ml
#20 58.74 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   -c std_exit.ml
#20 58.76 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.76            -o stdlib__Nativeint.cmx -c nativeint.ml
#20 58.77 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.77            -o stdlib__Int32.cmx -c int32.ml
#20 58.79 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.79            -o stdlib__Uchar.cmx -c uchar.ml
#20 58.87 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 58.87            -o stdlib__Obj.cmx -c obj.ml
#20 59.00 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -afl-inst-ratio 0 -c camlinternalLazy.ml
#20 59.01 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.01            -o stdlib__Callback.cmx -c callback.ml
#20 59.11 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.11            -o stdlib__Lazy.cmx -c lazy.ml
#20 59.22 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.22            -o stdlib__Seq.cmx -c seq.ml
#20 59.55 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.55            -o stdlib__Option.cmx -c option.ml
#20 59.56 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.56            -o stdlib__Result.cmx -c result.ml
#20 59.58 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.58            -o stdlib__List.cmx -c list.ml
#20 59.60 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.60            -o stdlib__Bytes.cmx -c bytes.ml
#20 59.62 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.62            -o stdlib__Array.cmx -c array.ml
#20 59.65 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.65            -o stdlib__Map.cmx -c map.ml
#20 59.68 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.68            -o stdlib__Queue.cmx -c queue.ml
#20 59.97 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 59.97            -o stdlib__ArrayLabels.cmx -c arrayLabels.ml
#20 59.99 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 59.99            -o stdlib__Bigarray.cmx -c bigarray.ml
#20 60.06 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 60.06            -o stdlib__Float.cmx -c float.ml
#20 60.09 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.09            -o stdlib__Set.cmx -c set.ml
#20 60.11 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.11            -o stdlib__Stack.cmx -c stack.ml
#20 60.13 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 60.13            -o stdlib__ListLabels.cmx -c listLabels.ml
#20 60.30 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.30            -o stdlib__String.cmx -c string.ml
#20 60.34 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.34            -o stdlib__Marshal.cmx -c marshal.ml
#20 60.35 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 60.35            -o stdlib__BytesLabels.cmx -c bytesLabels.ml
#20 60.57 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.57            -o stdlib__Lexing.cmx -c lexing.ml
#20 60.58 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.58            -o stdlib__Stream.cmx -c stream.ml
#20 60.59 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -inline 3 \
#20 60.59            -o stdlib__Buffer.cmx -c buffer.ml
#20 60.61 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.61            -o stdlib__Digest.cmx -c digest.ml
#20 60.64 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -inline 0 -afl-inst-ratio 0 -c camlinternalOO.ml
#20 60.68 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 60.68            -o stdlib__StringLabels.cmx -c stringLabels.ml
#20 60.74 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.74            -o stdlib__Parsing.cmx -c parsing.ml
#20 60.76 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 60.76            -o stdlib__Random.cmx -c random.ml
#20 60.85 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 60.85            -o stdlib__StdLabels.cmx -c stdLabels.ml
#20 60.93 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   -c camlinternalFormat.ml
#20 61.01 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 61.01            -o stdlib__Hashtbl.cmx -c hashtbl.ml
#20 61.09 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 61.09            -o stdlib__Oo.cmx -c oo.ml
#20 61.09 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   -c camlinternalMod.ml
#20 61.39 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 61.39            -o stdlib__Weak.cmx -c weak.ml
#20 61.40 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 61.40            -o stdlib__Genlex.cmx -c genlex.ml
#20 61.42 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 61.42            -o stdlib__Ephemeron.cmx -c ephemeron.ml
#20 61.42 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 61.42            -o stdlib__MoreLabels.cmx -c moreLabels.ml
#20 63.55 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 63.55            -o stdlib__Printf.cmx -c printf.ml
#20 63.57 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 63.57            -o stdlib__Format.cmx -c format.ml
#20 63.67 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 63.67            -o stdlib__Arg.cmx -c arg.ml
#20 63.71 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 63.71            -o stdlib__Printexc.cmx -c printexc.ml
#20 63.72 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -inline 9 \
#20 63.72            -o stdlib__Scanf.cmx -c scanf.ml
#20 63.75 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 63.75            -o stdlib__Filename.cmx -c filename.ml
#20 63.98 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 63.98            -o stdlib__Fun.cmx -c fun.ml
#20 64.01 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 64.01            -o stdlib__Gc.cmx -c gc.ml
#20 64.10 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 64.10            -o stdlib__In_channel.cmx -c in_channel.ml
#20 64.13 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 64.13            -o stdlib__Out_channel.cmx -c out_channel.ml
#20 64.72 ../boot/ocamlrun ../ocamlopt -a -o stdlib.cmxa camlinternalFormatBasics.cmx camlinternalAtomic.cmx stdlib.cmx stdlib__Pervasives.cmx stdlib__Either.cmx stdlib__Sys.cmx stdlib__Obj.cmx camlinternalLazy.cmx stdlib__Lazy.cmx stdlib__Seq.cmx stdlib__Option.cmx stdlib__Result.cmx stdlib__Bool.cmx stdlib__Char.cmx stdlib__Uchar.cmx stdlib__List.cmx stdlib__Int.cmx stdlib__Bytes.cmx stdlib__String.cmx stdlib__Unit.cmx stdlib__Marshal.cmx stdlib__Array.cmx stdlib__Float.cmx stdlib__Int32.cmx stdlib__Int64.cmx stdlib__Nativeint.cmx stdlib__Lexing.cmx stdlib__Parsing.cmx stdlib__Set.cmx stdlib__Map.cmx stdlib__Stack.cmx stdlib__Queue.cmx stdlib__Stream.cmx stdlib__Buffer.cmx camlinternalFormat.cmx stdlib__Printf.cmx stdlib__Arg.cmx stdlib__Atomic.cmx stdlib__Printexc.cmx stdlib__Fun.cmx stdlib__Gc.cmx stdlib__Digest.cmx stdlib__Random.cmx stdlib__Hashtbl.cmx stdlib__Weak.cmx stdlib__Format.cmx stdlib__Scanf.cmx stdlib__Callback.cmx camlinternalOO.cmx stdlib__Oo.cmx camlinternalMod.cmx stdlib__Genlex.cmx stdlib__Ephemeron.cmx stdlib__Filename.cmx stdlib__Complex.cmx stdlib__ArrayLabels.cmx stdlib__ListLabels.cmx stdlib__BytesLabels.cmx stdlib__StringLabels.cmx stdlib__MoreLabels.cmx stdlib__StdLabels.cmx stdlib__Bigarray.cmx stdlib__In_channel.cmx stdlib__Out_channel.cmx
#20 65.04 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 65.04 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 65.04 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 65.04 make -j ocamlc.opt
#20 65.05 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 65.09 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/config.ml -I utils
#20 65.09 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/build_path_prefix_map.ml -I utils
#20 65.10 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/arg_helper.ml -I utils
#20 65.11 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/local_store.ml -I utils
#20 65.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/terminfo.ml -I utils
#20 65.13 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/int_replace_polymorphic_compare.ml -I utils
#20 65.13 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/domainstate.ml -I utils
#20 65.13 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/binutils.ml -I utils
#20 65.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/lazy_backtrack.ml -I utils
#20 65.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/camlinternalMenhirLib.ml -I parsing
#20 65.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/switch.ml -I lambda
#20 65.15 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/runtimedef.ml -I lambda
#20 65.16 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/opcodes.ml -I bytecomp
#20 65.29 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/misc.ml -I utils
#20 65.30 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/bytesections.ml -I bytecomp
#20 66.04 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/identifiable.ml -I utils
#20 66.04 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/profile.ml -I utils
#20 66.04 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/load_path.ml -I utils
#20 66.04 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/warnings.ml -I utils
#20 66.07 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/consistbl.ml -I utils
#20 66.07 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/targetint.ml -I utils
#20 66.09 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/diffing.ml -I utils
#20 66.09 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/longident.ml -I parsing
#20 66.10 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/dll.ml -I bytecomp
#20 66.42 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/diffing_with_keys.ml -I utils
#20 66.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/numbers.ml -I utils
#20 66.81 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/clflags.ml -I utils
#20 66.81 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/strongly_connected_components.ml -I utils
#20 67.33 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/ccomp.ml -I utils
#20 67.33 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/location.ml -I parsing
#20 67.34 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/ident.ml -I typing
#20 67.66 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/path.ml -I typing
#20 67.84 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/shape.ml -I typing
#20 67.88 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/docstrings.ml -I parsing
#20 67.88 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/syntaxerr.ml -I parsing
#20 67.90 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/ast_iterator.ml -I parsing
#20 67.90 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/attr_helper.ml -I parsing
#20 67.91 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/builtin_attributes.ml -I parsing
#20 67.92 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/debuginfo.ml -I lambda
#20 67.93 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/compenv.ml -I driver
#20 67.94 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/errors.ml -I driver
#20 68.05 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/primitive.ml -I typing
#20 68.18 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/ast_helper.ml -I parsing
#20 68.28 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/depend.ml -I parsing
#20 68.29 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/type_immediacy.ml -I typing
#20 68.40 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/types.ml -I typing
#20 68.47 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/ast_invariants.ml -I parsing
#20 68.59 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/main_args.ml -I driver
#20 68.83 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/btype.ml -I typing
#20 68.83 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c file_formats/cmi_format.ml -I file_formats
#20 68.84 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/errortrace.ml -I typing
#20 68.97 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/persistent_env.ml -I typing
#20 69.04 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/pprintast.ml -I parsing
#20 69.04 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/parser.ml -I parsing
#20 69.05 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/ast_mapper.ml -I parsing
#20 69.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/predef.ml -I typing
#20 69.38 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/datarepr.ml -I typing
#20 69.38 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/signature_group.ml -I typing
#20 70.13 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/subst.ml -I typing
#20 70.74 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/env.ml -I typing
#20 72.09 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/printast.ml -I parsing
#20 72.09 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/oprint.ml -I typing
#20 72.94 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedtree.ml -I typing
#20 72.95 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/ctype.ml -I typing
#20 72.97 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedecl_properties.ml -I typing
#20 72.98 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/lambda.ml -I lambda
#20 73.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/tast_iterator.ml -I typing
#20 73.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/tast_mapper.ml -I typing
#20 73.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/untypeast.ml -I typing
#20 73.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/printpat.ml -I typing
#20 73.46 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/printtyped.ml -I typing
#20 73.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/translobj.ml -I lambda
#20 73.56 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/translattribute.ml -I lambda
#20 73.56 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/tmc.ml -I lambda
#20 73.56 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/instruct.ml -I bytecomp
#20 73.68 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/meta.ml -I bytecomp
#20 73.76 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/symtable.ml -I bytecomp
#20 74.03 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/simplif.ml -I lambda
#20 76.43 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/printtyp.ml -I typing
#20 76.43 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/mtype.ml -I typing
#20 76.44 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/patterns.ml -I typing
#20 76.45 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedecl_variance.ml -I typing
#20 76.45 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedecl_unboxed.ml -I typing
#20 76.45 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedecl_separability.ml -I typing
#20 76.57 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedecl_immediacy.ml -I typing
#20 76.57 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typeopt.ml -I typing
#20 76.77 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/parmatch.ml -I typing
#20 76.79 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/rec_check.ml -I typing
#20 77.88 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/lexer.ml -I parsing
#20 78.41 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includeclass.ml -I typing
#20 78.41 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/envaux.ml -I typing
#20 78.41 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includecore.ml -I typing
#20 78.43 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/stypes.ml -I typing
#20 78.45 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typetexp.ml -I typing
#20 78.46 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/printlambda.ml -I lambda
#20 78.47 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/parse.ml -I parsing
#20 78.47 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c file_formats/cmt_format.ml -I file_formats
#20 78.63 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/pparse.ml -I driver
#20 78.74 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/cmt2annot.ml -I typing
#20 78.88 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/makedepend.ml -I driver
#20 79.24 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includemod.ml -I typing
#20 79.25 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedecl.ml -I typing
#20 79.46 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/matching.ml -I lambda
#20 79.47 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/printinstr.ml -I bytecomp
#20 80.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includemod_errorprinter.ml -I typing
#20 80.57 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typecore.ml -I typing
#20 81.62 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/translprim.ml -I lambda
#20 81.63 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/bytegen.ml -I bytecomp
#20 84.95 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typeclass.ml -I typing
#20 84.95 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/translcore.ml -I lambda
#20 85.93 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/translclass.ml -I lambda
#20 86.44 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typemod.ml -I typing
#20 86.83 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/translmod.ml -I lambda
#20 88.05 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/emitcode.ml -I bytecomp
#20 88.45 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/bytelink.ml -I bytecomp
#20 88.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/compmisc.ml -I driver
#20 88.78 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/compile_common.ml -I driver
#20 88.91 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/bytelibrarian.ml -I bytecomp
#20 88.91 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/bytepackager.ml -I bytecomp
#20 88.97 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -linkall -o compilerlibs/ocamlcommon.cmxa utils/config.cmx utils/build_path_prefix_map.cmx utils/misc.cmx utils/identifiable.cmx utils/numbers.cmx utils/arg_helper.cmx utils/clflags.cmx utils/profile.cmx utils/local_store.cmx utils/load_path.cmx utils/terminfo.cmx utils/ccomp.cmx utils/warnings.cmx utils/consistbl.cmx utils/strongly_connected_components.cmx utils/targetint.cmx utils/int_replace_polymorphic_compare.cmx utils/domainstate.cmx utils/binutils.cmx utils/lazy_backtrack.cmx utils/diffing.cmx utils/diffing_with_keys.cmx parsing/location.cmx parsing/longident.cmx parsing/docstrings.cmx parsing/syntaxerr.cmx parsing/ast_helper.cmx parsing/pprintast.cmx parsing/camlinternalMenhirLib.cmx parsing/parser.cmx parsing/lexer.cmx parsing/parse.cmx parsing/printast.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/type_immediacy.cmx typing/shape.cmx typing/types.cmx typing/btype.cmx typing/oprint.cmx typing/subst.cmx typing/predef.cmx typing/datarepr.cmx file_formats/cmi_format.cmx typing/persistent_env.cmx typing/env.cmx typing/errortrace.cmx typing/typedtree.cmx typing/signature_group.cmx typing/printtyped.cmx typing/ctype.cmx typing/printtyp.cmx typing/includeclass.cmx typing/mtype.cmx typing/envaux.cmx typing/includecore.cmx typing/tast_iterator.cmx typing/tast_mapper.cmx typing/stypes.cmx file_formats/cmt_format.cmx typing/cmt2annot.cmx typing/untypeast.cmx typing/includemod.cmx typing/includemod_errorprinter.cmx typing/typetexp.cmx typing/printpat.cmx typing/patterns.cmx typing/parmatch.cmx typing/typedecl_properties.cmx typing/typedecl_variance.cmx typing/typedecl_unboxed.cmx typing/typedecl_immediacy.cmx typing/typedecl_separability.cmx typing/typedecl.cmx typing/typeopt.cmx typing/rec_check.cmx typing/typecore.cmx typing/typeclass.cmx typing/typemod.cmx lambda/debuginfo.cmx lambda/lambda.cmx lambda/printlambda.cmx lambda/switch.cmx lambda/matching.cmx lambda/translobj.cmx lambda/translattribute.cmx lambda/translprim.cmx lambda/translcore.cmx lambda/translclass.cmx lambda/translmod.cmx lambda/tmc.cmx lambda/simplif.cmx lambda/runtimedef.cmx bytecomp/meta.cmx bytecomp/opcodes.cmx bytecomp/bytesections.cmx bytecomp/dll.cmx bytecomp/symtable.cmx driver/pparse.cmx driver/compenv.cmx driver/main_args.cmx driver/compmisc.cmx driver/makedepend.cmx driver/compile_common.cmx
#20 88.98 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/compile.ml -I driver
#20 89.24 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/maindriver.ml -I driver
#20 89.38 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -ccopt "-Wl,-E" -o compilerlibs/ocamlbytecomp.cmxa bytecomp/instruct.cmx bytecomp/bytegen.cmx bytecomp/printinstr.cmx bytecomp/emitcode.cmx bytecomp/bytelink.cmx bytecomp/bytelibrarian.cmx bytecomp/bytepackager.cmx driver/errors.cmx driver/compile.cmx driver/maindriver.cmx
#20 89.38 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/main.ml -I driver
#20 89.48 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink  -o ocamlc.opt compilerlibs/ocamlcommon.cmxa compilerlibs/ocamlbytecomp.cmxa driver/main.cmx -cclib "-lm  -lpthread"
#20 90.68 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 90.68 make -j otherlibraries ocamldebugger ocamldoc \
#20 90.68   
#20 90.68 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 90.72 make -j -C yacc  all
#20 90.73 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 90.75 make[3]: Nothing to be done for 'all'.
#20 90.75 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 90.75 make -j -C lex all
#20 90.77 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 90.78 make[3]: Nothing to be done for 'all'.
#20 90.78 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 90.79 make -j -C tools all
#20 90.79 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 90.83 make[3]: Nothing to be done for 'all'.
#20 90.83 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 90.83 make -j -C otherlibs all
#20 90.85 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 90.89 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 90.95 cp -f dynlink_compilerlibs/Makefile.copy-sources dynlink_compilerlibs/Makefile
#20 90.99 for ml in utils/binutils.ml utils/config.ml utils/build_path_prefix_map.ml utils/misc.ml utils/identifiable.ml utils/numbers.ml utils/arg_helper.ml utils/clflags.ml utils/profile.ml utils/consistbl.ml utils/terminfo.ml utils/warnings.ml utils/local_store.ml utils/load_path.ml utils/int_replace_polymorphic_compare.ml utils/lazy_backtrack.ml parsing/location.ml parsing/longident.ml parsing/docstrings.ml parsing/syntaxerr.ml parsing/ast_helper.ml parsing/ast_mapper.ml parsing/attr_helper.ml parsing/builtin_attributes.ml typing/ident.ml typing/path.ml typing/primitive.ml typing/type_immediacy.ml typing/shape.ml typing/types.ml typing/btype.ml typing/subst.ml typing/predef.ml typing/datarepr.ml file_formats/cmi_format.ml typing/persistent_env.ml typing/env.ml lambda/debuginfo.ml lambda/lambda.ml lambda/runtimedef.ml bytecomp/instruct.ml bytecomp/opcodes.ml bytecomp/bytesections.ml bytecomp/dll.ml bytecomp/meta.ml bytecomp/symtable.ml; do \
#20 90.99           echo "dynlink_compilerlibs/$(basename $ml): ../../$ml" \
#20 90.99             >> dynlink_compilerlibs/Makefile; \
#20 90.99           echo "dynlink_compilerlibs/$(basename $ml)i: ../../${ml}i" \
#20 90.99             >> dynlink_compilerlibs/Makefile; \
#20 90.99         done;
#20 92.37 for mli in parsing/asttypes.mli parsing/parsetree.mli typing/outcometree.mli file_formats/cmo_format.mli file_formats/cmxs_format.mli; do \
#20 92.37           echo "dynlink_compilerlibs/$(basename $mli): ../../$mli" \
#20 92.37             >> dynlink_compilerlibs/Makefile; \
#20 92.37           echo \
#20 92.37             "dynlink_compilerlibs/$(basename $mli .mli).ml: ../../$mli"\
#20 92.37             >> dynlink_compilerlibs/Makefile; \
#20 92.37         done
#20 92.56 cp ../../utils/binutils.ml dynlink_compilerlibs/binutils.ml
#20 92.56 cp ../../utils/config.ml dynlink_compilerlibs/config.ml
#20 92.56 cp ../../utils/build_path_prefix_map.ml dynlink_compilerlibs/build_path_prefix_map.ml
#20 92.56 cp ../../utils/misc.ml dynlink_compilerlibs/misc.ml
#20 92.57 cp ../../utils/identifiable.ml dynlink_compilerlibs/identifiable.ml
#20 92.58 cp ../../utils/numbers.ml dynlink_compilerlibs/numbers.ml
#20 92.58 cp ../../utils/arg_helper.ml dynlink_compilerlibs/arg_helper.ml
#20 92.58 cp ../../utils/clflags.ml dynlink_compilerlibs/clflags.ml
#20 92.58 cp ../../utils/profile.ml dynlink_compilerlibs/profile.ml
#20 92.59 cp ../../utils/consistbl.ml dynlink_compilerlibs/consistbl.ml
#20 92.60 cp ../../utils/terminfo.ml dynlink_compilerlibs/terminfo.ml
#20 92.60 cp ../../utils/warnings.ml dynlink_compilerlibs/warnings.ml
#20 92.60 cp ../../utils/local_store.ml dynlink_compilerlibs/local_store.ml
#20 92.61 cp ../../utils/load_path.ml dynlink_compilerlibs/load_path.ml
#20 92.61 cp ../../utils/int_replace_polymorphic_compare.ml dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 92.61 cp ../../utils/lazy_backtrack.ml dynlink_compilerlibs/lazy_backtrack.ml
#20 92.62 cp ../../parsing/location.ml dynlink_compilerlibs/location.ml
#20 92.63 cp ../../parsing/longident.ml dynlink_compilerlibs/longident.ml
#20 92.63 cp ../../parsing/docstrings.ml dynlink_compilerlibs/docstrings.ml
#20 92.64 cp ../../parsing/syntaxerr.ml dynlink_compilerlibs/syntaxerr.ml
#20 92.64 cp ../../parsing/ast_helper.ml dynlink_compilerlibs/ast_helper.ml
#20 92.65 cp ../../parsing/ast_mapper.ml dynlink_compilerlibs/ast_mapper.ml
#20 92.65 cp ../../parsing/attr_helper.ml dynlink_compilerlibs/attr_helper.ml
#20 92.66 cp ../../parsing/builtin_attributes.ml dynlink_compilerlibs/builtin_attributes.ml
#20 92.67 cp ../../typing/ident.ml dynlink_compilerlibs/ident.ml
#20 92.68 cp ../../typing/path.ml dynlink_compilerlibs/path.ml
#20 92.68 cp ../../typing/primitive.ml dynlink_compilerlibs/primitive.ml
#20 92.69 cp ../../typing/type_immediacy.ml dynlink_compilerlibs/type_immediacy.ml
#20 92.69 cp ../../typing/shape.ml dynlink_compilerlibs/shape.ml
#20 92.71 cp ../../typing/types.ml dynlink_compilerlibs/types.ml
#20 92.72 cp ../../typing/btype.ml dynlink_compilerlibs/btype.ml
#20 92.72 cp ../../typing/subst.ml dynlink_compilerlibs/subst.ml
#20 92.72 cp ../../typing/predef.ml dynlink_compilerlibs/predef.ml
#20 92.73 cp ../../typing/datarepr.ml dynlink_compilerlibs/datarepr.ml
#20 92.73 cp ../../file_formats/cmi_format.ml dynlink_compilerlibs/cmi_format.ml
#20 92.75 cp ../../typing/persistent_env.ml dynlink_compilerlibs/persistent_env.ml
#20 92.75 cp ../../typing/env.ml dynlink_compilerlibs/env.ml
#20 92.76 cp ../../lambda/debuginfo.ml dynlink_compilerlibs/debuginfo.ml
#20 92.77 cp ../../lambda/lambda.ml dynlink_compilerlibs/lambda.ml
#20 92.77 cp ../../lambda/runtimedef.ml dynlink_compilerlibs/runtimedef.ml
#20 92.77 cp ../../bytecomp/instruct.ml dynlink_compilerlibs/instruct.ml
#20 92.79 cp ../../bytecomp/opcodes.ml dynlink_compilerlibs/opcodes.ml
#20 92.79 cp ../../bytecomp/bytesections.ml dynlink_compilerlibs/bytesections.ml
#20 92.81 cp ../../bytecomp/dll.ml dynlink_compilerlibs/dll.ml
#20 92.81 cp ../../bytecomp/meta.ml dynlink_compilerlibs/meta.ml
#20 92.82 cp ../../bytecomp/symtable.ml dynlink_compilerlibs/symtable.ml
#20 92.83 cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.ml
#20 92.83 cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.ml
#20 92.83 cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.ml
#20 92.84 cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.ml
#20 92.85 cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.ml
#20 92.87 cp ../../utils/binutils.mli dynlink_compilerlibs/binutils.mli
#20 92.87 cp ../../utils/config.mli dynlink_compilerlibs/config.mli
#20 92.88 cp ../../utils/build_path_prefix_map.mli dynlink_compilerlibs/build_path_prefix_map.mli
#20 92.88 cp ../../utils/misc.mli dynlink_compilerlibs/misc.mli
#20 92.89 cp ../../utils/identifiable.mli dynlink_compilerlibs/identifiable.mli
#20 92.89 cp ../../utils/numbers.mli dynlink_compilerlibs/numbers.mli
#20 92.89 cp ../../utils/arg_helper.mli dynlink_compilerlibs/arg_helper.mli
#20 92.90 cp ../../utils/clflags.mli dynlink_compilerlibs/clflags.mli
#20 92.91 cp ../../utils/profile.mli dynlink_compilerlibs/profile.mli
#20 92.91 cp ../../utils/consistbl.mli dynlink_compilerlibs/consistbl.mli
#20 92.92 cp ../../utils/terminfo.mli dynlink_compilerlibs/terminfo.mli
#20 92.93 cp ../../utils/warnings.mli dynlink_compilerlibs/warnings.mli
#20 92.93 cp ../../utils/local_store.mli dynlink_compilerlibs/local_store.mli
#20 92.94 cp ../../utils/load_path.mli dynlink_compilerlibs/load_path.mli
#20 92.95 cp ../../utils/int_replace_polymorphic_compare.mli dynlink_compilerlibs/int_replace_polymorphic_compare.mli
#20 92.96 cp ../../utils/lazy_backtrack.mli dynlink_compilerlibs/lazy_backtrack.mli
#20 92.97 cp ../../parsing/location.mli dynlink_compilerlibs/location.mli
#20 92.98 cp ../../parsing/longident.mli dynlink_compilerlibs/longident.mli
#20 92.98 cp ../../parsing/docstrings.mli dynlink_compilerlibs/docstrings.mli
#20 92.99 cp ../../parsing/syntaxerr.mli dynlink_compilerlibs/syntaxerr.mli
#20 93.00 cp ../../parsing/ast_helper.mli dynlink_compilerlibs/ast_helper.mli
#20 93.01 cp ../../parsing/ast_mapper.mli dynlink_compilerlibs/ast_mapper.mli
#20 93.02 cp ../../parsing/attr_helper.mli dynlink_compilerlibs/attr_helper.mli
#20 93.02 cp ../../parsing/builtin_attributes.mli dynlink_compilerlibs/builtin_attributes.mli
#20 93.03 cp ../../typing/ident.mli dynlink_compilerlibs/ident.mli
#20 93.04 cp ../../typing/path.mli dynlink_compilerlibs/path.mli
#20 93.05 cp ../../typing/primitive.mli dynlink_compilerlibs/primitive.mli
#20 93.05 cp ../../typing/type_immediacy.mli dynlink_compilerlibs/type_immediacy.mli
#20 93.06 cp ../../typing/shape.mli dynlink_compilerlibs/shape.mli
#20 93.06 cp ../../typing/types.mli dynlink_compilerlibs/types.mli
#20 93.07 cp ../../typing/btype.mli dynlink_compilerlibs/btype.mli
#20 93.07 cp ../../typing/subst.mli dynlink_compilerlibs/subst.mli
#20 93.08 cp ../../typing/predef.mli dynlink_compilerlibs/predef.mli
#20 93.09 cp ../../typing/datarepr.mli dynlink_compilerlibs/datarepr.mli
#20 93.10 cp ../../file_formats/cmi_format.mli dynlink_compilerlibs/cmi_format.mli
#20 93.11 cp ../../typing/persistent_env.mli dynlink_compilerlibs/persistent_env.mli
#20 93.11 cp ../../typing/env.mli dynlink_compilerlibs/env.mli
#20 93.11 cp ../../lambda/debuginfo.mli dynlink_compilerlibs/debuginfo.mli
#20 93.12 cp ../../lambda/lambda.mli dynlink_compilerlibs/lambda.mli
#20 93.12 cp ../../lambda/runtimedef.mli dynlink_compilerlibs/runtimedef.mli
#20 93.13 cp ../../bytecomp/instruct.mli dynlink_compilerlibs/instruct.mli
#20 93.14 cp ../../bytecomp/opcodes.mli dynlink_compilerlibs/opcodes.mli
#20 93.14 cp ../../bytecomp/bytesections.mli dynlink_compilerlibs/bytesections.mli
#20 93.15 cp ../../bytecomp/dll.mli dynlink_compilerlibs/dll.mli
#20 93.15 cp ../../bytecomp/meta.mli dynlink_compilerlibs/meta.mli
#20 93.16 cp ../../bytecomp/symtable.mli dynlink_compilerlibs/symtable.mli
#20 93.17 cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.mli
#20 93.17 cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.mli
#20 93.18 cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.mli
#20 93.19 cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.mli
#20 93.19 cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.mli
#20 93.22 ../../ocamlc.opt -depend -slash -I dynlink_compilerlibs \
#20 93.22 dynlink_compilerlibs/binutils.ml dynlink_compilerlibs/config.ml dynlink_compilerlibs/build_path_prefix_map.ml dynlink_compilerlibs/misc.ml dynlink_compilerlibs/identifiable.ml dynlink_compilerlibs/numbers.ml dynlink_compilerlibs/arg_helper.ml dynlink_compilerlibs/clflags.ml dynlink_compilerlibs/profile.ml dynlink_compilerlibs/consistbl.ml dynlink_compilerlibs/terminfo.ml dynlink_compilerlibs/warnings.ml dynlink_compilerlibs/local_store.ml dynlink_compilerlibs/load_path.ml dynlink_compilerlibs/int_replace_polymorphic_compare.ml dynlink_compilerlibs/lazy_backtrack.ml dynlink_compilerlibs/location.ml dynlink_compilerlibs/longident.ml dynlink_compilerlibs/docstrings.ml dynlink_compilerlibs/syntaxerr.ml dynlink_compilerlibs/ast_helper.ml dynlink_compilerlibs/ast_mapper.ml dynlink_compilerlibs/attr_helper.ml dynlink_compilerlibs/builtin_attributes.ml dynlink_compilerlibs/ident.ml dynlink_compilerlibs/path.ml dynlink_compilerlibs/primitive.ml dynlink_compilerlibs/type_immediacy.ml dynlink_compilerlibs/shape.ml dynlink_compilerlibs/types.ml dynlink_compilerlibs/btype.ml dynlink_compilerlibs/subst.ml dynlink_compilerlibs/predef.ml dynlink_compilerlibs/datarepr.ml dynlink_compilerlibs/cmi_format.ml dynlink_compilerlibs/persistent_env.ml dynlink_compilerlibs/env.ml dynlink_compilerlibs/debuginfo.ml dynlink_compilerlibs/lambda.ml dynlink_compilerlibs/runtimedef.ml dynlink_compilerlibs/instruct.ml dynlink_compilerlibs/opcodes.ml dynlink_compilerlibs/bytesections.ml dynlink_compilerlibs/dll.ml dynlink_compilerlibs/meta.ml dynlink_compilerlibs/symtable.ml dynlink_compilerlibs/asttypes.ml dynlink_compilerlibs/parsetree.ml dynlink_compilerlibs/outcometree.ml dynlink_compilerlibs/cmo_format.ml dynlink_compilerlibs/cmxs_format.ml \
#20 93.22 dynlink_compilerlibs/binutils.mli dynlink_compilerlibs/config.mli dynlink_compilerlibs/build_path_prefix_map.mli dynlink_compilerlibs/misc.mli dynlink_compilerlibs/identifiable.mli dynlink_compilerlibs/numbers.mli dynlink_compilerlibs/arg_helper.mli dynlink_compilerlibs/clflags.mli dynlink_compilerlibs/profile.mli dynlink_compilerlibs/consistbl.mli dynlink_compilerlibs/terminfo.mli dynlink_compilerlibs/warnings.mli dynlink_compilerlibs/local_store.mli dynlink_compilerlibs/load_path.mli dynlink_compilerlibs/int_replace_polymorphic_compare.mli dynlink_compilerlibs/lazy_backtrack.mli dynlink_compilerlibs/location.mli dynlink_compilerlibs/longident.mli dynlink_compilerlibs/docstrings.mli dynlink_compilerlibs/syntaxerr.mli dynlink_compilerlibs/ast_helper.mli dynlink_compilerlibs/ast_mapper.mli dynlink_compilerlibs/attr_helper.mli dynlink_compilerlibs/builtin_attributes.mli dynlink_compilerlibs/ident.mli dynlink_compilerlibs/path.mli dynlink_compilerlibs/primitive.mli dynlink_compilerlibs/type_immediacy.mli dynlink_compilerlibs/shape.mli dynlink_compilerlibs/types.mli dynlink_compilerlibs/btype.mli dynlink_compilerlibs/subst.mli dynlink_compilerlibs/predef.mli dynlink_compilerlibs/datarepr.mli dynlink_compilerlibs/cmi_format.mli dynlink_compilerlibs/persistent_env.mli dynlink_compilerlibs/env.mli dynlink_compilerlibs/debuginfo.mli dynlink_compilerlibs/lambda.mli dynlink_compilerlibs/runtimedef.mli dynlink_compilerlibs/instruct.mli dynlink_compilerlibs/opcodes.mli dynlink_compilerlibs/bytesections.mli dynlink_compilerlibs/dll.mli dynlink_compilerlibs/meta.mli dynlink_compilerlibs/symtable.mli dynlink_compilerlibs/asttypes.mli dynlink_compilerlibs/parsetree.mli dynlink_compilerlibs/outcometree.mli dynlink_compilerlibs/cmo_format.mli dynlink_compilerlibs/cmxs_format.mli \
#20 93.22         > dynlink_compilerlibs/.depend
#20 94.03 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.03           -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmi dynlink_compilerlibs/binutils.mli
#20 94.03 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.03           -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmi dynlink_compilerlibs/config.mli
#20 94.05 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.05           -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmi dynlink_compilerlibs/build_path_prefix_map.mli
#20 94.05 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.05           -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmi dynlink_compilerlibs/identifiable.mli
#20 94.06 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.06           -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmi dynlink_compilerlibs/arg_helper.mli
#20 94.07 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.07           -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmi dynlink_compilerlibs/profile.mli
#20 94.07 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.07           -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmi dynlink_compilerlibs/terminfo.mli
#20 94.07 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.07           -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmi dynlink_compilerlibs/warnings.mli
#20 94.08 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.08           -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmi dynlink_compilerlibs/local_store.mli
#20 94.09 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.09           -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmi dynlink_compilerlibs/load_path.mli
#20 94.10 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.10           -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmi dynlink_compilerlibs/int_replace_polymorphic_compare.mli
#20 94.11 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.11           -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmi dynlink_compilerlibs/lazy_backtrack.mli
#20 94.13 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.13           -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmi dynlink_compilerlibs/longident.mli
#20 94.14 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.14           -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmi dynlink_compilerlibs/runtimedef.mli
#20 94.14 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.14           -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmi dynlink_compilerlibs/opcodes.mli
#20 94.14 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.14           -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmi dynlink_compilerlibs/bytesections.mli
#20 94.15 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.15           -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmi dynlink_compilerlibs/dll.mli
#20 94.15 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte dynlink_types.mli
#20 94.15 cp dynlink_platform_intf.ml dynlink_platform_intf.mli
#20 94.16 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte dynlink.mli
#20 94.17 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.17           -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmo dynlink_compilerlibs/binutils.ml
#20 94.19 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.19           -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmo dynlink_compilerlibs/config.ml
#20 94.19 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.19           -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmo dynlink_compilerlibs/build_path_prefix_map.ml
#20 94.20 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.20           -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmi dynlink_compilerlibs/misc.mli
#20 94.22 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.22           -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmi dynlink_compilerlibs/numbers.mli
#20 94.22 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.22           -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmo dynlink_compilerlibs/arg_helper.ml
#20 94.24 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmo dynlink_compilerlibs/terminfo.ml
#20 94.25 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmo dynlink_compilerlibs/local_store.ml
#20 94.25 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmo dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 94.25 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmo dynlink_compilerlibs/lazy_backtrack.ml
#20 94.27 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.27           -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmi dynlink_compilerlibs/location.mli
#20 94.27 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.27           -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmi dynlink_compilerlibs/ident.mli
#20 94.29 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmo dynlink_compilerlibs/runtimedef.ml
#20 94.29 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmo dynlink_compilerlibs/opcodes.ml
#20 94.31 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.31           -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmo dynlink_compilerlibs/bytesections.ml
#20 94.31 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.31           -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmo dynlink_compilerlibs/dll.ml
#20 94.33 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.33           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmi dynlink_compilerlibs/cmxs_format.mli
#20 94.33 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte dynlink_types.ml
#20 94.33 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte dynlink_platform_intf.mli
#20 94.34 cp dynlink.cmi dynlink.mli byte/
#20 94.34 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.34           -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmo dynlink_compilerlibs/misc.ml
#20 94.34 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.34           -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmo dynlink_compilerlibs/identifiable.ml
#20 94.35 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.35           -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmo dynlink_compilerlibs/numbers.ml
#20 94.35 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.35           -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmi dynlink_compilerlibs/clflags.mli
#20 94.35 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.35           -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmo dynlink_compilerlibs/profile.ml
#20 94.36 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.36           -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmi dynlink_compilerlibs/consistbl.mli
#20 94.37 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.37           -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmo dynlink_compilerlibs/warnings.ml
#20 94.37 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.37           -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmo dynlink_compilerlibs/load_path.ml
#20 94.38 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.38           -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmo dynlink_compilerlibs/longident.ml
#20 94.39 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.39           -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmi dynlink_compilerlibs/asttypes.mli
#20 94.39 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.39           -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmi dynlink_compilerlibs/syntaxerr.mli
#20 94.40 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.40           -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmo dynlink_compilerlibs/ident.ml
#20 94.41 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.41           -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmi dynlink_compilerlibs/path.mli
#20 94.42 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.42           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmo dynlink_compilerlibs/cmxs_format.ml
#20 94.42 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte dynlink_platform_intf.ml
#20 94.42 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte dynlink_common.mli
#20 94.43 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.43           -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmo dynlink_compilerlibs/clflags.ml
#20 94.44 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.44           -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmo dynlink_compilerlibs/consistbl.ml
#20 94.45 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.45           -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmo dynlink_compilerlibs/location.ml
#20 94.46 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.46           -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmi dynlink_compilerlibs/parsetree.mli
#20 94.48 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.48           -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmo dynlink_compilerlibs/syntaxerr.ml
#20 94.49 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.49           -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmo dynlink_compilerlibs/path.ml
#20 94.50 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.50           -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmi dynlink_compilerlibs/shape.mli
#20 94.51 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.51           -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmi dynlink_compilerlibs/debuginfo.mli
#20 94.52 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.52           -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmo dynlink_compilerlibs/asttypes.ml
#20 94.53 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.53           -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmi dynlink_compilerlibs/docstrings.mli
#20 94.54 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.54           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmi dynlink_compilerlibs/ast_mapper.mli
#20 94.55 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.55           -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmi dynlink_compilerlibs/attr_helper.mli
#20 94.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmi dynlink_compilerlibs/builtin_attributes.mli
#20 94.58 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.58           -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmi dynlink_compilerlibs/type_immediacy.mli
#20 94.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmo dynlink_compilerlibs/shape.ml
#20 94.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmo dynlink_compilerlibs/debuginfo.ml
#20 94.60 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.60           -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmo dynlink_compilerlibs/parsetree.ml
#20 94.61 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.61           -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmo dynlink_compilerlibs/docstrings.ml
#20 94.63 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.63           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmi dynlink_compilerlibs/ast_helper.mli
#20 94.64 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.64           -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmo dynlink_compilerlibs/attr_helper.ml
#20 94.65 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.65           -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmo dynlink_compilerlibs/builtin_attributes.ml
#20 94.65 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.65           -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmi dynlink_compilerlibs/outcometree.mli
#20 94.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmo dynlink_compilerlibs/type_immediacy.ml
#20 94.69 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.69           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmo dynlink_compilerlibs/ast_helper.ml
#20 94.70 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.70           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmo dynlink_compilerlibs/ast_mapper.ml
#20 94.71 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.71           -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmi dynlink_compilerlibs/primitive.mli
#20 94.71 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.71           -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmo dynlink_compilerlibs/outcometree.ml
#20 94.73 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.73           -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmo dynlink_compilerlibs/primitive.ml
#20 94.74 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.74           -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmi dynlink_compilerlibs/types.mli
#20 94.83 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.83           -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmo dynlink_compilerlibs/types.ml
#20 94.83 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.83           -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmi dynlink_compilerlibs/btype.mli
#20 94.83 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.83           -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmi dynlink_compilerlibs/subst.mli
#20 94.85 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.85           -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmi dynlink_compilerlibs/predef.mli
#20 94.86 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.86           -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmi dynlink_compilerlibs/datarepr.mli
#20 94.87 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.87           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmi dynlink_compilerlibs/cmi_format.mli
#20 94.89 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.89           -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmo dynlink_compilerlibs/btype.ml
#20 94.90 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.90           -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmo dynlink_compilerlibs/predef.ml
#20 94.91 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.91           -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmo dynlink_compilerlibs/datarepr.ml
#20 94.92 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.92           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmo dynlink_compilerlibs/cmi_format.ml
#20 94.93 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.93           -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmi dynlink_compilerlibs/persistent_env.mli
#20 94.93 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.93           -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmi dynlink_compilerlibs/env.mli
#20 94.97 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.97           -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmo dynlink_compilerlibs/subst.ml
#20 94.98 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 94.98           -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmo dynlink_compilerlibs/persistent_env.ml
#20 95.01 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.01           -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmo dynlink_compilerlibs/env.ml
#20 95.03 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.03           -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmi dynlink_compilerlibs/lambda.mli
#20 95.07 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.07           -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmo dynlink_compilerlibs/lambda.ml
#20 95.08 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.08           -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmi dynlink_compilerlibs/instruct.mli
#20 95.09 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.09           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmi dynlink_compilerlibs/cmo_format.mli
#20 95.11 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.11           -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmo dynlink_compilerlibs/instruct.ml
#20 95.11 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.11           -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmi dynlink_compilerlibs/meta.mli
#20 95.12 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.12           -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmi dynlink_compilerlibs/symtable.mli
#20 95.13 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.13           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmo dynlink_compilerlibs/cmo_format.ml
#20 95.15 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.15           -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmo dynlink_compilerlibs/meta.ml
#20 95.17 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 95.17           -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmo dynlink_compilerlibs/symtable.ml
#20 95.48 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -pack -o byte/dynlink_compilerlibs.cmo dynlink_compilerlibs/binutils.cmo dynlink_compilerlibs/config.cmo dynlink_compilerlibs/build_path_prefix_map.cmo dynlink_compilerlibs/misc.cmo dynlink_compilerlibs/identifiable.cmo dynlink_compilerlibs/numbers.cmo dynlink_compilerlibs/arg_helper.cmo dynlink_compilerlibs/clflags.cmo dynlink_compilerlibs/profile.cmo dynlink_compilerlibs/consistbl.cmo dynlink_compilerlibs/terminfo.cmo dynlink_compilerlibs/warnings.cmo dynlink_compilerlibs/local_store.cmo dynlink_compilerlibs/load_path.cmo dynlink_compilerlibs/int_replace_polymorphic_compare.cmo dynlink_compilerlibs/lazy_backtrack.cmo dynlink_compilerlibs/location.cmo dynlink_compilerlibs/longident.cmo dynlink_compilerlibs/docstrings.cmo dynlink_compilerlibs/syntaxerr.cmo dynlink_compilerlibs/ast_helper.cmo dynlink_compilerlibs/ast_mapper.cmo dynlink_compilerlibs/attr_helper.cmo dynlink_compilerlibs/builtin_attributes.cmo dynlink_compilerlibs/ident.cmo dynlink_compilerlibs/path.cmo dynlink_compilerlibs/primitive.cmo dynlink_compilerlibs/type_immediacy.cmo dynlink_compilerlibs/shape.cmo dynlink_compilerlibs/types.cmo dynlink_compilerlibs/btype.cmo dynlink_compilerlibs/subst.cmo dynlink_compilerlibs/predef.cmo dynlink_compilerlibs/datarepr.cmo dynlink_compilerlibs/cmi_format.cmo dynlink_compilerlibs/persistent_env.cmo dynlink_compilerlibs/env.cmo dynlink_compilerlibs/debuginfo.cmo dynlink_compilerlibs/lambda.cmo dynlink_compilerlibs/runtimedef.cmo dynlink_compilerlibs/instruct.cmo dynlink_compilerlibs/opcodes.cmo dynlink_compilerlibs/bytesections.cmo dynlink_compilerlibs/dll.cmo dynlink_compilerlibs/meta.cmo dynlink_compilerlibs/symtable.cmo dynlink_compilerlibs/asttypes.cmo dynlink_compilerlibs/parsetree.cmo dynlink_compilerlibs/outcometree.cmo dynlink_compilerlibs/cmo_format.cmo dynlink_compilerlibs/cmxs_format.cmo
#20 95.78 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte dynlink_common.ml
#20 95.79 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte byte/dynlink.ml
#20 95.80 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte extract_crc.ml
#20 95.88 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -ccopt "-Wl,-E" -a -I byte -o dynlink.cma byte/dynlink_compilerlibs.cmo dynlink_types.cmo dynlink_platform_intf.cmo dynlink_common.cmo byte/dynlink.cmo
#20 95.93 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -o extract_crc dynlink.cma byte/dynlink_compilerlibs.cmo extract_crc.cmo
#20 96.09 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 96.11 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 96.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.14   -o accept.o accept.c
#20 96.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.14   -o access.o access.c
#20 96.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.14   -o addrofstr.o addrofstr.c
#20 96.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.14   -o alarm.o alarm.c
#20 96.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.15   -o bind.o bind.c
#20 96.16 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.16   -o channels.o channels.c
#20 96.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.17   -o chdir.o chdir.c
#20 96.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.17   -o chmod.o chmod.c
#20 96.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.18   -o chown.o chown.c
#20 96.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.19   -o chroot.o chroot.c
#20 96.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.20   -o close.o close.c
#20 96.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.21   -o fsync.o fsync.c
#20 96.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.21   -o closedir.o closedir.c
#20 96.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.22   -o connect.o connect.c
#20 96.23 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.23   -o cst2constr.o cst2constr.c
#20 96.23 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.23   -o cstringv.o cstringv.c
#20 96.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.24   -o dup.o dup.c
#20 96.25 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.25   -o dup2.o dup2.c
#20 96.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.26   -o envir.o envir.c
#20 96.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.26   -o errmsg.o errmsg.c
#20 96.27 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.27   -o execv.o execv.c
#20 96.28 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.28   -o execve.o execve.c
#20 96.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.29   -o execvp.o execvp.c
#20 96.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.30   -o exit.o exit.c
#20 96.31 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.31   -o fchmod.o fchmod.c
#20 96.32 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.32   -o fchown.o fchown.c
#20 96.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.33   -o fcntl.o fcntl.c
#20 96.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.33   -o fork.o fork.c
#20 96.35 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.35   -o ftruncate.o ftruncate.c
#20 96.35 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.35   -o getaddrinfo.o getaddrinfo.c
#20 96.37 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.37   -o getcwd.o getcwd.c
#20 96.37 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.37   -o getegid.o getegid.c
#20 96.38 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.38   -o geteuid.o geteuid.c
#20 96.39 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.39   -o getgid.o getgid.c
#20 96.39 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.39   -o getgr.o getgr.c
#20 96.40 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.40   -o getgroups.o getgroups.c
#20 96.41 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.41   -o gethost.o gethost.c
#20 96.41 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.41   -o gethostname.o gethostname.c
#20 96.42 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.42   -o getlogin.o getlogin.c
#20 96.43 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.43   -o getnameinfo.o getnameinfo.c
#20 96.44 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.44   -o getpeername.o getpeername.c
#20 96.45 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.45   -o getpid.o getpid.c
#20 96.45 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.45   -o getppid.o getppid.c
#20 96.45 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.45   -o getproto.o getproto.c
#20 96.47 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.47   -o getpw.o getpw.c
#20 96.48 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.48   -o gettimeofday.o gettimeofday.c
#20 96.49 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.49   -o getserv.o getserv.c
#20 96.49 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.49   -o getsockname.o getsockname.c
#20 96.50 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.50   -o getuid.o getuid.c
#20 96.51 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.51   -o gmtime.o gmtime.c
#20 96.53 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.53   -o initgroups.o initgroups.c
#20 96.53 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.53   -o isatty.o isatty.c
#20 96.54 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.54   -o itimer.o itimer.c
#20 96.55 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.55   -o kill.o kill.c
#20 96.56 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.56   -o link.o link.c
#20 96.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.57   -o listen.o listen.c
#20 96.59 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.59   -o lockf.o lockf.c
#20 96.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.60   -o lseek.o lseek.c
#20 96.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.60   -o mkdir.o mkdir.c
#20 96.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.61   -o mkfifo.o mkfifo.c
#20 96.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.63   -o mmap.o mmap.c
#20 96.64 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.64   -o mmap_ba.o mmap_ba.c
#20 96.65 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.65   -o nice.o nice.c
#20 96.66 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.66   -o open.o open.c
#20 96.68 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.68   -o opendir.o opendir.c
#20 96.69 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.69   -o pipe.o pipe.c
#20 96.69 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.69   -o putenv.o putenv.c
#20 96.71 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.71   -o read.o read.c
#20 96.74 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.74   -o realpath.o realpath.c
#20 96.75 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.75   -o readdir.o readdir.c
#20 96.75 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.75   -o readlink.o readlink.c
#20 96.75 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.75   -o rename.o rename.c
#20 96.76 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.76   -o rewinddir.o rewinddir.c
#20 96.77 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.77   -o rmdir.o rmdir.c
#20 96.79 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.79   -o select.o select.c
#20 96.80 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.80   -o sendrecv.o sendrecv.c
#20 96.81 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.81   -o setgid.o setgid.c
#20 96.82 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.82   -o setgroups.o setgroups.c
#20 96.83 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.83   -o setsid.o setsid.c
#20 96.84 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.84   -o setuid.o setuid.c
#20 96.85 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.85   -o shutdown.o shutdown.c
#20 96.86 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.86   -o signals.o signals.c
#20 96.87 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.87   -o sleep.o sleep.c
#20 96.89 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.89   -o socket.o socket.c
#20 96.89 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.89   -o socketaddr.o socketaddr.c
#20 96.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.91   -o socketpair.o socketpair.c
#20 96.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.93   -o sockopt.o sockopt.c
#20 96.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.94   -o spawn.o spawn.c
#20 96.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.95   -o stat.o stat.c
#20 96.96 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.96   -o strofaddr.o strofaddr.c
#20 96.97 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.97   -o symlink.o symlink.c
#20 96.97 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.97   -o termios.o termios.c
#20 96.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.99   -o time.o time.c
#20 96.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.99   -o times.o times.c
#20 96.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 96.99   -o truncate.o truncate.c
#20 97.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 97.00   -o umask.o umask.c
#20 97.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 97.01   -o unixsupport.o unixsupport.c
#20 97.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 97.02   -o unlink.o unlink.c
#20 97.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 97.03   -o utimes.o utimes.c
#20 97.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 97.05   -o wait.o wait.c
#20 97.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 97.07   -o write.o write.c
#20 97.07 ../../ocamlc.opt -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
#20 97.13 ../../ocamlc.opt -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
#20 97.14 ../../ocamlc.opt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error +A -bin-annot -g -safe-string -strict-sequence -strict-formats -nolabels -pp "mawk -f ../../stdlib/expand_module_aliases.awk" unixLabels.mli
#20 97.25 ../../boot/ocamlrun ../../tools/ocamlmklib -oc unix accept.o access.o addrofstr.o alarm.o bind.o channels.o chdir.o chmod.o chown.o chroot.o close.o fsync.o closedir.o connect.o cst2constr.o cstringv.o dup.o dup2.o envir.o errmsg.o execv.o execve.o execvp.o exit.o fchmod.o fchown.o fcntl.o fork.o ftruncate.o getaddrinfo.o getcwd.o getegid.o geteuid.o getgid.o getgr.o getgroups.o gethost.o gethostname.o getlogin.o getnameinfo.o getpeername.o getpid.o getppid.o getproto.o getpw.o gettimeofday.o getserv.o getsockname.o getuid.o gmtime.o initgroups.o isatty.o itimer.o kill.o link.o listen.o lockf.o lseek.o mkdir.o mkfifo.o mmap.o mmap_ba.o nice.o open.o opendir.o pipe.o putenv.o read.o realpath.o readdir.o readlink.o rename.o rewinddir.o rmdir.o select.o sendrecv.o setgid.o setgroups.o setsid.o setuid.o shutdown.o signals.o sleep.o socket.o socketaddr.o socketpair.o sockopt.o spawn.o stat.o strofaddr.o symlink.o termios.o time.o times.o truncate.o umask.o unixsupport.o unlink.o utimes.o wait.o write.o -lm 
#20 97.26 ../../ocamlc.opt -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
#20 97.33 ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib' -linkall \
#20 97.33          unix.cmo unixLabels.cmo 
#20 97.78 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 97.80 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 97.82 ../../ocamlc.opt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error +A -bin-annot -g -safe-string -strict-sequence -strict-formats  bigarray.mli
#20 97.85 ../../ocamlc.opt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error +A -bin-annot -g -safe-string -strict-sequence -strict-formats  bigarray.ml
#20 97.88 ../../ocamlc.opt -nostdlib -I ../../stdlib -o bigarray.cma -a -linkall bigarray.cmo 
#20 97.90 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 97.91 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 97.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 97.94   -o strstubs.o strstubs.c
#20 97.94 ../../ocamlc.opt -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
#20 97.97 ../../ocamlc.opt -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
#20 98.05 ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib' -linkall \
#20 98.05          str.cmo 
#20 98.17 ../../boot/ocamlrun ../../tools/ocamlmklib -oc camlstr strstubs.o 
#20 98.29 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 98.32 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 98.37 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime  \
#20 98.37   -o st_stubs.b.o st_stubs.c
#20 98.38 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string thread.mli
#20 98.39 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string mutex.mli
#20 98.39 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string event.mli
#20 98.40 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string threadUnix.mli
#20 98.41 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string semaphore.mli
#20 98.42 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string thread.ml
#20 98.43 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string mutex.ml
#20 98.43 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string condition.mli
#20 98.45 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string threadUnix.ml
#20 98.48 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string condition.ml
#20 98.48 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string event.ml
#20 98.48 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string semaphore.ml
#20 98.54 ../../boot/ocamlrun ../../tools/ocamlmklib -o threads -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -cclib -lunix -linkall \
#20 98.54   -cclib -lpthread thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo semaphore.cmo
#20 98.79 ../../boot/ocamlrun ../../tools/ocamlmklib -o threads st_stubs.b.o -lpthread
#20 98.88 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 98.88 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 98.89 make -j -C debugger all
#20 98.89 make -j -C ocamldoc all
#20 98.90 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 98.91 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 98.93 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug int64ops.mli
#20 98.93 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug primitives.mli
#20 98.94 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug unix_tools.mli
#20 98.95 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_config.mli
#20 98.96 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_config.mli
#20 98.96 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug parameters.mli
#20 98.96 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_messages.ml
#20 98.97 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_types.mli
#20 98.97 ../boot/ocamlrun ../lex/ocamllex -q debugger_lexer.mll
#20 98.97 ../yacc/ocamlyacc --strict -v odoc_text_parser.mly
#20 98.98 ../yacc/ocamlyacc  debugger_parser.mly
#20 98.98 ../boot/ocamlrun ../lex/ocamllex -q odoc_text_lexer.mll
#20 98.99 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug question.mli
#20 98.99 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_name.mli
#20 99.00 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug exec.mli
#20 99.00 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_print.mli
#20 99.01 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug source.mli
#20 99.01 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments_global.mli
#20 99.01 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug events.mli
#20 99.02 ../yacc/ocamlyacc --strict -v odoc_parser.mly
#20 99.03 ../boot/ocamlrun ../lex/ocamllex -q odoc_lexer.mll
#20 99.03 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug program_loading.mli
#20 99.04 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug trap_barrier.mli
#20 99.04 ../boot/ocamlrun ../lex/ocamllex -q odoc_see_lexer.mll
#20 99.05 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug history.mli
#20 99.05 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_env.mli
#20 99.08 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_source.mli
#20 99.09 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_control.ml
#20 99.09 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug time_travel.mli
#20 99.09 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_inherit.ml
#20 99.10 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_latex_style.ml
#20 99.11 ../boot/ocamlrun ../lex/ocamllex -q odoc_ocamlhtml.mll
#20 99.12 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug program_management.mli
#20 99.13 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug frames.mli
#20 99.13 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_config.ml
#20 99.13 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_information.mli
#20 99.14 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug loadprinter.mli
#20 99.14 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_global.mli
#20 99.14 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug command_line.mli
#20 99.15 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug int64ops.ml
#20 99.15 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_types.ml
#20 99.16 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug primitives.ml
#20 99.16 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_misc.mli
#20 99.16 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug unix_tools.ml
#20 99.17 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_config.ml
#20 99.18 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text_parser.mli
#20 99.18 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug parameters.ml
#20 99.19 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugcom.mli
#20 99.19 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text.mli
#20 99.21 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_parameter.ml
#20 99.22 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug input_handling.mli
#20 99.22 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug exec.ml
#20 99.23 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug source.ml
#20 99.23 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_type.ml
#20 99.24 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_print.ml
#20 99.25 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments_global.ml
#20 99.25 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_parser.mli
#20 99.26 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_env.ml
#20 99.27 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ocamlhtml.ml
#20 99.28 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug pos.mli
#20 99.28 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_global.ml
#20 99.29 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_misc.ml
#20 99.29 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text_parser.ml
#20 99.29 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text_lexer.ml
#20 99.29 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_name.ml
#20 99.30 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_value.ml
#20 99.30 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug checkpoints.mli
#20 99.31 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_extension.ml
#20 99.31 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_exception.ml
#20 99.32 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug events.ml
#20 99.33 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_parser.ml
#20 99.33 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug program_loading.ml
#20 99.33 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_lexer.ml
#20 99.33 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_see_lexer.ml
#20 99.33 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug symbols.mli
#20 99.34 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_class.ml
#20 99.35 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug breakpoints.mli
#20 99.36 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug trap_barrier.ml
#20 99.37 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug history.ml
#20 99.38 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_source.ml
#20 99.38 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug main.ml
#20 99.38 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text.ml
#20 99.38 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug parser_aux.mli
#20 99.39 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug input_handling.ml
#20 99.39 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugcom.ml
#20 99.39 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug pos.ml
#20 99.39 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug checkpoints.ml
#20 99.39 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug symbols.ml
#20 99.40 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug breakpoints.ml
#20 99.40 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug time_travel.ml
#20 99.41 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_module.ml
#20 99.41 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug program_management.ml
#20 99.41 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug frames.ml
#20 99.42 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_str.mli
#20 99.42 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_parser.mli
#20 99.43 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug printval.mli
#20 99.43 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug eval.mli
#20 99.45 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_str.ml
#20 99.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_lexer.mli
#20 99.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_parser.ml
#20 99.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_lexer.ml
#20 99.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug question.ml
#20 99.50 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_merge.mli
#20 99.51 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_sig.mli
#20 99.51 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_search.mli
#20 99.51 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug printval.ml
#20 99.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_scan.ml
#20 99.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug eval.ml
#20 99.52 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_cross.mli
#20 99.52 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments.mli
#20 99.53 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_information.ml
#20 99.53 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dep.ml
#20 99.54 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_analyse.mli
#20 99.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug loadprinter.ml
#20 99.55 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug command_line.ml
#20 99.55 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_merge.ml
#20 99.56 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_sig.ml
#20 99.57 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ast.mli
#20 99.57 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments.ml
#20 99.59 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_info.mli
#20 99.60 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_search.ml
#20 99.61 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_cross.ml
#20 99.63 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ast.ml
#20 99.64 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_analyse.ml
#20 99.65 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_info.ml
#20 99.65 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_to_text.ml
#20 99.66 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_man.ml
#20 99.66 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dag2html.mli
#20 99.67 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dot.ml
#20 99.71 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_html.ml
#20 99.71 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dag2html.ml
#20 99.75 ../ocamlc.opt -g -nostdlib -I ../stdlib -pack -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -o ocamldebug.cmo int64ops.cmo primitives.cmo unix_tools.cmo debugger_config.cmo parameters.cmo debugger_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 debugger_parser.cmo command_line.cmo main.cmo
#20 99.79 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_texi.ml
#20 99.80 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_latex.ml
#20 99.81 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats ocamldebug_entry.ml
#20 99.84 ../ocamlc.opt -g -nostdlib -I ../stdlib -linkall -I ../otherlibs/unix -I ../otherlibs/dynlink -o ocamldebug -linkall ../compilerlibs/ocamlcommon.cma ../otherlibs/unix/unix.cma ../otherlibs/dynlink/dynlink.cma ../toplevel/genprintval.cmo ocamldebug.cmo ocamldebug_entry.cmo
#20 99.87 ../ocamlc.opt -nostdlib -I ../stdlib -a -o odoc_info.cma -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -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
#20 100.1 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_gen.mli
#20 100.2 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_args.mli
#20 100.2 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_gen.ml
#20 100.2 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_test.ml
#20 100.2 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_args.ml
#20 100.2 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc.ml
#20 100.2 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c generators/odoc_todo.ml
#20 100.2 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c generators/odoc_literate.ml
#20 100.4 ../ocamlc.opt -nostdlib -I ../stdlib -o ../ocamldoc/ocamldoc -linkall -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -nostdlib ocamlcommon.cma unix.cma str.cma dynlink.cma 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
#20 100.5 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 100.5 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 100.5 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 100.5 make -j ocamlopt.opt
#20 100.5 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/internal_variable_names.ml -I middle_end
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/linkage_name.ml -I middle_end
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/backend_var.ml -I middle_end
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/clambda_primitives.ml -I middle_end
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/id_types.ml -I middle_end/flambda/base_types
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/tag.ml -I middle_end/flambda/base_types
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/static_exception.ml -I middle_end/flambda/base_types
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/pass_wrapper.ml -I middle_end/flambda
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/allocated_const.ml -I middle_end/flambda
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/arch.ml -I asmcomp
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_proc.ml -I asmcomp
#20 100.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/opterrors.ml -I driver
#20 100.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/printclambda_primitives.ml -I middle_end
#20 100.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/semantics_of_primitives.ml -I middle_end
#20 100.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/convert_primitives.ml -I middle_end
#20 100.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/clambda.ml -I middle_end
#20 100.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/compilation_unit.ml -I middle_end
#20 100.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_masm.ml -I asmcomp
#20 100.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_gas.ml -I asmcomp
#20 100.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_dsl.ml -I asmcomp
#20 100.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/cmm.ml -I asmcomp
#20 100.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/variable.ml -I middle_end
#20 101.0 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/export_id.ml -I middle_end/flambda/base_types
#20 101.0 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/set_of_closures_id.ml -I middle_end/flambda/base_types
#20 101.0 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/printclambda.ml -I middle_end
#20 101.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/set_of_closures_origin.ml -I middle_end/flambda/base_types
#20 101.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/printcmm.ml -I asmcomp
#20 101.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/reg.ml -I asmcomp
#20 101.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/afl_instrument.ml -I asmcomp
#20 101.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/strmatch.ml -I asmcomp
#20 101.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/cmm_invariants.ml -I asmcomp
#20 101.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/emitaux.ml -I asmcomp
#20 101.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/closure_element.ml -I middle_end/flambda/base_types
#20 101.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/symbol.ml -I middle_end
#20 101.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/mutable_variable.ml -I middle_end/flambda/base_types
#20 101.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/parameter.ml -I middle_end/flambda
#20 101.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/closure_id.ml -I middle_end/flambda/base_types
#20 101.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/var_within_closure.ml -I middle_end/flambda/base_types
#20 101.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/mach.ml -I asmcomp
#20 101.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/closure_conversion_aux.ml -I middle_end/flambda
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/closure_origin.ml -I middle_end/flambda/base_types
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/projection.ml -I middle_end/flambda
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/proc.ml -I asmcomp
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/dataflow.ml -I asmcomp
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/comballoc.ml -I asmcomp
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/split.ml -I asmcomp
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/reloadgen.ml -I asmcomp
#20 101.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/linear.ml -I asmcomp
#20 101.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c file_formats/linear_format.ml -I file_formats
#20 101.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/branch_relaxation_intf.ml -I asmcomp
#20 101.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/polling.ml -I asmcomp
#20 101.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/flambda.ml -I middle_end/flambda
#20 101.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/un_anf.ml -I middle_end/flambda
#20 101.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/branch_relaxation.ml -I asmcomp
#20 101.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/reload.ml -I asmcomp
#20 101.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/interval.ml -I asmcomp
#20 101.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/CSEgen.ml -I asmcomp
#20 101.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/spill.ml -I asmcomp
#20 101.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/interf.ml -I asmcomp
#20 101.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/coloring.ml -I asmcomp
#20 101.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/deadcode.ml -I asmcomp
#20 101.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/linearize.ml -I asmcomp
#20 101.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/schedgen.ml -I asmcomp
#20 101.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/printmach.ml -I asmcomp
#20 101.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/linscan.ml -I asmcomp
#20 101.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/selectgen.ml -I asmcomp
#20 102.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/scheduling.ml -I asmcomp
#20 102.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/CSE.ml -I asmcomp
#20 102.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/liveness.ml -I asmcomp
#20 102.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/printlinear.ml -I asmcomp
#20 102.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/flambda_iterators.ml -I middle_end/flambda
#20 102.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/effect_analysis.ml -I middle_end/flambda
#20 102.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/initialize_symbol_to_let_symbol.ml -I middle_end/flambda
#20 102.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/alias_analysis.ml -I middle_end/flambda
#20 102.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/remove_unused_program_constructs.ml -I middle_end/flambda
#20 103.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/flambda_utils.ml -I middle_end/flambda
#20 103.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inlining_cost.ml -I middle_end/flambda
#20 103.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/lift_code.ml -I middle_end/flambda
#20 103.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/share_constants.ml -I middle_end/flambda
#20 103.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/ref_to_variables.ml -I middle_end/flambda
#20 103.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/flambda_invariants.ml -I middle_end/flambda
#20 103.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/selection.ml -I asmcomp
#20 103.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inlining_stats_types.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inlining_stats.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/freshening.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/closure_conversion.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/lift_let_to_initialize_symbol.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/find_recursive_functions.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/invariant_params.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inconstant_idents.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/remove_unused_closure_vars.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/remove_free_vars_equal_to_args.ml -I middle_end/flambda
#20 103.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/closure_offsets.ml -I middle_end/flambda
#20 104.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/remove_unused_arguments.ml -I middle_end/flambda
#20 104.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/simple_value_approx.ml -I middle_end/flambda
#20 104.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/export_info.ml -I middle_end/flambda
#20 104.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/lift_constants.ml -I middle_end/flambda
#20 104.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/simplify_common.ml -I middle_end/flambda
#20 104.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inline_and_simplify_aux.ml -I middle_end/flambda
#20 105.0 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/simplify_boxed_integer_ops.ml -I middle_end/flambda
#20 105.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/simplify_primitives.ml -I middle_end/flambda
#20 105.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/export_info_for_pack.ml -I middle_end/flambda
#20 105.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/compilenv.ml -I middle_end
#20 105.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/traverse_for_exported_symbols.ml -I middle_end/flambda
#20 105.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/extract_projections.ml -I middle_end/flambda
#20 105.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/augment_specialised_args.ml -I middle_end/flambda
#20 105.7 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inlining_transforms.ml -I middle_end/flambda
#20 105.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/unbox_free_vars_of_closures.ml -I middle_end/flambda
#20 105.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/closure/closure.ml -I middle_end/closure
#20 105.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/import_approx.ml -I middle_end/flambda
#20 105.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/build_export_info.ml -I middle_end/flambda
#20 105.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/flambda_to_clambda.ml -I middle_end/flambda
#20 105.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/cmmgen_state.ml -I asmcomp
#20 105.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/emit.ml -I asmcomp
#20 106.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/cmm_helpers.ml -I asmcomp
#20 106.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inlining_decision.ml -I middle_end/flambda
#20 106.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/unbox_specialised_args.ml -I middle_end/flambda
#20 106.2 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/unbox_closures.ml -I middle_end/flambda
#20 106.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inline_and_simplify.ml -I middle_end/flambda
#20 107.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/closure/closure_middle_end.ml -I middle_end/closure
#20 107.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/flambda_middle_end.ml -I middle_end/flambda
#20 108.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/cmmgen.ml -I asmcomp
#20 109.4 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/asmgen.ml -I asmcomp
#20 109.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/asmlink.ml -I asmcomp
#20 109.9 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/optcompile.ml -I driver
#20 110.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/asmlibrarian.ml -I asmcomp
#20 110.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/asmpackager.ml -I asmcomp
#20 110.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/optmaindriver.ml -I driver
#20 110.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -o compilerlibs/ocamloptcomp.cmxa middle_end/internal_variable_names.cmx middle_end/linkage_name.cmx middle_end/compilation_unit.cmx middle_end/variable.cmx middle_end/flambda/base_types/closure_element.cmx middle_end/flambda/base_types/closure_id.cmx middle_end/symbol.cmx middle_end/backend_var.cmx middle_end/clambda_primitives.cmx middle_end/printclambda_primitives.cmx middle_end/clambda.cmx middle_end/printclambda.cmx middle_end/semantics_of_primitives.cmx middle_end/convert_primitives.cmx middle_end/flambda/base_types/id_types.cmx middle_end/flambda/base_types/export_id.cmx middle_end/flambda/base_types/tag.cmx middle_end/flambda/base_types/mutable_variable.cmx middle_end/flambda/base_types/set_of_closures_id.cmx middle_end/flambda/base_types/set_of_closures_origin.cmx middle_end/flambda/base_types/closure_origin.cmx middle_end/flambda/base_types/var_within_closure.cmx middle_end/flambda/base_types/static_exception.cmx middle_end/flambda/pass_wrapper.cmx middle_end/flambda/allocated_const.cmx middle_end/flambda/parameter.cmx middle_end/flambda/projection.cmx middle_end/flambda/flambda.cmx middle_end/flambda/flambda_iterators.cmx middle_end/flambda/flambda_utils.cmx middle_end/flambda/freshening.cmx middle_end/flambda/effect_analysis.cmx middle_end/flambda/inlining_cost.cmx middle_end/flambda/simple_value_approx.cmx middle_end/flambda/export_info.cmx middle_end/flambda/export_info_for_pack.cmx middle_end/compilenv.cmx middle_end/closure/closure.cmx middle_end/closure/closure_middle_end.cmx middle_end/flambda/import_approx.cmx middle_end/flambda/lift_code.cmx middle_end/flambda/closure_conversion_aux.cmx middle_end/flambda/closure_conversion.cmx middle_end/flambda/initialize_symbol_to_let_symbol.cmx middle_end/flambda/lift_let_to_initialize_symbol.cmx middle_end/flambda/find_recursive_functions.cmx middle_end/flambda/invariant_params.cmx middle_end/flambda/inconstant_idents.cmx middle_end/flambda/alias_analysis.cmx middle_end/flambda/lift_constants.cmx middle_end/flambda/share_constants.cmx middle_end/flambda/simplify_common.cmx middle_end/flambda/remove_unused_arguments.cmx middle_end/flambda/remove_unused_closure_vars.cmx middle_end/flambda/remove_unused_program_constructs.cmx middle_end/flambda/simplify_boxed_integer_ops.cmx middle_end/flambda/simplify_primitives.cmx middle_end/flambda/inlining_stats_types.cmx middle_end/flambda/inlining_stats.cmx middle_end/flambda/inline_and_simplify_aux.cmx middle_end/flambda/remove_free_vars_equal_to_args.cmx middle_end/flambda/extract_projections.cmx middle_end/flambda/augment_specialised_args.cmx middle_end/flambda/unbox_free_vars_of_closures.cmx middle_end/flambda/unbox_specialised_args.cmx middle_end/flambda/unbox_closures.cmx middle_end/flambda/inlining_transforms.cmx middle_end/flambda/inlining_decision.cmx middle_end/flambda/inline_and_simplify.cmx middle_end/flambda/ref_to_variables.cmx middle_end/flambda/flambda_invariants.cmx middle_end/flambda/traverse_for_exported_symbols.cmx middle_end/flambda/build_export_info.cmx middle_end/flambda/closure_offsets.cmx middle_end/flambda/un_anf.cmx middle_end/flambda/flambda_to_clambda.cmx middle_end/flambda/flambda_middle_end.cmx asmcomp/arch.cmx asmcomp/cmm.cmx asmcomp/printcmm.cmx asmcomp/reg.cmx asmcomp/mach.cmx asmcomp/proc.cmx asmcomp/afl_instrument.cmx asmcomp/strmatch.cmx asmcomp/cmmgen_state.cmx asmcomp/cmm_helpers.cmx asmcomp/cmmgen.cmx asmcomp/cmm_invariants.cmx asmcomp/interval.cmx asmcomp/printmach.cmx asmcomp/dataflow.cmx asmcomp/polling.cmx asmcomp/selectgen.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/linscan.cmx asmcomp/reloadgen.cmx asmcomp/reload.cmx asmcomp/deadcode.cmx asmcomp/linear.cmx asmcomp/printlinear.cmx asmcomp/linearize.cmx file_formats/linear_format.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 driver/optmaindriver.cmx
#20 110.8 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/optmain.ml -I driver
#20 111.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink  -o ocamlopt.opt compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa driver/optmain.cmx
#20 113.0 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 113.0 make -j otherlibrariesopt
#20 113.0 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 113.0 make -j -C otherlibs allopt
#20 113.0 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 113.0 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmx dynlink_compilerlibs/binutils.ml
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmx dynlink_compilerlibs/config.ml
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmx dynlink_compilerlibs/build_path_prefix_map.ml
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmx dynlink_compilerlibs/arg_helper.ml
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmx dynlink_compilerlibs/terminfo.ml
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmx dynlink_compilerlibs/local_store.ml
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmx dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 113.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmx dynlink_compilerlibs/lazy_backtrack.ml
#20 113.2 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.2           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmx dynlink_compilerlibs/runtimedef.ml
#20 113.2 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.2           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmx dynlink_compilerlibs/opcodes.ml
#20 113.2 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -function-sections -I native dynlink_types.ml
#20 113.2 cp dynlink.cmi dynlink.mli native/
#20 113.4 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.4           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmx dynlink_compilerlibs/misc.ml
#20 113.4 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.4           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmx dynlink_compilerlibs/bytesections.ml
#20 113.4 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -function-sections -I native dynlink_platform_intf.ml
#20 113.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmx dynlink_compilerlibs/identifiable.ml
#20 113.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmx dynlink_compilerlibs/profile.ml
#20 113.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmx dynlink_compilerlibs/consistbl.ml
#20 113.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmx dynlink_compilerlibs/warnings.ml
#20 113.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmx dynlink_compilerlibs/load_path.ml
#20 113.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmx dynlink_compilerlibs/longident.ml
#20 113.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmx dynlink_compilerlibs/dll.ml
#20 113.8 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.8           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmx dynlink_compilerlibs/cmxs_format.ml
#20 113.9 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 113.9           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmx dynlink_compilerlibs/numbers.ml
#20 114.0 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.0           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmx dynlink_compilerlibs/clflags.ml
#20 114.2 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.2           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmx dynlink_compilerlibs/location.ml
#20 114.2 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.2           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmx dynlink_compilerlibs/ident.ml
#20 114.4 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.4           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmx dynlink_compilerlibs/path.ml
#20 114.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmx dynlink_compilerlibs/asttypes.ml
#20 114.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmx dynlink_compilerlibs/syntaxerr.ml
#20 114.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmx dynlink_compilerlibs/parsetree.ml
#20 114.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmx dynlink_compilerlibs/debuginfo.ml
#20 114.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmx dynlink_compilerlibs/shape.ml
#20 114.6 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.6           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmx dynlink_compilerlibs/docstrings.ml
#20 114.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmx dynlink_compilerlibs/attr_helper.ml
#20 114.7 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.7           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmx dynlink_compilerlibs/builtin_attributes.ml
#20 114.8 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.8           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmx dynlink_compilerlibs/ast_helper.ml
#20 114.8 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.8           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmx dynlink_compilerlibs/type_immediacy.ml
#20 114.9 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.9           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmx dynlink_compilerlibs/outcometree.ml
#20 114.9 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 114.9           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmx dynlink_compilerlibs/primitive.ml
#20 115.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmx dynlink_compilerlibs/ast_mapper.ml
#20 115.1 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.1           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmx dynlink_compilerlibs/types.ml
#20 115.3 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.3           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmx dynlink_compilerlibs/btype.ml
#20 115.3 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.3           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmx dynlink_compilerlibs/cmi_format.ml
#20 115.4 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.4           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmx dynlink_compilerlibs/persistent_env.ml
#20 115.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmx dynlink_compilerlibs/subst.ml
#20 115.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmx dynlink_compilerlibs/predef.ml
#20 115.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmx dynlink_compilerlibs/datarepr.ml
#20 115.8 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 115.8           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmx dynlink_compilerlibs/env.ml
#20 116.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 116.5           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmx dynlink_compilerlibs/lambda.ml
#20 116.8 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 116.8           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmx dynlink_compilerlibs/instruct.ml
#20 116.8 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 116.8           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmx dynlink_compilerlibs/cmo_format.ml
#20 116.8 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 116.8           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmx dynlink_compilerlibs/meta.ml
#20 116.9 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 116.9           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmx dynlink_compilerlibs/symtable.ml
#20 117.0 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -function-sections -I native -pack -o native/dynlink_compilerlibs.cmx dynlink_compilerlibs/binutils.cmx dynlink_compilerlibs/config.cmx dynlink_compilerlibs/build_path_prefix_map.cmx dynlink_compilerlibs/misc.cmx dynlink_compilerlibs/identifiable.cmx dynlink_compilerlibs/numbers.cmx dynlink_compilerlibs/arg_helper.cmx dynlink_compilerlibs/clflags.cmx dynlink_compilerlibs/profile.cmx dynlink_compilerlibs/consistbl.cmx dynlink_compilerlibs/terminfo.cmx dynlink_compilerlibs/warnings.cmx dynlink_compilerlibs/local_store.cmx dynlink_compilerlibs/load_path.cmx dynlink_compilerlibs/int_replace_polymorphic_compare.cmx dynlink_compilerlibs/lazy_backtrack.cmx dynlink_compilerlibs/location.cmx dynlink_compilerlibs/longident.cmx dynlink_compilerlibs/docstrings.cmx dynlink_compilerlibs/syntaxerr.cmx dynlink_compilerlibs/ast_helper.cmx dynlink_compilerlibs/ast_mapper.cmx dynlink_compilerlibs/attr_helper.cmx dynlink_compilerlibs/builtin_attributes.cmx dynlink_compilerlibs/ident.cmx dynlink_compilerlibs/path.cmx dynlink_compilerlibs/primitive.cmx dynlink_compilerlibs/type_immediacy.cmx dynlink_compilerlibs/shape.cmx dynlink_compilerlibs/types.cmx dynlink_compilerlibs/btype.cmx dynlink_compilerlibs/subst.cmx dynlink_compilerlibs/predef.cmx dynlink_compilerlibs/datarepr.cmx dynlink_compilerlibs/cmi_format.cmx dynlink_compilerlibs/persistent_env.cmx dynlink_compilerlibs/env.cmx dynlink_compilerlibs/debuginfo.cmx dynlink_compilerlibs/lambda.cmx dynlink_compilerlibs/runtimedef.cmx dynlink_compilerlibs/instruct.cmx dynlink_compilerlibs/opcodes.cmx dynlink_compilerlibs/bytesections.cmx dynlink_compilerlibs/dll.cmx dynlink_compilerlibs/meta.cmx dynlink_compilerlibs/symtable.cmx dynlink_compilerlibs/asttypes.cmx dynlink_compilerlibs/parsetree.cmx dynlink_compilerlibs/outcometree.cmx dynlink_compilerlibs/cmo_format.cmx dynlink_compilerlibs/cmxs_format.cmx
#20 117.4 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -function-sections -I native dynlink_common.ml
#20 117.5 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -c -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -function-sections -I native native/dynlink.ml
#20 117.6 ../../ocamlopt.opt -g -nostdlib -I ../../stdlib -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte -ccopt "-Wl,-E" -a -I native \
#20 117.6             -o dynlink.cmxa native/dynlink_compilerlibs.cmx dynlink_types.cmx dynlink_platform_intf.cmx dynlink_common.cmx native/dynlink.cmx
#20 117.7 cp native/dynlink.cmx dynlink.cmx
#20 117.7 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 117.7 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 117.7 ../../ocamlopt.opt -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 -function-sections unix.ml
#20 117.9 ../../ocamlopt.opt -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 -function-sections unixLabels.ml
#20 118.0 ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlopt '../../ocamlopt.opt -nostdlib -I ../../stdlib' -linkall \
#20 118.0          unix.cmx unixLabels.cmx 
#20 118.0 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o unix.cmxs -I . unix.cmxa
#20 118.2 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 118.2 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 118.2 ../../ocamlopt.opt -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  -function-sections bigarray.ml
#20 118.3 ../../ocamlopt.opt -nostdlib -I ../../stdlib -o bigarray.cmxa -a -linkall bigarray.cmx 
#20 118.3 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o bigarray.cmxs -I . bigarray.cmxa
#20 118.3 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 118.3 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 118.4 ../../ocamlopt.opt -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  -function-sections str.ml
#20 118.6 ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlopt '../../ocamlopt.opt -nostdlib -I ../../stdlib' -linkall \
#20 118.6          str.cmx 
#20 118.6 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o str.cmxs -I . str.cmxa
#20 118.7 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 118.7 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 118.7 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  \
#20 118.7   -o st_stubs.n.o st_stubs.c
#20 118.7 ../../ocamlopt.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string -function-sections thread.ml
#20 118.7 ../../ocamlopt.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string -function-sections mutex.ml
#20 118.7 ../../ocamlopt.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string -function-sections condition.ml
#20 118.7 ../../ocamlopt.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string -function-sections threadUnix.ml
#20 118.8 ../../ocamlopt.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string -function-sections event.ml
#20 118.8 ../../ocamlopt.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string -function-sections semaphore.ml
#20 118.9 ../../ocamlopt.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -linkall -a -cclib -lthreadsnat -cclib -lpthread -o threads.cmxa thread.cmx mutex.cmx condition.cmx event.cmx threadUnix.cmx semaphore.cmx
#20 119.1 ../../boot/ocamlrun ../../tools/ocamlmklib -o threadsnat st_stubs.n.o
#20 119.2 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 119.2 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 119.2 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 119.2 make -j ocamllex.opt ocamltoolsopt ocamltoolsopt.opt ocamldoc.opt \
#20 119.2    ocamlnat
#20 119.2 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 119.3 make -j -C lex allopt
#20 119.3 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 119.3 make -j -C tools opt
#20 119.3 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 119.3 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot cset.ml
#20 119.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -o compilerlibs/ocamlmiddleend.cmxa middle_end/internal_variable_names.cmx middle_end/linkage_name.cmx middle_end/compilation_unit.cmx middle_end/variable.cmx middle_end/flambda/base_types/closure_element.cmx middle_end/flambda/base_types/closure_id.cmx middle_end/symbol.cmx middle_end/backend_var.cmx middle_end/clambda_primitives.cmx middle_end/printclambda_primitives.cmx middle_end/clambda.cmx middle_end/printclambda.cmx middle_end/semantics_of_primitives.cmx middle_end/convert_primitives.cmx middle_end/flambda/base_types/id_types.cmx middle_end/flambda/base_types/export_id.cmx middle_end/flambda/base_types/tag.cmx middle_end/flambda/base_types/mutable_variable.cmx middle_end/flambda/base_types/set_of_closures_id.cmx middle_end/flambda/base_types/set_of_closures_origin.cmx middle_end/flambda/base_types/closure_origin.cmx middle_end/flambda/base_types/var_within_closure.cmx middle_end/flambda/base_types/static_exception.cmx middle_end/flambda/pass_wrapper.cmx middle_end/flambda/allocated_const.cmx middle_end/flambda/parameter.cmx middle_end/flambda/projection.cmx middle_end/flambda/flambda.cmx middle_end/flambda/flambda_iterators.cmx middle_end/flambda/flambda_utils.cmx middle_end/flambda/freshening.cmx middle_end/flambda/effect_analysis.cmx middle_end/flambda/inlining_cost.cmx middle_end/flambda/simple_value_approx.cmx middle_end/flambda/export_info.cmx middle_end/flambda/export_info_for_pack.cmx middle_end/compilenv.cmx middle_end/closure/closure.cmx middle_end/closure/closure_middle_end.cmx middle_end/flambda/import_approx.cmx middle_end/flambda/lift_code.cmx middle_end/flambda/closure_conversion_aux.cmx middle_end/flambda/closure_conversion.cmx middle_end/flambda/initialize_symbol_to_let_symbol.cmx middle_end/flambda/lift_let_to_initialize_symbol.cmx middle_end/flambda/find_recursive_functions.cmx middle_end/flambda/invariant_params.cmx middle_end/flambda/inconstant_idents.cmx middle_end/flambda/alias_analysis.cmx middle_end/flambda/lift_constants.cmx middle_end/flambda/share_constants.cmx middle_end/flambda/simplify_common.cmx middle_end/flambda/remove_unused_arguments.cmx middle_end/flambda/remove_unused_closure_vars.cmx middle_end/flambda/remove_unused_program_constructs.cmx middle_end/flambda/simplify_boxed_integer_ops.cmx middle_end/flambda/simplify_primitives.cmx middle_end/flambda/inlining_stats_types.cmx middle_end/flambda/inlining_stats.cmx middle_end/flambda/inline_and_simplify_aux.cmx middle_end/flambda/remove_free_vars_equal_to_args.cmx middle_end/flambda/extract_projections.cmx middle_end/flambda/augment_specialised_args.cmx middle_end/flambda/unbox_free_vars_of_closures.cmx middle_end/flambda/unbox_specialised_args.cmx middle_end/flambda/unbox_closures.cmx middle_end/flambda/inlining_transforms.cmx middle_end/flambda/inlining_decision.cmx middle_end/flambda/inline_and_simplify.cmx middle_end/flambda/ref_to_variables.cmx middle_end/flambda/flambda_invariants.cmx middle_end/flambda/traverse_for_exported_symbols.cmx middle_end/flambda/build_export_info.cmx middle_end/flambda/closure_offsets.cmx middle_end/flambda/un_anf.cmx middle_end/flambda/flambda_to_clambda.cmx middle_end/flambda/flambda_middle_end.cmx
#20 119.3 make -j -C yacc  all
#20 119.3 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot table.ml
#20 119.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - profiling.ml
#20 119.3 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/native/tophooks.mli
#20 119.3 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 119.3 cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/native
#20 119.3 cp toplevel/trace.cmi toplevel/trace.mli toplevel/native
#20 119.3 make[3]: Nothing to be done for 'all'.
#20 119.3 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 119.3 cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/native
#20 119.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c toplevel/genprintval.ml -I toplevel
#20 119.3 make -j -C lex all
#20 119.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c toplevel/native/trace.ml -I toplevel/native
#20 119.3 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 119.3 make[3]: Nothing to be done for 'all'.
#20 119.3 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 119.3 make -j -C ocamldoc opt.opt
#20 119.3 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_config.ml
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_messages.ml
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_print.ml
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments_global.ml
#20 119.4 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_control.ml
#20 119.4 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot syntax.ml
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_inherit.ml
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ocamlhtml.ml
#20 119.4 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_latex_style.ml
#20 119.4 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot parser.ml
#20 119.4 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot lexgen.ml
#20 119.5 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_types.ml
#20 119.6 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_global.ml
#20 119.6 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_misc.ml
#20 119.6 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_parameter.ml
#20 119.6 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_parser.ml
#20 119.6 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot lexer.ml
#20 119.7 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_lexer.ml
#20 119.7 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_see_lexer.ml
#20 119.8 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text_parser.ml
#20 119.8 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_name.ml
#20 119.9 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text_lexer.ml
#20 119.9 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_value.ml
#20 119.9 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_type.ml
#20 119.9 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_env.ml
#20 120.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_class.ml
#20 120.0 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c toplevel/topcommon.ml -I toplevel
#20 120.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_extension.ml
#20 120.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_exception.ml
#20 120.0 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot compact.ml
#20 120.0 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot common.ml
#20 120.1 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_module.ml
#20 120.1 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_str.ml
#20 120.1 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text.ml
#20 120.2 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot output.ml
#20 120.2 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.ml
#20 120.2 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_merge.ml
#20 120.2 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_search.ml
#20 120.3 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_scan.ml
#20 120.3 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dep.ml
#20 120.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c toplevel/native/tophooks.ml -I toplevel/native
#20 120.5 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_sig.ml
#20 120.5 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_cross.ml
#20 120.6 ../boot/ocamlrun ../ocamlopt -nostdlib -I ../stdlib -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot main.ml
#20 120.6 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c toplevel/native/topeval.ml -I toplevel/native
#20 120.7 ../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
#20 120.8 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments.ml
#20 121.0 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -I toplevel/native -c toplevel/toploop.ml
#20 121.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ast.ml
#20 121.3 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 121.3 make -j -C tools opt.opt
#20 121.3 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 121.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - ocamldep.ml
#20 121.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - ocamlprof.ml
#20 121.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -I toplevel/native -c toplevel/topdirs.ml
#20 121.3 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c toplevel/native/topmain.ml -I toplevel/native
#20 121.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - ocamlcp.ml
#20 121.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - ocamloptp.ml
#20 121.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - ocamlmklib.ml
#20 121.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - ocamlmktop.ml
#20 121.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - ocamlcmt.ml
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - opnames.ml
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - objinfo.ml
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - primreq.ml
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - stripdebug.ml
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - cmpbyt.ml
#20 121.4 ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib \
#20 121.4   -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I ../otherlibs/str -I ../otherlibs/unix -linkall -o caml-tex -no-alias-deps ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ../compilerlibs/ocamltoplevel.cma ../otherlibs/str/str.cma ../otherlibs/unix/unix.cma caml_tex.ml
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamldep.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa ocamldep.cmx
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -absname -w +a-4-9-41-42-44-45-48-70 -strict-sequence -warn-error +A -principal -safe-string -strict-formats -bin-annot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -c - dumpobj.ml
#20 121.4 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlmktop.opt ../utils/config.cmx ../utils/build_path_prefix_map.cmx ../utils/misc.cmx ../utils/identifiable.cmx ../utils/numbers.cmx ../utils/arg_helper.cmx ../utils/clflags.cmx ../utils/local_store.cmx ../utils/load_path.cmx ../utils/profile.cmx ../utils/ccomp.cmx ocamlmktop.cmx
#20 121.5 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlcp.opt ../utils/config.cmx ../utils/build_path_prefix_map.cmx ../utils/misc.cmx ../utils/profile.cmx ../utils/warnings.cmx ../utils/identifiable.cmx ../utils/numbers.cmx ../utils/arg_helper.cmx ../utils/clflags.cmx ../utils/local_store.cmx ../utils/terminfo.cmx ../parsing/location.cmx ../utils/load_path.cmx ../utils/ccomp.cmx ../driver/compenv.cmx ../driver/main_args.cmx ocamlcp.cmx
#20 121.5 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o stripdebug.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa stripdebug.cmx
#20 121.5 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamloptp.opt ../utils/config.cmx ../utils/build_path_prefix_map.cmx ../utils/misc.cmx ../utils/profile.cmx ../utils/warnings.cmx ../utils/identifiable.cmx ../utils/numbers.cmx ../utils/arg_helper.cmx ../utils/clflags.cmx ../utils/local_store.cmx ../utils/terminfo.cmx ../parsing/location.cmx ../utils/load_path.cmx ../utils/ccomp.cmx ../driver/compenv.cmx ../driver/main_args.cmx ocamloptp.cmx
#20 121.5 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -I toplevel/native -c toplevel/topstart.ml
#20 121.6 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o cmpbyt.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa cmpbyt.cmx
#20 121.6 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_analyse.ml
#20 121.6 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o primreq.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa primreq.cmx
#20 121.7 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlcmt.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa ocamlcmt.cmx
#20 121.8 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_info.ml
#20 121.9 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlprof.opt ../utils/config.cmx ../utils/build_path_prefix_map.cmx ../utils/misc.cmx ../utils/identifiable.cmx ../utils/numbers.cmx ../utils/arg_helper.cmx ../utils/clflags.cmx ../utils/terminfo.cmx ../utils/warnings.cmx ../parsing/location.cmx ../parsing/longident.cmx ../parsing/docstrings.cmx ../parsing/syntaxerr.cmx ../parsing/ast_helper.cmx ../parsing/camlinternalMenhirLib.cmx ../parsing/parser.cmx ../parsing/pprintast.cmx ../parsing/lexer.cmx ../parsing/parse.cmx ocamlprof.cmx
#20 121.9 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlmklib.opt ../utils/config.cmx ../utils/build_path_prefix_map.cmx ../utils/misc.cmx ocamlmklib.cmx
#20 122.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dag2html.ml
#20 122.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_to_text.ml
#20 122.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_man.ml
#20 122.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dot.ml
#20 122.0 ../ocamlopt.opt -nostdlib -I ../stdlib -a -o odoc_info.cmxa -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -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
#20 122.0 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o dumpobj.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa opnames.cmx dumpobj.cmx
#20 122.0 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -a -o compilerlibs/ocamltoplevel.cmxa -I toplevel/native toplevel/genprintval.cmx toplevel/topcommon.cmx toplevel/native/tophooks.cmx toplevel/native/topeval.cmx toplevel/native/trace.cmx toplevel/toploop.cmx toplevel/topdirs.cmx toplevel/native/topmain.cmx
#20 122.1 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink  -linkall -I toplevel/native -o ocamlnat compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa compilerlibs/ocamlbytecomp.cmxa otherlibs/dynlink/dynlink.cmxa compilerlibs/ocamltoplevel.cmxa toplevel/topstart.cmx
#20 122.3 ../boot/ocamlrun ../ocamlopt -g -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o ocamlobjinfo.opt ../compilerlibs/ocamlcommon.cmxa ../compilerlibs/ocamlbytecomp.cmxa ../compilerlibs/ocamlmiddleend.cmxa objinfo.cmx
#20 122.5 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_latex.ml
#20 122.5 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_texi.ml
#20 122.5 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_html.ml
#20 124.0 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_gen.ml
#20 124.2 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_args.ml
#20 124.3 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 124.5 ../ocamlopt.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc.ml
#20 124.5 ../ocamlopt.opt -nostdlib -I ../stdlib -shared -o generators/odoc_todo.cmxs -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal generators/odoc_todo.ml
#20 124.5 ../ocamlopt.opt -nostdlib -I ../stdlib -shared -o generators/odoc_literate.cmxs -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal generators/odoc_literate.ml
#20 124.6 ../ocamlopt.opt -nostdlib -I ../stdlib -o ../ocamldoc/ocamldoc.opt -linkall -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -nostdlib ocamlcommon.cmxa unix.cmxa str.cmxa dynlink.cmxa 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
#20 126.3 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 126.3 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 126.3 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 126.3 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 126.4 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 126.4 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"
#20 126.4 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 126.4 mkdir -p "/tmp/opam/bootstrap/ocaml/share/doc/ocaml"
#20 126.4 make -j -C runtime install
#20 126.4 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 126.8 /usr/bin/install -c -p ocamlrun ocamlrund ocamlruni "/tmp/opam/bootstrap/ocaml/bin"
#20 126.8 /usr/bin/install -c -p -m 644 ld.conf libcamlrun.a libcamlrund.a libcamlruni.a libcamlrun_pic.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 126.8 /usr/bin/install -c -p libcamlrun_shared.so "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 126.8 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 126.8 /usr/bin/install -c -p -m 644 caml/domain_state.tbl caml/*.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 127.1 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 127.1 /usr/bin/install -c -p ocaml "/tmp/opam/bootstrap/ocaml/bin"
#20 127.1 /usr/bin/install -c -p ocamlc "/tmp/opam/bootstrap/ocaml/bin/ocamlc.byte"
#20 127.2 make -j -C stdlib install
#20 127.2 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 127.2 stale=""; \
#20 127.2   if test -n "$stale" ; then \
#20 127.2     echo "/tmp/opam/bootstrap/ocaml/lib/ocaml contains stale stdlib artefacts"; \
#20 127.2     echo "Please rm /tmp/opam/bootstrap/ocaml/lib/ocaml/stdlib__*.cm* and re-run make install"; \
#20 127.2     exit 1; \
#20 127.2   fi
#20 127.2 /usr/bin/install -c -p -m 644 \
#20 127.2   stdlib.cma std_exit.cmo *.cmi camlheader_ur \
#20 127.2   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 127.3 /usr/bin/install -c -p -m 644 \
#20 127.3   *.cmt *.cmti *.mli *.ml \
#20 127.3   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 127.5 /usr/bin/install -c -p -m 644 target_camlheader "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheader"
#20 127.5 /usr/bin/install -c -p -m 644 target_camlheaderd "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheaderd"
#20 127.5 /usr/bin/install -c -p -m 644 target_camlheaderi "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheaderi"
#20 127.5 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 127.5 /usr/bin/install -c -p lex/ocamllex \
#20 127.5   "/tmp/opam/bootstrap/ocaml/bin/ocamllex.byte"
#20 127.6 /usr/bin/install -c -p yacc/ocamlyacc "/tmp/opam/bootstrap/ocaml/bin"
#20 127.6 /usr/bin/install -c -p -m 644 \
#20 127.6    utils/*.cmi \
#20 127.6    parsing/*.cmi \
#20 127.6    typing/*.cmi \
#20 127.6    bytecomp/*.cmi \
#20 127.6    file_formats/*.cmi \
#20 127.6    lambda/*.cmi \
#20 127.6    driver/*.cmi \
#20 127.6    toplevel/*.cmi \
#20 127.6    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 127.9 /usr/bin/install -c -p -m 644 \
#20 127.9    toplevel/byte/*.cmi \
#20 127.9    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 127.9 /usr/bin/install -c -p -m 644 \
#20 127.9    utils/*.cmt utils/*.cmti utils/*.mli \
#20 127.9    parsing/*.cmt parsing/*.cmti parsing/*.mli \
#20 127.9    typing/*.cmt typing/*.cmti typing/*.mli \
#20 127.9    file_formats/*.cmt file_formats/*.cmti file_formats/*.mli \
#20 127.9    lambda/*.cmt lambda/*.cmti lambda/*.mli \
#20 127.9    bytecomp/*.cmt bytecomp/*.cmti bytecomp/*.mli \
#20 127.9    driver/*.cmt driver/*.cmti driver/*.mli \
#20 127.9    toplevel/*.cmt toplevel/*.cmti toplevel/*.mli \
#20 127.9    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 128.6 /usr/bin/install -c -p -m 644 \
#20 128.6    toplevel/byte/*.cmt \
#20 128.6    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 128.6 /usr/bin/install -c -p -m 644 \
#20 128.6   compilerlibs/*.cma \
#20 128.6   "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 128.7 /usr/bin/install -c -p -m 644 \
#20 128.7    driver/main.cmo toplevel/topstart.cmo \
#20 128.7    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 128.7 /usr/bin/install -c -p expunge "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 128.8 /usr/bin/install -c -p -m 644 \
#20 128.8    toplevel/topdirs.cmi \
#20 128.8    "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 128.8 /usr/bin/install -c -p -m 644 \
#20 128.8    toplevel/topdirs.cmt \
#20 128.8    toplevel/topdirs.cmti toplevel/topdirs.mli \
#20 128.8    "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 128.8 make -j -C tools install
#20 128.8 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 128.8 /usr/bin/install -c -p -m 644 \
#20 128.8   profiling.cmi profiling.cmo \
#20 128.8   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 128.9 /usr/bin/install -c -p -m 644 \
#20 128.9   profiling.cmt profiling.cmti \
#20 128.9   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 128.9 for i in ocamldep ocamlprof ocamlcp ocamloptp ocamlmklib ocamlmktop ocamlobjinfo; \
#20 128.9 do \
#20 128.9   /usr/bin/install -c -p "$i" "/tmp/opam/bootstrap/ocaml/bin/$i.byte"; \
#20 128.9   if test -f "$i".opt; then \
#20 128.9     /usr/bin/install -c -p "$i.opt" "/tmp/opam/bootstrap/ocaml/bin" && \
#20 128.9     (cd "/tmp/opam/bootstrap/ocaml/bin" && ln -sf "$i.opt" "$i"); \
#20 128.9   else \
#20 128.9     (cd "/tmp/opam/bootstrap/ocaml/bin" && ln -sf "$i.byte" "$i"); \
#20 128.9   fi; \
#20 128.9 done
#20 129.4 if test -f ocamlcmt.opt; then \
#20 129.4   /usr/bin/install -c -p\
#20 129.4     ocamlcmt.opt "/tmp/opam/bootstrap/ocaml/bin/ocamlcmt"; \
#20 129.4 else \
#20 129.4   /usr/bin/install -c -p ocamlcmt "/tmp/opam/bootstrap/ocaml/bin"; \
#20 129.4 fi
#20 129.5 /usr/bin/install -c -p -m 644 \
#20 129.5   eventlog_metadata \
#20 129.5   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 129.5 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 129.5 make -j -C man install
#20 129.5 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/man'
#20 129.6 mkdir -p /tmp/opam/bootstrap/ocaml/man/man1
#20 129.6 /usr/bin/install -c -p -m 644 ocaml.1 ocamlc.1 ocamlc.opt.1 ocamlcp.1 ocamldebug.1 ocamldep.1 ocamldoc.1 ocamllex.1 ocamlmktop.1 ocamlopt.1 ocamlopt.opt.1 ocamloptp.1 ocamlprof.1 ocamlrun.1 ocamlyacc.1 /tmp/opam/bootstrap/ocaml/man/man1
#20 129.6 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/man'
#20 129.6 for i in dynlink unix bigarray str systhreads; do \
#20 129.6   make -j -C otherlibs/$i install || exit $?; \
#20 129.6 done
#20 129.6 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 129.7 /usr/bin/install -c -p -m 644 \
#20 129.7   dynlink.cmi dynlink.cma \
#20 129.7   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 129.7 /usr/bin/install -c -p -m 644 \
#20 129.7   dynlink.cmti dynlink.mli \
#20 129.7   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 129.7 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 129.7 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 129.8 if test -f dllunix.so; then \
#20 129.8   /usr/bin/install -c -p \
#20 129.8     dllunix.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 129.8 fi
#20 129.8 /usr/bin/install -c -p -m 644 libunix.a "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 129.8 /usr/bin/install -c -p -m 644 \
#20 129.8   unix.cma unix.cmi unixLabels.cmi \
#20 129.8   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 129.9 /usr/bin/install -c -p -m 644 \
#20 129.9   unix.mli unixLabels.mli \
#20 129.9           unix.cmti unixLabels.cmti \
#20 129.9   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 129.9 if test -n "unixsupport.h socketaddr.h"; then \
#20 129.9   /usr/bin/install -c -p -m 644 unixsupport.h socketaddr.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 129.9 fi
#20 129.9 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 129.9 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 130.0 if test -f dllbigarray.so; then \
#20 130.0   /usr/bin/install -c -p \
#20 130.0     dllbigarray.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 130.0 fi
#20 130.0 /usr/bin/install -c -p -m 644 \
#20 130.0   bigarray.cma bigarray.cmi \
#20 130.0   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 130.0 /usr/bin/install -c -p -m 644 \
#20 130.0   bigarray.mli \
#20 130.0           bigarray.cmti \
#20 130.0   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 130.0 if test -n ""; then \
#20 130.0   /usr/bin/install -c -p -m 644  "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 130.0 fi
#20 130.0 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 130.0 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 130.1 if test -f dllcamlstr.so; then \
#20 130.1   /usr/bin/install -c -p \
#20 130.1     dllcamlstr.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 130.1 fi
#20 130.1 /usr/bin/install -c -p -m 644 libcamlstr.a "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 130.1 /usr/bin/install -c -p -m 644 \
#20 130.1   str.cma str.cmi \
#20 130.1   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 130.1 /usr/bin/install -c -p -m 644 \
#20 130.1   str.mli \
#20 130.1           str.cmti \
#20 130.1   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 130.1 if test -n ""; then \
#20 130.1   /usr/bin/install -c -p -m 644  "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 130.1 fi
#20 130.1 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 130.1 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 130.2 if test -f dllthreads.so; then \
#20 130.2   /usr/bin/install -c -p dllthreads.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 130.2 fi
#20 130.2 /usr/bin/install -c -p -m 644 libthreads.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 130.2 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 130.2 /usr/bin/install -c -p -m 644 \
#20 130.2   thread.cmi mutex.cmi condition.cmi event.cmi threadUnix.cmi semaphore.cmi threads.cma \
#20 130.2   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 130.2 /usr/bin/install -c -p -m 644 \
#20 130.2   thread.cmti mutex.cmti condition.cmti event.cmti threadUnix.cmti semaphore.cmti \
#20 130.2   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 130.2 /usr/bin/install -c -p -m 644 thread.mli mutex.mli condition.mli event.mli threadUnix.mli semaphore.mli "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 130.2 /usr/bin/install -c -p -m 644 threads.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 130.2 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 130.2 make -j -C ocamldoc install
#20 130.3 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 130.3 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 130.3 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 130.4 /usr/bin/install -c -p ../ocamldoc/ocamldoc "/tmp/opam/bootstrap/ocaml/bin"
#20 130.4 /usr/bin/install -c -p -m 644 \
#20 130.4   ocamldoc.hva *.cmi odoc_info.cma \
#20 130.4   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 130.5 /usr/bin/install -c -p -m 644 \
#20 130.5   odoc_info.cmi \
#20 130.5   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 130.6 /usr/bin/install -c -p -m 644 \
#20 130.6   odoc_info.mli odoc_info.cmt odoc_info.cmti \
#20 130.6   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 130.6 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 130.6 if test -n "ocamldebugger"; then \
#20 130.6   make -j -C debugger install; \
#20 130.6 fi
#20 130.6 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 130.6 /usr/bin/install -c -p ocamldebug "/tmp/opam/bootstrap/ocaml/bin"
#20 130.7 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 130.7 /usr/bin/install -c -p -m 644 Makefile.config "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 130.7 /usr/bin/install -c -p -m 644 Changes README.adoc README.win32.adoc LICENSE "/tmp/opam/bootstrap/ocaml/share/doc/ocaml"
#20 130.7 if test -f ocamlopt; then make -j installopt; else \
#20 130.7    cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 130.7    ln -sf ocamlc.byte ocamlc; \
#20 130.7    ln -sf ocamllex.byte ocamllex; \
#20 130.7    (test -f flexlink.byte && \
#20 130.7       ln -sf flexlink.byte flexlink) || true; \
#20 130.7 fi
#20 130.7 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 130.8 make -j -C runtime installopt
#20 130.8 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 131.2 /usr/bin/install -c -p -m 644 libasmrun.a libasmrund.a libasmruni.a libasmrun_pic.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 131.3 /usr/bin/install -c -p libasmrun_shared.so "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 131.3 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 131.3 /usr/bin/install -c -p ocamlopt "/tmp/opam/bootstrap/ocaml/bin/ocamlopt.byte"
#20 131.4 make -j -C stdlib installopt
#20 131.4 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 131.4 stale=""; \
#20 131.4   if test -n "$stale" ; then \
#20 131.4     echo "/tmp/opam/bootstrap/ocaml/lib/ocaml contains stale stdlib artefacts"; \
#20 131.4     echo "Please rm /tmp/opam/bootstrap/ocaml/lib/ocaml/stdlib__*.cmx and re-run make install"; \
#20 131.4     exit 1; \
#20 131.4   fi
#20 131.4 /usr/bin/install -c -p -m 644 \
#20 131.4   stdlib.cmxa stdlib.a std_exit.o *.cmx \
#20 131.4   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 131.7 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 131.7 /usr/bin/install -c -p -m 644 \
#20 131.7     middle_end/*.cmi \
#20 131.7     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 131.8 /usr/bin/install -c -p -m 644 \
#20 131.8     middle_end/closure/*.cmi \
#20 131.8     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 131.8 /usr/bin/install -c -p -m 644 \
#20 131.8     middle_end/flambda/*.cmi \
#20 131.8     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.0 /usr/bin/install -c -p -m 644 \
#20 132.0     middle_end/flambda/base_types/*.cmi \
#20 132.0     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.0 /usr/bin/install -c -p -m 644 \
#20 132.0     asmcomp/*.cmi \
#20 132.0     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.0 /usr/bin/install -c -p -m 644 \
#20 132.0     middle_end/*.cmt middle_end/*.cmti \
#20 132.0     middle_end/*.mli \
#20 132.0     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.1 /usr/bin/install -c -p -m 644 \
#20 132.1     middle_end/closure/*.cmt middle_end/closure/*.cmti \
#20 132.1     middle_end/closure/*.mli \
#20 132.1     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.1 /usr/bin/install -c -p -m 644 \
#20 132.1     middle_end/flambda/*.cmt middle_end/flambda/*.cmti \
#20 132.1     middle_end/flambda/*.mli \
#20 132.1     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.2 /usr/bin/install -c -p -m 644 \
#20 132.2     middle_end/flambda/base_types/*.cmt \
#20 132.2             middle_end/flambda/base_types/*.cmti \
#20 132.2     middle_end/flambda/base_types/*.mli \
#20 132.2     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.2 /usr/bin/install -c -p -m 644 \
#20 132.2     asmcomp/*.cmt asmcomp/*.cmti \
#20 132.2     asmcomp/*.mli \
#20 132.2     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.4 /usr/bin/install -c -p -m 644 \
#20 132.4     driver/optmain.cmo \
#20 132.4     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 132.4 make -j -C ocamldoc installopt
#20 132.4 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 132.4 if test -f ../ocamldoc/ocamldoc.opt; then make -j installopt_really ; fi
#20 132.4 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 132.4 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 132.4 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 132.4 /usr/bin/install -c -p ../ocamldoc/ocamldoc.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 132.4 /usr/bin/install -c -p -m 644 \
#20 132.4   odoc_info.cmi \
#20 132.4   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 132.4 /usr/bin/install -c -p -m 644 \
#20 132.4   odoc_info.mli odoc_info.cmt odoc_info.cmti \
#20 132.4   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 132.4 /usr/bin/install -c -p -m 644 \
#20 132.4   ocamldoc.hva *.cmx odoc_info.a odoc_info.cmxa \
#20 132.4   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 132.5 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 132.5 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 132.5 for i in dynlink unix bigarray str systhreads; do \
#20 132.5   make -j -C otherlibs/$i installopt || exit $?; \
#20 132.5 done
#20 132.5 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 132.5 /usr/bin/install -c -p -m 644 \
#20 132.5   native/dynlink_compilerlibs.cmx dynlink_types.cmx dynlink_platform_intf.cmx dynlink_common.cmx native/dynlink.cmx dynlink.cmxa dynlink.a \
#20 132.5   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 132.6 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 132.6 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 132.6 /usr/bin/install -c -p -m 644 \
#20 132.6    unix.cmx unixLabels.cmx unix.cmxa unix.a \
#20 132.6    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 132.7 if test -f unix.cmxs; then \
#20 132.7   /usr/bin/install -c -p unix.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 132.7 fi
#20 132.7 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 132.7 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 132.7 /usr/bin/install -c -p -m 644 \
#20 132.7    bigarray.cmx bigarray.cmxa bigarray.a \
#20 132.7    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 132.8 if test -f bigarray.cmxs; then \
#20 132.8   /usr/bin/install -c -p bigarray.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 132.8 fi
#20 132.8 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 132.8 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 132.9 /usr/bin/install -c -p -m 644 \
#20 132.9    str.cmx str.cmxa str.a \
#20 132.9    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 132.9 if test -f str.cmxs; then \
#20 132.9   /usr/bin/install -c -p str.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 132.9 fi
#20 132.9 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 132.9 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 133.0 /usr/bin/install -c -p -m 644 libthreadsnat.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 133.0 /usr/bin/install -c -p -m 644 \
#20 133.0   thread.cmx mutex.cmx condition.cmx event.cmx threadUnix.cmx semaphore.cmx threads.cmxa threads.a \
#20 133.0   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 133.0 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 133.0 if test -f ocamlopt.opt; then make -j installoptopt; else \
#20 133.0    cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 133.0    ln -sf ocamlc.byte ocamlc; \
#20 133.0    ln -sf ocamlopt.byte ocamlopt; \
#20 133.0    ln -sf ocamllex.byte ocamllex; \
#20 133.0    (test -f flexlink.byte && \
#20 133.0      ln -sf flexlink.byte flexlink) || true; \
#20 133.0 fi
#20 133.0 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 133.0 /usr/bin/install -c -p ocamlc.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 133.1 /usr/bin/install -c -p ocamlopt.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 133.2 /usr/bin/install -c -p lex/ocamllex.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 133.2 cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 133.2    ln -sf ocamlc.opt ocamlc; \
#20 133.2    ln -sf ocamlopt.opt ocamlopt; \
#20 133.2    ln -sf ocamllex.opt ocamllex
#20 133.2 /usr/bin/install -c -p -m 644 \
#20 133.2    utils/*.cmx parsing/*.cmx typing/*.cmx bytecomp/*.cmx \
#20 133.2    toplevel/*.cmx toplevel/native/*.cmx \
#20 133.2    toplevel/native/tophooks.cmi \
#20 133.2    file_formats/*.cmx \
#20 133.2    lambda/*.cmx \
#20 133.2    driver/*.cmx asmcomp/*.cmx middle_end/*.cmx \
#20 133.2            middle_end/closure/*.cmx \
#20 133.2            middle_end/flambda/*.cmx \
#20 133.2            middle_end/flambda/base_types/*.cmx \
#20 133.2           "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 133.3 /usr/bin/install -c -p -m 644 \
#20 133.3    compilerlibs/*.cmxa compilerlibs/*.a \
#20 133.3    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 133.5 /usr/bin/install -c -p -m 644 \
#20 133.5    driver/main.cmx driver/main.o \
#20 133.5    driver/optmain.cmx driver/optmain.o \
#20 133.5    toplevel/topstart.o \
#20 133.5    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 133.5 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 133.5 make -j -C tools installopt
#20 133.5 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 133.6 /usr/bin/install -c -p -m 644 \
#20 133.6           profiling.cmx profiling.o \
#20 133.6   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 133.6 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 133.6 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 133.6 make: Entering directory '/tmp/opam/src_ext'
#20 133.8  * Downloading cppo...
#20 134.5 cppo.tar.gz has the expected MD5.
#20 134.5  * Downloading base64...
#20 134.9 base64.tbz has the expected MD5.
#20 134.9  * Downloading extlib...
#20 135.7 extlib.tar.gz has the expected MD5.
#20 135.7  * Downloading re...
#20 136.3 re.tbz has the expected MD5.
#20 136.3  * Downloading cmdliner...
#20 136.5 cmdliner.tbz has the expected MD5.
#20 136.5  * Downloading ocamlgraph...
#20 137.1 ocamlgraph.tbz has the expected MD5.
#20 137.1  * Downloading cudf...
#20 137.3 cudf.tar.gz has the expected MD5.
#20 137.3  * Downloading dose3...
#20 137.8 dose3.tar.gz has the expected MD5.
#20 137.8  * Downloading opam-file-format...
#20 138.4 opam-file-format.tar.gz has the expected MD5.
#20 138.4  * Downloading seq...
#20 139.1 seq.tar.gz has the expected MD5.
#20 139.1  * Downloading stdlib-shims...
#20 139.5 stdlib-shims.tbz has the expected MD5.
#20 139.6  * Downloading spdx_licenses...
#20 140.0 spdx_licenses.tar.gz has the expected MD5.
#20 140.0  * Downloading opam-0install-cudf...
#20 140.4 opam-0install-cudf.tbz has the expected MD5.
#20 140.5  * Downloading 0install-solver...
#20 141.0 0install-solver.tbz has the expected MD5.
#20 141.0  * Downloading uutf...
#20 141.2 uutf.tbz has the expected MD5.
#20 141.3  * Downloading jsonm...
#20 141.5 jsonm.tbz has the expected MD5.
#20 141.5  * Downloading sha...
#20 142.2 sha.tbz has the expected MD5.
#20 142.2  * Downloading swhid_core...
#20 143.3 swhid_core.tar.gz has the expected MD5.
#20 143.8  * Downloading dune-local...
#20 144.3 dune-local.tbz has the expected MD5.
#20 144.3  * Downloading findlib...
#20 144.6 findlib.tar.gz has the expected MD5.
#20 144.6  * Downloading ocamlbuild...
#20 145.1 ocamlbuild.tar.gz has the expected MD5.
#20 145.2  * Downloading topkg...
#20 145.4 topkg.tbz has the expected MD5.
#20 145.5  * Downloading mccs...
#20 146.1 mccs.tar.gz has the expected MD5.
#20 146.1  * Downloading ocaml...
#20 146.5 ocaml.tar.gz has the expected MD5.
#20 146.6  * Downloading flexdll...
#20 147.0 flexdll.tar.gz has the expected MD5.
#20 147.0 make: Leaving directory '/tmp/opam/src_ext'
#20 DONE 147.6s

#21 [stage-0  8/10] RUN cd /tmp/opam-sources && cp -P -R -p . ../opam-build-2.0 && cd ../opam-build-2.0 && git checkout 7d4a0f2e0fefe748efbd7358775b1a0bd8267544 && ln -s ../opam/src_ext/archives src_ext/archives && env PATH="/tmp/opam/bootstrap/ocaml/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ./configure --enable-cold-check && env PATH="/tmp/opam/bootstrap/ocaml/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" make lib-ext all && mkdir -p /usr/local/bin && cp /tmp/opam-build-2.0/opam /usr/local/bin/opam-2.0 && chmod a+x /usr/local/bin/opam-2.0 && rm -rf /tmp/opam-build-2.0
#21 sha256:d56a51467504648fef66621ba635544e82f3917ce57c02c06193ff58fa9318ff
#21 5.519 Note: switching to '7d4a0f2e0fefe748efbd7358775b1a0bd8267544'.
#21 5.519 
#21 5.519 You are in 'detached HEAD' state. You can look around, make experimental
#21 5.519 changes and commit them, and you can discard any commits you make in this
#21 5.519 state without impacting any branches by switching back to a branch.
#21 5.519 
#21 5.519 If you want to create a new branch to retain commits you create, you may
#21 5.519 do so (now or later) by using -c with the switch command. Example:
#21 5.519 
#21 5.519   git switch -c <new-branch-name>
#21 5.519 
#21 5.519 Or undo this operation with:
#21 5.519 
#21 5.519   git switch -
#21 5.519 
#21 5.519 Turn off this advice by setting config variable advice.detachedHead to false
#21 5.519 
#21 5.519 HEAD is now at 7d4a0f2e Merge pull request #4874 from rjbou/2010
#21 6.273 checking for ocamlc... ocamlc
#21 6.355 OCaml version is 4.14.1
#21 6.375 OCaml library path is /tmp/opam/bootstrap/ocaml/lib/ocaml
#21 6.375 checking for ocamlopt... ocamlopt
#21 6.491 checking for ocamlc.opt... ocamlc.opt
#21 6.507 checking for ocamlopt.opt... ocamlopt.opt
#21 6.535 checking for ocaml... ocaml
#21 6.536 checking for ocamldep... ocamldep
#21 6.536 checking for ocamldep.opt... ocamldep.opt
#21 6.711 checking for ocamlmktop... ocamlmktop
#21 6.712 checking for ocamlmklib... ocamlmklib
#21 6.712 checking for ocamldoc... ocamldoc
#21 6.712 checking for ocamldoc.opt... ocamldoc.opt
#21 6.819 checking for ocamlbuild... no
#21 6.820 checking OCaml Sys.os_type... Unix
#21 6.914 checking for gawk... no
#21 6.914 checking for mawk... mawk
#21 6.963 checking for compiler type... cc
#21 7.445 checking for compiler architecture... arm64
#21 7.852 checking for compiler system... linux
#21 8.309 checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
#21 8.390 checking whether the C compiler works... yes
#21 8.648 checking for C compiler default output file name... a.out
#21 8.653 checking for suffix of executables... 
#21 8.736 checking whether we are cross compiling... no
#21 8.955 checking for suffix of object files... o
#21 9.037 checking whether we are using the GNU C compiler... yes
#21 9.103 checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
#21 9.154 checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to accept ISO C89... none needed
#21 9.251 checking for ocamlobjinfo... ocamlobjinfo
#21 9.252 checking for ocamlfind... no
#21 9.253 checking for curl... curl
#21 9.255 checking for dune... no
#21 9.256 checking for cppo... no
#21 9.257 checking for patch... patch
#21 9.259 checking for bunzip2... bunzip2
#21 9.260 
#21 9.260 checking for OCaml findlib package unix... not found
#21 9.264 checking for OCaml findlib package bigarray... not found
#21 9.269 checking for OCaml findlib package extlib... not found
#21 9.276 checking for OCaml findlib package re... not found
#21 9.280 checking for OCaml findlib package re.glob... not found
#21 9.284 checking for OCaml findlib package cmdliner... not found
#21 9.288 checking for OCaml findlib package ocamlgraph... not found
#21 9.292 checking for OCaml findlib package cudf... not found
#21 9.296 checking for OCaml findlib package dose3.common... not found
#21 9.301 checking for OCaml findlib package dose3.algo... not found
#21 9.318 checking for OCaml findlib package opam-file-format... not found
#21 9.319 checking for OCaml findlib package mccs... not found
#21 9.321 checking for g++... g++
#21 9.454 checking whether we are using the GNU C++ compiler... yes
#21 9.863 checking whether g++ accepts -g... yes
#21 9.922 
#21 9.922 ============================================================================
#21 9.922 Some dependencies are missing. If you are just interested in the stand-alone
#21 9.922 'opam' binary, run 'make lib-ext' to download and include them.
#21 9.922 ============================================================================
#21 9.922 
#21 10.01 configure: creating ./config.status
#21 10.48 config.status: creating Makefile.config
#21 10.58 config.status: creating src/client/opamManifest.inc
#21 10.71 
#21 10.72 Opam will be built WITH a built-in solver
#21 10.72 
#21 10.72 Executables will be installed in /usr/local/bin
#21 10.72 Manual pages will be installed in /usr/local/share/man
#21 10.86 make -j -C src_ext lib-ext
#21 10.88 make[1]: Entering directory '/tmp/opam-build-2.0/src_ext'
#21 11.29 [ -e dune-local.tbz ] || \
#21 11.29 cp archives/dune-1.6.3.tbz dune-local.tbz 2>/dev/null || { { { curl  -LSs -o dune-local.tbz https://github.com/ocaml/dune/releases/download/1.6.3/dune-1.6.3.tbz && ocaml ../shell/md5check.ml dune-local.tbz 1212a36547d25269675d767c38fecf5f; } || { echo 'Failed to download https://github.com/ocaml/dune/releases/download/1.6.3/dune-1.6.3.tbz'; false; }; } || { { curl  -LSs -o dune-local.tbz https://opam.ocaml.org/cache/md5/12/1212a36547d25269675d767c38fecf5f && ocaml ../shell/md5check.ml dune-local.tbz 1212a36547d25269675d767c38fecf5f && echo 'Warning: downloaded https://github.com/ocaml/dune/releases/download/1.6.3/dune-1.6.3.tbz from opam cache'; } || { echo 'Failed to download dune-local from opam cache'; false; }; }; }
#21 11.30 [ -e cppo.tbz ] || \
#21 11.30 cp archives/cppo-v1.6.6.tbz cppo.tbz 2>/dev/null || { { { curl  -LSs -o cppo.tbz https://github.com/ocaml-community/cppo/releases/download/v1.6.6/cppo-v1.6.6.tbz && ocaml ../shell/md5check.ml cppo.tbz b13afeea6631d7c9b61f95bfd984a542; } || { echo 'Failed to download https://github.com/ocaml-community/cppo/releases/download/v1.6.6/cppo-v1.6.6.tbz'; false; }; } || { { curl  -LSs -o cppo.tbz https://opam.ocaml.org/cache/md5/b1/b13afeea6631d7c9b61f95bfd984a542 && ocaml ../shell/md5check.ml cppo.tbz b13afeea6631d7c9b61f95bfd984a542 && echo 'Warning: downloaded https://github.com/ocaml-community/cppo/releases/download/v1.6.6/cppo-v1.6.6.tbz from opam cache'; } || { echo 'Failed to download cppo from opam cache'; false; }; }; }
#21 11.33 [ -e extlib.tar.gz ] || \
#21 11.33 cp archives/extlib-1.7.7.tar.gz extlib.tar.gz 2>/dev/null || { { { curl  -LSs -o extlib.tar.gz https://ygrek.org/p/release/ocaml-extlib/extlib-1.7.7.tar.gz && ocaml ../shell/md5check.ml extlib.tar.gz 2c620993aecd4b31b3a362b21b55dd94; } || { echo 'Failed to download https://ygrek.org/p/release/ocaml-extlib/extlib-1.7.7.tar.gz'; false; }; } || { { curl  -LSs -o extlib.tar.gz https://opam.ocaml.org/cache/md5/2c/2c620993aecd4b31b3a362b21b55dd94 && ocaml ../shell/md5check.ml extlib.tar.gz 2c620993aecd4b31b3a362b21b55dd94 && echo 'Warning: downloaded https://ygrek.org/p/release/ocaml-extlib/extlib-1.7.7.tar.gz from opam cache'; } || { echo 'Failed to download extlib from opam cache'; false; }; }; }
#21 11.41 [ -e re.tbz ] || \
#21 11.41 cp archives/re-1.9.0.tbz re.tbz 2>/dev/null || { { { curl  -LSs -o re.tbz https://github.com/ocaml/ocaml-re/releases/download/1.9.0/re-1.9.0.tbz && ocaml ../shell/md5check.ml re.tbz bddaed4f386a22cace7850c9c7dac296; } || { echo 'Failed to download https://github.com/ocaml/ocaml-re/releases/download/1.9.0/re-1.9.0.tbz'; false; }; } || { { curl  -LSs -o re.tbz https://opam.ocaml.org/cache/md5/bd/bddaed4f386a22cace7850c9c7dac296 && ocaml ../shell/md5check.ml re.tbz bddaed4f386a22cace7850c9c7dac296 && echo 'Warning: downloaded https://github.com/ocaml/ocaml-re/releases/download/1.9.0/re-1.9.0.tbz from opam cache'; } || { echo 'Failed to download re from opam cache'; false; }; }; }
#21 11.42 [ -e cmdliner.tbz ] || \
#21 11.42 cp archives/cmdliner-1.0.2.tbz cmdliner.tbz 2>/dev/null || { { { curl  -LSs -o cmdliner.tbz http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.2.tbz && ocaml ../shell/md5check.ml cmdliner.tbz ab2f0130e88e8dcd723ac6154c98a881; } || { echo 'Failed to download http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.2.tbz'; false; }; } || { { curl  -LSs -o cmdliner.tbz https://opam.ocaml.org/cache/md5/ab/ab2f0130e88e8dcd723ac6154c98a881 && ocaml ../shell/md5check.ml cmdliner.tbz ab2f0130e88e8dcd723ac6154c98a881 && echo 'Warning: downloaded http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.2.tbz from opam cache'; } || { echo 'Failed to download cmdliner from opam cache'; false; }; }; }
#21 11.46 [ -e ocamlgraph.tar.gz ] || \
#21 11.46 cp archives/ocamlgraph-1.8.8.tar.gz ocamlgraph.tar.gz 2>/dev/null || { { { curl  -LSs -o ocamlgraph.tar.gz http://ocamlgraph.lri.fr/download/ocamlgraph-1.8.8.tar.gz && ocaml ../shell/md5check.ml ocamlgraph.tar.gz 9d71ca69271055bd22d0dfe4e939831a; } || { echo 'Failed to download http://ocamlgraph.lri.fr/download/ocamlgraph-1.8.8.tar.gz'; false; }; } || { { curl  -LSs -o ocamlgraph.tar.gz https://opam.ocaml.org/cache/md5/9d/9d71ca69271055bd22d0dfe4e939831a && ocaml ../shell/md5check.ml ocamlgraph.tar.gz 9d71ca69271055bd22d0dfe4e939831a && echo 'Warning: downloaded http://ocamlgraph.lri.fr/download/ocamlgraph-1.8.8.tar.gz from opam cache'; } || { echo 'Failed to download ocamlgraph from opam cache'; false; }; }; }
#21 11.48 [ -e cudf.tar.gz ] || \
#21 11.48 cp archives/cudf-0.9.tar.gz cudf.tar.gz 2>/dev/null || { { { curl  -LSs -o cudf.tar.gz https://github.com/ocaml/opam-source-archives/raw/main/cudf-0.9.tar.gz && ocaml ../shell/md5check.ml cudf.tar.gz a4c0e652e56e74c7b388a43f9258d119; } || { echo 'Failed to download https://github.com/ocaml/opam-source-archives/raw/main/cudf-0.9.tar.gz'; false; }; } || { { curl  -LSs -o cudf.tar.gz https://opam.ocaml.org/cache/md5/a4/a4c0e652e56e74c7b388a43f9258d119 && ocaml ../shell/md5check.ml cudf.tar.gz a4c0e652e56e74c7b388a43f9258d119 && echo 'Warning: downloaded https://github.com/ocaml/opam-source-archives/raw/main/cudf-0.9.tar.gz from opam cache'; } || { echo 'Failed to download cudf from opam cache'; false; }; }; }
#21 11.53 [ -e dose3.tar.gz ] || \
#21 11.53 cp archives/dose3-5.0.1.tar.gz dose3.tar.gz 2>/dev/null || { { { curl  -LSs -o dose3.tar.gz https://gitlab.com/irill/dose3/-/archive/5.0.1/dose3-5.0.1.tar.gz && ocaml ../shell/md5check.ml dose3.tar.gz a81080f36f477fdebf63c4a979e251cd; } || { echo 'Failed to download https://gitlab.com/irill/dose3/-/archive/5.0.1/dose3-5.0.1.tar.gz'; false; }; } || { { curl  -LSs -o dose3.tar.gz https://opam.ocaml.org/cache/md5/a8/a81080f36f477fdebf63c4a979e251cd && ocaml ../shell/md5check.ml dose3.tar.gz a81080f36f477fdebf63c4a979e251cd && echo 'Warning: downloaded https://gitlab.com/irill/dose3/-/archive/5.0.1/dose3-5.0.1.tar.gz from opam cache'; } || { echo 'Failed to download dose3 from opam cache'; false; }; }; }
#21 11.54 [ -e opam-file-format.tar.gz ] || \
#21 11.54 cp archives/2.1.3.tar.gz opam-file-format.tar.gz 2>/dev/null || { { { curl  -LSs -o opam-file-format.tar.gz https://github.com/ocaml/opam-file-format/archive/2.1.3.tar.gz && ocaml ../shell/md5check.ml opam-file-format.tar.gz b805562dd2d86fc3c8e6d47884fd1da6; } || { echo 'Failed to download https://github.com/ocaml/opam-file-format/archive/2.1.3.tar.gz'; false; }; } || { { curl  -LSs -o opam-file-format.tar.gz https://opam.ocaml.org/cache/md5/b8/b805562dd2d86fc3c8e6d47884fd1da6 && ocaml ../shell/md5check.ml opam-file-format.tar.gz b805562dd2d86fc3c8e6d47884fd1da6 && echo 'Warning: downloaded https://github.com/ocaml/opam-file-format/archive/2.1.3.tar.gz from opam cache'; } || { echo 'Failed to download opam-file-format from opam cache'; false; }; }; }
#21 11.61 [ -e result.tar.gz ] || \
#21 11.61 cp archives/1.4.tar.gz result.tar.gz 2>/dev/null || { { { curl  -LSs -o result.tar.gz https://github.com/janestreet/result/archive/1.4.tar.gz && ocaml ../shell/md5check.ml result.tar.gz d3162dbc501a2af65c8c71e0866541da; } || { echo 'Failed to download https://github.com/janestreet/result/archive/1.4.tar.gz'; false; }; } || { { curl  -LSs -o result.tar.gz https://opam.ocaml.org/cache/md5/d3/d3162dbc501a2af65c8c71e0866541da && ocaml ../shell/md5check.ml result.tar.gz d3162dbc501a2af65c8c71e0866541da && echo 'Warning: downloaded https://github.com/janestreet/result/archive/1.4.tar.gz from opam cache'; } || { echo 'Failed to download result from opam cache'; false; }; }; }
#21 11.62 [ -e seq.tar.gz ] || \
#21 11.62 cp archives/0.1.tar.gz seq.tar.gz 2>/dev/null || { { { curl  -LSs -o seq.tar.gz https://github.com/c-cube/seq/archive/0.1.tar.gz && ocaml ../shell/md5check.ml seq.tar.gz 0e87f9709541ed46ecb6f414bc31458c; } || { echo 'Failed to download https://github.com/c-cube/seq/archive/0.1.tar.gz'; false; }; } || { { curl  -LSs -o seq.tar.gz https://opam.ocaml.org/cache/md5/0e/0e87f9709541ed46ecb6f414bc31458c && ocaml ../shell/md5check.ml seq.tar.gz 0e87f9709541ed46ecb6f414bc31458c && echo 'Warning: downloaded https://github.com/c-cube/seq/archive/0.1.tar.gz from opam cache'; } || { echo 'Failed to download seq from opam cache'; false; }; }; }
#21 11.67 [ -e mccs.tar.gz ] || \
#21 11.67 cp archives/1.1+13.tar.gz mccs.tar.gz 2>/dev/null || { { { curl  -LSs -o mccs.tar.gz https://github.com/AltGr/ocaml-mccs/archive/1.1+13.tar.gz && ocaml ../shell/md5check.ml mccs.tar.gz 13504d3b5dcbf0bdc6d95a62de20af4a; } || { echo 'Failed to download https://github.com/AltGr/ocaml-mccs/archive/1.1+13.tar.gz'; false; }; } || { { curl  -LSs -o mccs.tar.gz https://opam.ocaml.org/cache/md5/13/13504d3b5dcbf0bdc6d95a62de20af4a && ocaml ../shell/md5check.ml mccs.tar.gz 13504d3b5dcbf0bdc6d95a62de20af4a && echo 'Warning: downloaded https://github.com/AltGr/ocaml-mccs/archive/1.1+13.tar.gz from opam cache'; } || { echo 'Failed to download mccs from opam cache'; false; }; }; }
#21 11.78 ocamlgraph.tar.gz has the expected MD5.
#21 11.79 mkdir -p tmp-ocamlgraph
#21 11.80 cd tmp-ocamlgraph && gunzip -c ../ocamlgraph.tar.gz | tar xf -
#21 11.88 dose3.tar.gz has the expected MD5.
#21 11.88 extlib.tar.gz has the expected MD5.
#21 11.88 mkdir -p tmp-dose3
#21 11.89 cd tmp-dose3 && gunzip -c ../dose3.tar.gz | tar xf -
#21 11.90 mkdir -p tmp-extlib
#21 11.90 rm -rf ocamlgraph
#21 11.90 cd tmp-extlib && gunzip -c ../extlib.tar.gz | tar xf -
#21 11.94 cmdliner.tbz has the expected MD5.
#21 11.95 mkdir -p tmp-cmdliner
#21 11.95 patching file src/imperative.ml
#21 11.95 cd tmp-cmdliner && bunzip2 -c ../cmdliner.tbz | tar xf -
#21 11.95 patching file src/persistent.ml
#21 11.96 rm -rf extlib
#21 11.99 patching file src/extList.ml
#21 11.99 rm -rf cmdliner
#21 12.00 patching file src/extHashtbl.ml
#21 12.02 patching file src/configure.ml
#21 12.03 rm -rf dose3
#21 12.08 patching file common/criteria_lexer.mll
#21 12.08 patching file common/input.ml
#21 12.15 seq.tar.gz has the expected MD5.
#21 12.16 mkdir -p tmp-seq
#21 12.18 cd tmp-seq && gunzip -c ../seq.tar.gz | tar xf -
#21 12.20 rm -rf seq
#21 12.25 cudf.tar.gz has the expected MD5.
#21 12.26 patching file .gitignore
#21 12.26 patching file Makefile
#21 12.26 patching file select_version.ml
#21 12.26 patching file seq.opam
#21 12.26 mkdir -p tmp-cudf
#21 12.26 patching file src/seq.ml
#21 12.26 patching file src/seq.mli
#21 12.26 patching file src/seq_alias.ml
#21 12.26 patching file src/seq_alias.mli
#21 12.26 patching file src/seq_redef.ml
#21 12.26 patching file src/seq_redef.mli
#21 12.26 cppo.tbz has the expected MD5.
#21 12.26 result.tar.gz has the expected MD5.
#21 12.27 cd tmp-cudf && gunzip -c ../cudf.tar.gz | tar xf -
#21 12.28 dune-local.tbz has the expected MD5.
#21 12.29 mkdir -p tmp-dune-local
#21 12.29 mkdir -p tmp-cppo
#21 12.29 cd tmp-dune-local && bunzip2 -c ../dune-local.tbz | tar xf -
#21 12.30 cd tmp-cppo && bunzip2 -c ../cppo.tbz | tar xf -
#21 12.31 mkdir -p tmp-result
#21 12.32 cd tmp-result && gunzip -c ../result.tar.gz | tar xf -
#21 12.35 rm -rf cppo
#21 12.36 opam-file-format.tar.gz has the expected MD5.
#21 12.36 rm -rf cudf
#21 12.37 rm -rf result
#21 12.40 mkdir -p tmp-opam-file-format
#21 12.41 patching file src/compat.ml
#21 12.41 patching file src/dune
#21 12.43 cd tmp-opam-file-format && gunzip -c ../opam-file-format.tar.gz | tar xf -
#21 12.43 patching file Changes
#21 12.43 patching file src/cppo_main.ml
#21 12.45 rm -f seq/src/seq.ml seq/src/seq.mli
#21 12.47 mccs.tar.gz has the expected MD5.
#21 12.47 rm -rf opam-file-format
#21 12.50 re.tbz has the expected MD5.
#21 12.51 mkdir -p tmp-mccs
#21 12.52 cd tmp-mccs && gunzip -c ../mccs.tar.gz | tar xf -
#21 12.52 mkdir -p tmp-re
#21 12.52 cd tmp-re && bunzip2 -c ../re.tbz | tar xf -
#21 12.59 rm -rf re
#21 12.67 rm -rf mccs
#21 12.75 rm -rf dune-local
#21 12.86 rm dune-local.download
#21 12.86 make[1]: Leaving directory '/tmp/opam-build-2.0/src_ext'
#21 12.87 cd src_ext/dune-local && ocaml bootstrap.ml && ./boot.exe --release
#21 13.04 File "./bootstrap.ml", line 186, characters 29-41:
#21 13.04 186 |              let base, ext = String.break base i in
#21 13.04                                    ^^^^^^^^^^^^
#21 13.04 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 13.05 File "./bootstrap.ml", line 191, characters 28-40:
#21 13.05 191 |                  let a, b = String.break ext i in
#21 13.05                                   ^^^^^^^^^^^^
#21 13.05 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 13.07 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/meta_lexer.mll
#21 13.12 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/dune_lexer.mll
#21 13.14 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/dune_lang/dune_lexer.mll
#21 13.19 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/action.ml src/action_ast.ml src/action_dune_lang.ml src/action_exec.ml src/action_intf.ml src/action_to_sh.boot.ml src/action_unexpanded.ml src/arg_spec.ml src/artifacts.ml src/binary_kind.ml src/bindings.ml src/blang.ml src/build.ml src/build_interpret.ml src/build_system.ml src/check_rules.ml src/clflags.ml src/cm_kind.ml src/colors.ml src/compilation_context.ml src/config.ml src/context.ml src/dep_graph.ml src/dep_path.ml src/deps.ml src/dir_contents.ml src/dir_status.ml src/dir_with_dune.ml src/dune_env.ml src/dune_file.ml src/dune_fmt.ml src/dune_lexer.ml src/dune_load.ml src/dune_project.ml vendor/boot/dune_re.ml src/dynlink_supported.ml src/env_node.ml src/errors.ml src/exe.ml src/exe_rules.ml src/expander.ml src/file_bindings.ml src/file_tree.ml src/findlib.ml src/format_rules.ml src/gen_meta.ml src/gen_rules.ml src/glob.ml src/glob_lexer.boot.ml src/hooks.ml src/import.ml src/inline_tests.boot.ml src/install.ml src/install_rules.ml src/installed_dune_file.ml src/js_of_ocaml_rules.boot.ml src/lib.ml src/lib_archives.ml src/lib_deps_info.ml src/lib_file_deps.ml src/lib_info.ml src/lib_modules.ml src/lib_name.ml src/lib_rules.ml src/link_time_code_gen.ml src/local_package.ml src/log.ml src/main.ml src/menhir.boot.ml src/merlin.ml src/meta.ml src/meta_lexer.ml src/ml_kind.ml src/mode.ml src/module.ml src/module_compilation.ml src/modules_field_evaluator.ml src/ocaml_flags.ml src/ocaml_version.ml src/ocamldep.ml src/odoc.boot.ml vendor/boot/opamBaseParser.ml vendor/boot/opamLexer.ml vendor/boot/opamParserTypes.ml src/opam_file.ml src/ordered_set_lang.ml src/package.ml src/path_dune_lang.ml src/per_item.ml src/pform.ml src/predicate_lang.ml src/preprocessing.ml src/print_diff.ml src/process.ml src/promotion.ml src/report_error.ml src/response_file.ml src/scheduler.ml src/scope.ml src/setup.boot.ml src/simple_rules.ml src/spawn.ml src/stanza.ml src/static_deps.ml src/stats.ml src/string_with_vars.ml src/sub_dirs.ml src/sub_system.ml src/sub_system_intf.ml src/sub_system_name.ml src/super_context.ml src/syntax.ml src/test_rules.ml src/top_closure.ml src/utils.ml src/utop.ml src/value.ml src/variant.ml src/versioned_file.ml src/vfile_kind.ml src/vimpl.ml src/virtual_rules.ml src/watermarks.ml src/workspace.ml > boot-depends.txt
#21 13.55 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/stdune/caml/dune_caml.ml src/stdune/caml/result.ml src/stdune/caml/result_compat.ml > boot-depends.txt
#21 13.56 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/dune_lang/dune_lang.ml src/dune_lang/atom.ml src/dune_lang/dune_lexer.ml src/dune_lang/escape.ml src/dune_lang/jbuild_lexer.boot.ml src/dune_lang/lexer.ml src/dune_lang/lexer_shared.ml src/dune_lang/syntax.ml src/dune_lang/template.ml src/dune_lang/types.ml > boot-depends.txt
#21 13.60 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/fiber/fiber.ml > boot-depends.txt
#21 13.63 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/ocaml-config/ocaml_config.ml > boot-depends.txt
#21 13.66 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/stdune/stdune.ml src/stdune/ansi_color.ml src/stdune/array.ml src/stdune/bin.ml src/stdune/bool.ml src/stdune/bytes.ml src/stdune/char.ml src/stdune/common.ml src/stdune/comparable.ml src/stdune/either.ml src/stdune/env.ml src/stdune/escape.ml src/stdune/exn.ml src/stdune/filename.ml src/stdune/float.ml src/stdune/fmt.ml src/stdune/hashable.ml src/stdune/hashtbl.ml src/stdune/hashtbl_intf.ml src/stdune/import.ml src/stdune/int.ml src/stdune/interned.ml src/stdune/io.ml src/stdune/list.ml src/stdune/loc.ml src/stdune/map.ml src/stdune/map_intf.ml src/stdune/nothing.ml src/stdune/option.ml src/stdune/or_exn.ml src/stdune/ordering.ml src/stdune/path.ml src/stdune/pp.ml src/stdune/proc.ml src/stdune/result.ml src/stdune/set.ml src/stdune/set_intf.ml src/stdune/sexp.ml src/stdune/sexp_intf.ml src/stdune/staged.ml src/stdune/string.ml src/stdune/type_eq.ml src/stdune/univ_map.ml > boot-depends.txt
#21 13.72 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/which_program/which_program.boot.ml > boot-depends.txt
#21 13.74 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/xdg/xdg.ml > boot-depends.txt
#21 13.77 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/let-syntax/lexer.mll
#21 14.20 '/tmp/opam/bootstrap/ocaml/bin/ocamlc.opt' -g -w -40 -o boot.exe unix.cma threads.cma -I +threads boot.ml
#21 14.60 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 14.60 Alert deprecated: module Stdlib.Pervasives
#21 14.60 Use Stdlib instead.
#21 14.60 
#21 14.60 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 14.60 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 14.60 File "src/stdune/caml/result.mli", line 6, characters 7-17:
#21 14.60 Alert deprecated: module Stdlib.Pervasives
#21 14.60 Use Stdlib instead.
#21 14.60 
#21 14.60 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 14.60 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 14.61 File "src/stdune/list.ml", line 129, characters 23-38:
#21 14.61 Alert deprecated: module Stdlib.Pervasives
#21 14.61 Use Stdlib instead.
#21 14.61 
#21 14.61 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 14.61 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 14.78 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 14.78 Alert deprecated: Stdlib.Format.pp_open_tag
#21 14.78 Use Format.pp_open_stag.
#21 14.78 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 14.78 Alert deprecated: Stdlib.Format.pp_close_tag
#21 14.78 Use Format.pp_close_stag.
#21 14.78 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 14.78 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 14.78 Use Format.pp_get_formatter_stag_functions.
#21 14.78 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 14.78 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 14.78 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 14.87 File "src/stdune/io.ml", line 1, characters 11-21:
#21 14.87 Alert deprecated: module Stdlib.Pervasives
#21 14.87 Use Stdlib instead.
#21 14.87 
#21 14.87 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 14.87 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 14.99 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 14.99 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 14.99 Use Format.pp_get_formatter_stag_functions.
#21 14.99 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 14.99 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 14.99 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 15.26 File "src/colors.ml", line 105, characters 18-48:
#21 15.26 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 15.26 Use Format.pp_get_formatter_stag_functions.
#21 15.26 File "src/colors.ml", line 107, characters 6-36:
#21 15.26 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 15.26 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 16.19 File "src/super_context.ml", line 251, characters 7-11:
#21 16.19 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 21.32       ocamlc src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmi,cmti}
#21 21.32 File "src/stdune/caml/result.mli", line 6, characters 7-17:
#21 21.32 6 |   open Pervasives
#21 21.32            ^^^^^^^^^^
#21 21.32 Alert deprecated: module Stdlib.Pervasives
#21 21.32 Use Stdlib instead.
#21 21.32 
#21 21.32 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.32 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.60       ocamlc src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmo,cmt}
#21 21.60 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 21.60 4 |   open Pervasives
#21 21.60            ^^^^^^^^^^
#21 21.60 Alert deprecated: module Stdlib.Pervasives
#21 21.60 Use Stdlib instead.
#21 21.60 
#21 21.60 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.60 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.61     ocamlopt src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmx,o}
#21 21.61 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 21.61 4 |   open Pervasives
#21 21.61            ^^^^^^^^^^
#21 21.61 Alert deprecated: module Stdlib.Pervasives
#21 21.61 Use Stdlib instead.
#21 21.61 
#21 21.61 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.61 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 22.16       ocamlc src/stdune/.stdune.objs/stdune__List.{cmo,cmt}
#21 22.16 File "src/stdune/list.ml", line 129, characters 23-38:
#21 22.16 129 | let physically_equal = Pervasives.(==)
#21 22.16                              ^^^^^^^^^^^^^^^
#21 22.16 Alert deprecated: module Stdlib.Pervasives
#21 22.16 Use Stdlib instead.
#21 22.16 
#21 22.16 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 22.16 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 22.22     ocamlopt src/stdune/.stdune.objs/stdune__List.{cmx,o}
#21 22.22 File "src/stdune/list.ml", line 129, characters 23-38:
#21 22.22 129 | let physically_equal = Pervasives.(==)
#21 22.22                              ^^^^^^^^^^^^^^^
#21 22.22 Alert deprecated: module Stdlib.Pervasives
#21 22.22 Use Stdlib instead.
#21 22.22 
#21 22.22 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 22.22 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 22.38       ocamlc src/stdune/.stdune.objs/stdune__Pp.{cmo,cmt}
#21 22.38 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 22.38 114 |         pp_open_tag ppf (embed_tag ~opening ~closing);
#21 22.38               ^^^^^^^^^^^
#21 22.38 Alert deprecated: Stdlib.Format.pp_open_tag
#21 22.38 Use Format.pp_open_stag.
#21 22.38 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 22.38 116 |         pp_close_tag ppf ()
#21 22.38               ^^^^^^^^^^^^
#21 22.38 Alert deprecated: Stdlib.Format.pp_close_tag
#21 22.38 Use Format.pp_close_stag.
#21 22.38 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 22.38 119 |       let funcs = pp_get_formatter_tag_functions ppf () in
#21 22.38                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 22.38 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 22.38 Use Format.pp_get_formatter_stag_functions.
#21 22.38 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 22.38 121 |       pp_set_formatter_tag_functions ppf
#21 22.38             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 22.38 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 22.38 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 23.16       ocamlc src/stdune/.stdune.objs/stdune__Io.{cmo,cmt}
#21 23.16 File "src/stdune/io.ml", line 1, characters 11-21:
#21 23.16 1 | module P = Pervasives
#21 23.16                ^^^^^^^^^^
#21 23.16 Alert deprecated: module Stdlib.Pervasives
#21 23.16 Use Stdlib instead.
#21 23.16 
#21 23.16 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 23.16 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 28.29     ocamlopt src/stdune/.stdune.objs/stdune__Pp.{cmx,o}
#21 28.29 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 28.29 114 |         pp_open_tag ppf (embed_tag ~opening ~closing);
#21 28.29               ^^^^^^^^^^^
#21 28.29 Alert deprecated: Stdlib.Format.pp_open_tag
#21 28.29 Use Format.pp_open_stag.
#21 28.29 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 28.29 116 |         pp_close_tag ppf ()
#21 28.29               ^^^^^^^^^^^^
#21 28.29 Alert deprecated: Stdlib.Format.pp_close_tag
#21 28.29 Use Format.pp_close_stag.
#21 28.29 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 28.29 119 |       let funcs = pp_get_formatter_tag_functions ppf () in
#21 28.29                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 28.29 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 28.29 Use Format.pp_get_formatter_stag_functions.
#21 28.29 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 28.29 121 |       pp_set_formatter_tag_functions ppf
#21 28.29             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 28.29 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 28.29 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 28.30       ocamlc src/dune_lang/.dune_lang.objs/dune_lang.{cmo,cmt}
#21 28.30 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 28.30 107 |   let tfuncs = Format.pp_get_formatter_tag_functions ppf () in
#21 28.30                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 28.30 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 28.30 Use Format.pp_get_formatter_stag_functions.
#21 28.30 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 28.30 108 |   Format.pp_set_formatter_tag_functions ppf
#21 28.30         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 28.30 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 28.30 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 29.26     ocamlopt src/stdune/.stdune.objs/stdune__Io.{cmx,o}
#21 29.26 File "src/stdune/io.ml", line 1, characters 11-21:
#21 29.26 1 | module P = Pervasives
#21 29.26                ^^^^^^^^^^
#21 29.26 Alert deprecated: module Stdlib.Pervasives
#21 29.26 Use Stdlib instead.
#21 29.26 
#21 29.26 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 29.26 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 33.03     ocamlopt src/dune_lang/.dune_lang.objs/dune_lang.{cmx,o}
#21 33.03 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 33.03 107 |   let tfuncs = Format.pp_get_formatter_tag_functions ppf () in
#21 33.03                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 33.03 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 33.03 Use Format.pp_get_formatter_stag_functions.
#21 33.03 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 33.03 108 |   Format.pp_set_formatter_tag_functions ppf
#21 33.03         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 33.03 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 33.03 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 34.16     ocamlopt src/.dune.objs/dune__Colors.{cmx,o}
#21 34.16 File "src/colors.ml", line 105, characters 18-48:
#21 34.16 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 34.16 Use Format.pp_get_formatter_stag_functions.
#21 34.16 File "src/colors.ml", line 107, characters 6-36:
#21 34.16 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 34.16 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 38.93     ocamlopt src/.dune.objs/dune__Super_context.{cmx,o}
#21 38.93 File "src/super_context.ml", line 251, characters 7-11:
#21 38.93 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
2023-03-20 18:09.54: Job failed: Disconnected: Switch turned off