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

Dockerfile:

# syntax=docker/dockerfile:1
# Autogenerated by OCaml-Dockerfile scripts
FROM ubuntu:kinetic
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:kinetic
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-24 12:04.20: Using cache hint "opam-ubuntu-22.10"
2023-03-24 12:04.20: Waiting for resource in pool OCluster
2023-03-24 12:04.20: Waiting for worker…
2023-03-24 12:04.20: Got resource from pool OCluster
Building on okypous.ocamllabs.io
All commits already cached
Updating files:  58% (17104/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:  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
#1 [internal] load build definition from Dockerfile
#1 sha256:f3a4176f5aa197a147f76de42e803a2419d4e24763736290288e209d5a5e0de9
#1 transferring dockerfile: 4.50kB done
#1 DONE 0.1s

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

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

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

#6 [internal] load .dockerignore
#6 sha256:857c26ba6d763dadbd48eee07d10e19eed7d0ab2e2f1ce71088cd5103a919289
#6 DONE 0.0s

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

#7 [internal] load metadata for docker.io/library/ubuntu:kinetic
#7 sha256:462835bc15d4295a08e02b157231e20ccd24ce2d3902ecc67e2346c2c0cb2aa1
#7 DONE 1.0s

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:kinetic@sha256:a82eebb42083a134e009a6b81a7e5d2eecc37112fa8ae40642bd3c5153b7e4f0
#8 sha256:62f43fe70400b7da677eef445d94f6febc9ad0ce93c5e45166e72a1a2285f486
#8 resolve docker.io/library/ubuntu:kinetic@sha256:a82eebb42083a134e009a6b81a7e5d2eecc37112fa8ae40642bd3c5153b7e4f0 done
#8 sha256:a82eebb42083a134e009a6b81a7e5d2eecc37112fa8ae40642bd3c5153b7e4f0 1.13kB / 1.13kB done
#8 sha256:2a79f91eb2bb4ffc5d96c58a06fda63550bf94a1a6b2e9ef2f835e52ca8a04ee 424B / 424B done
#8 sha256:438c48db988d0f48de4461bb2bf49524880c28c5863b1ba5b175a9d7c284b009 2.32kB / 2.32kB done
#8 sha256:4f720bb411d1d3a6b6c043988c66cdaeee655f968c6eabf7f1ada7ac1529b046 0B / 25.76MB 0.2s
#8 ...

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

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:kinetic@sha256:a82eebb42083a134e009a6b81a7e5d2eecc37112fa8ae40642bd3c5153b7e4f0
#8 sha256:62f43fe70400b7da677eef445d94f6febc9ad0ce93c5e45166e72a1a2285f486
#8 ...

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

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:kinetic@sha256:a82eebb42083a134e009a6b81a7e5d2eecc37112fa8ae40642bd3c5153b7e4f0
#8 sha256:62f43fe70400b7da677eef445d94f6febc9ad0ce93c5e45166e72a1a2285f486
#8 ...

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

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:kinetic@sha256:a82eebb42083a134e009a6b81a7e5d2eecc37112fa8ae40642bd3c5153b7e4f0
#8 sha256:62f43fe70400b7da677eef445d94f6febc9ad0ce93c5e45166e72a1a2285f486
#8 sha256:4f720bb411d1d3a6b6c043988c66cdaeee655f968c6eabf7f1ada7ac1529b046 4.19MB / 25.76MB 0.5s
#8 sha256:4f720bb411d1d3a6b6c043988c66cdaeee655f968c6eabf7f1ada7ac1529b046 8.39MB / 25.76MB 0.6s
#8 sha256:4f720bb411d1d3a6b6c043988c66cdaeee655f968c6eabf7f1ada7ac1529b046 23.63MB / 25.76MB 0.8s
#8 sha256:4f720bb411d1d3a6b6c043988c66cdaeee655f968c6eabf7f1ada7ac1529b046 25.76MB / 25.76MB 0.9s done
#8 extracting sha256:4f720bb411d1d3a6b6c043988c66cdaeee655f968c6eabf7f1ada7ac1529b046
#8 extracting sha256:4f720bb411d1d3a6b6c043988c66cdaeee655f968c6eabf7f1ada7ac1529b046 1.2s done
#8 DONE 2.3s

#54 [internal] load build context
#54 sha256:c625f88d51898608f31a20c59eb907aa2de7cce9147534a64524d80641f9a70f
#54 transferring context: 13.71MB 2.6s
#54 ...

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

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

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

#54 [internal] load build context
#54 sha256:c625f88d51898608f31a20c59eb907aa2de7cce9147534a64524d80641f9a70f
#54 transferring context: 206.57MB 7.6s
#54 transferring context: 240.61MB 10.8s done
#54 DONE 11.7s

#12 [stage-1  4/36] RUN apt-get -y update
#12 sha256:9cd03ad11f38bb68788295814e99806cd4f24582e9ac58b91af3acfc5443f2c2
#12 5.442 Get:1 http://ports.ubuntu.com/ubuntu-ports kinetic InRelease [267 kB]
#12 5.486 Get:2 http://ports.ubuntu.com/ubuntu-ports kinetic-updates InRelease [118 kB]
#12 5.497 Get:3 http://ports.ubuntu.com/ubuntu-ports kinetic-backports InRelease [99.9 kB]
#12 5.506 Get:4 http://ports.ubuntu.com/ubuntu-ports kinetic-security InRelease [109 kB]
#12 5.623 Get:5 http://ports.ubuntu.com/ubuntu-ports kinetic/multiverse arm64 Packages [236 kB]
#12 5.652 Get:6 http://ports.ubuntu.com/ubuntu-ports kinetic/restricted arm64 Packages [60.7 kB]
#12 5.655 Get:7 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 Packages [1750 kB]
#12 5.799 Get:8 http://ports.ubuntu.com/ubuntu-ports kinetic/universe arm64 Packages [17.7 MB]
#12 6.279 Get:9 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/universe arm64 Packages [318 kB]
#12 6.282 Get:10 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 Packages [445 kB]
#12 6.284 Get:11 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/restricted arm64 Packages [221 kB]
#12 7.115 Get:12 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/multiverse arm64 Packages [3234 B]
#12 7.123 Get:13 http://ports.ubuntu.com/ubuntu-ports kinetic-backports/universe arm64 Packages [4552 B]
#12 7.123 Get:14 http://ports.ubuntu.com/ubuntu-ports kinetic-security/universe arm64 Packages [186 kB]
#12 7.148 Get:15 http://ports.ubuntu.com/ubuntu-ports kinetic-security/restricted arm64 Packages [220 kB]
#12 7.156 Get:16 http://ports.ubuntu.com/ubuntu-ports kinetic-security/multiverse arm64 Packages [2220 B]
#12 7.157 Get:17 http://ports.ubuntu.com/ubuntu-ports kinetic-security/main arm64 Packages [321 kB]
#12 7.196 Fetched 22.0 MB in 7s (3238 kB/s)
#12 7.196 Reading package lists...
#12 ...

#15 [stage-0  2/10] RUN apt-get -y update
#15 sha256:a6345d712deebe0078ee3ecfeb17bf7f09f811310aa54216a1d7bd7f8c52e1f6
#15 5.535 Get:1 http://ports.ubuntu.com/ubuntu-ports kinetic InRelease [267 kB]
#15 5.572 Get:2 http://ports.ubuntu.com/ubuntu-ports kinetic-updates InRelease [118 kB]
#15 5.585 Get:3 http://ports.ubuntu.com/ubuntu-ports kinetic-backports InRelease [99.9 kB]
#15 5.596 Get:4 http://ports.ubuntu.com/ubuntu-ports kinetic-security InRelease [109 kB]
#15 5.678 Get:5 http://ports.ubuntu.com/ubuntu-ports kinetic/multiverse arm64 Packages [236 kB]
#15 5.705 Get:6 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 Packages [1750 kB]
#15 5.760 Get:7 http://ports.ubuntu.com/ubuntu-ports kinetic/universe arm64 Packages [17.7 MB]
#15 6.452 Get:8 http://ports.ubuntu.com/ubuntu-ports kinetic/restricted arm64 Packages [60.7 kB]
#15 6.460 Get:9 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 Packages [445 kB]
#15 6.472 Get:10 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/multiverse arm64 Packages [3234 B]
#15 6.472 Get:11 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/restricted arm64 Packages [221 kB]
#15 8.116 Get:12 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/universe arm64 Packages [318 kB]
#15 8.156 Get:13 http://ports.ubuntu.com/ubuntu-ports kinetic-backports/universe arm64 Packages [4552 B]
#15 8.157 Get:14 http://ports.ubuntu.com/ubuntu-ports kinetic-security/main arm64 Packages [321 kB]
#15 8.170 Get:15 http://ports.ubuntu.com/ubuntu-ports kinetic-security/multiverse arm64 Packages [2220 B]
#15 8.170 Get:16 http://ports.ubuntu.com/ubuntu-ports kinetic-security/universe arm64 Packages [186 kB]
#15 8.172 Get:17 http://ports.ubuntu.com/ubuntu-ports kinetic-security/restricted arm64 Packages [220 kB]
#15 8.207 Fetched 22.0 MB in 8s (2858 kB/s)
#15 8.207 Reading package lists...
#15 DONE 9.7s

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

#12 [stage-1  4/36] RUN apt-get -y update
#12 sha256:9cd03ad11f38bb68788295814e99806cd4f24582e9ac58b91af3acfc5443f2c2
#12 DONE 8.8s

#13 [stage-1  5/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
#13 sha256:bc64b1def938639fc6f7fd9478b2b6b3e305b96714b15a8b02b3092d8aa37999
#13 0.495 Reading package lists...
#13 1.083 Building dependency tree...
#13 1.231 Reading state information...
#13 1.259 Calculating upgrade...
#13 1.469 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#13 DONE 1.5s

#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:4f18ff91cadb8a9e53f5fd34fb32f28f98fb40ea5f8651a8f233758d200524df
#14 ...

#16 [stage-0  3/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
#16 sha256:a6adb4084ff1bb234b87f904d4db98816ef1e01a02fc9c6938169b15c700aaa9
#16 0.667 Reading package lists...
#16 1.262 Building dependency tree...
#16 1.409 Reading state information...
#16 1.438 Calculating upgrade...
#16 1.664 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#16 DONE 1.8s

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:13632b05274669ef95ef86ba4527c79a102784ea04fdc980aae87f8bcddb3285
#17 0.468 Reading package lists...
#17 1.047 Building dependency tree...
#17 1.191 Reading state information...
#17 1.379 The following additional packages will be installed:
#17 1.379   binutils binutils-aarch64-linux-gnu binutils-common bzip2 ca-certificates
#17 1.379   cpp cpp-12 dirmngr dpkg-dev fakeroot fontconfig-config fonts-dejavu-core g++
#17 1.379   g++-12 gcc gcc-12 git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent
#17 1.379   gpg-wks-client gpg-wks-server gpgconf gpgsm krb5-locales less
#17 1.379   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
#17 1.379   libasan8 libassuan0 libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin
#17 1.379   libc-devtools libc6-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0
#17 1.379   libctf0 libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2
#17 1.379   liberror-perl libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl
#17 1.379   libfontconfig1 libfreetype6 libgcc-12-dev libgd3 libgdbm-compat4 libgdbm6
#17 1.379   libgomp1 libgprofng0 libgssapi-krb5-2 libhwasan0 libisl23 libitm1 libjbig0
#17 1.379   libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
#17 1.379   libksba8 libldap-2.5-0 libldap-common liblerc3 liblocale-gettext-perl
#17 1.379   liblsan0 libmd0 libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libnsl2
#17 1.379   libperl5.34 libpng16-16 libpsl5 libreadline8 librtmp1 libsasl2-2
#17 1.379   libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh-4 libssl3
#17 1.379   libstdc++-12-dev libtiff5 libtirpc-common libtirpc-dev libtirpc3 libtsan2
#17 1.379   libubsan1 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6
#17 1.380   libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages manpages-dev
#17 1.380   netbase openssh-client openssl patch perl perl-modules-5.34 pinentry-curses
#17 1.380   publicsuffix readline-common rpcsvc-proto ucf xauth xz-utils
#17 1.381 Suggested packages:
#17 1.381   binutils-doc bzip2-doc cpp-doc gcc-12-locales cpp-12-doc dbus-user-session
#17 1.381   libpam-systemd pinentry-gnome3 tor debian-keyring gcc-12-doc gcc-multilib
#17 1.381   autoconf automake libtool flex bison gdb gcc-doc gettext-base git-daemon-run
#17 1.381   | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs
#17 1.381   git-mediawiki git-svn parcimonie xloadimage scdaemon glibc-doc bzr
#17 1.381   libgd-tools gdbm-l10n krb5-doc krb5-user libsasl2-modules-gssapi-mit
#17 1.381   | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
#17 1.381   libsasl2-modules-sql libstdc++-12-doc make-doc man-browser keychain
#17 1.381   libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc
#17 1.381   libterm-readline-gnu-perl | libterm-readline-perl-perl
#17 1.381   libtap-harness-archive-perl pinentry-doc readline-doc
#17 1.509 The following NEW packages will be installed:
#17 1.509   binutils binutils-aarch64-linux-gnu binutils-common build-essential bzip2
#17 1.509   ca-certificates cpp cpp-12 curl dirmngr dpkg-dev fakeroot fontconfig-config
#17 1.509   fonts-dejavu-core g++ g++-12 gcc gcc-12 git git-man gnupg gnupg-l10n
#17 1.509   gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm
#17 1.509   krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl
#17 1.509   libalgorithm-merge-perl libasan8 libassuan0 libatomic1 libbinutils
#17 1.509   libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev libcap-dev
#17 1.509   libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libcurl3-gnutls
#17 1.509   libcurl4 libdeflate0 libdpkg-perl libedit2 liberror-perl libexpat1
#17 1.509   libfakeroot libfido2-1 libfile-fcntllock-perl libfontconfig1 libfreetype6
#17 1.509   libgcc-12-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libgprofng0
#17 1.509   libgssapi-krb5-2 libhwasan0 libisl23 libitm1 libjbig0 libjpeg-turbo8
#17 1.509   libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libksba8
#17 1.509   libldap-2.5-0 libldap-common liblerc3 liblocale-gettext-perl liblsan0 libmd0
#17 1.509   libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libnsl2 libperl5.34
#17 1.509   libpng16-16 libpsl5 libreadline8 librtmp1 libsasl2-2 libsasl2-modules
#17 1.509   libsasl2-modules-db libsqlite3-0 libssh-4 libssl3 libstdc++-12-dev libtiff5
#17 1.509   libtirpc-common libtirpc-dev libtirpc3 libtsan2 libubsan1 libwebp7 libx11-6
#17 1.510   libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxmuu1 libxpm4
#17 1.510   linux-libc-dev lto-disabled-list make manpages manpages-dev netbase
#17 1.510   openssh-client openssl patch perl perl-modules-5.34 pinentry-curses
#17 1.510   publicsuffix readline-common rpcsvc-proto sudo ucf xauth xz-utils
#17 1.543 0 upgraded, 137 newly installed, 0 to remove and 0 not upgraded.
#17 1.543 Need to get 93.1 MB of archives.
#17 1.543 After this operation, 357 MB of additional disk space will be used.
#17 1.543 Get:1 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liblocale-gettext-perl arm64 1.07-4build3 [16.9 kB]
#17 1.557 Get:2 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 perl-modules-5.34 all 5.34.0-5ubuntu1.1 [2952 kB]
#17 1.650 Get:3 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgdbm6 arm64 1.23-1 [34.1 kB]
#17 1.650 Get:4 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgdbm-compat4 arm64 1.23-1 [6294 B]
#17 1.650 Get:5 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libperl5.34 arm64 5.34.0-5ubuntu1.1 [4618 kB]
#17 1.715 Get:6 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 perl arm64 5.34.0-5ubuntu1.1 [231 kB]
#17 1.718 Get:7 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libssl3 arm64 3.0.5-2ubuntu2.1 [1755 kB]
#17 1.741 Get:8 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 openssl arm64 3.0.5-2ubuntu2.1 [1157 kB]
#17 1.752 Get:9 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 ca-certificates all 20211016ubuntu0.22.10.1 [143 kB]
#17 1.754 Get:10 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 krb5-locales all 1.20-1ubuntu0.1 [11.6 kB]
#17 1.754 Get:11 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 less arm64 590-1ubuntu0.22.10.1 [140 kB]
#17 1.770 Get:12 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libmd0 arm64 1.0.4-2 [23.7 kB]
#17 1.787 Get:13 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libbsd0 arm64 0.11.6-1 [43.6 kB]
#17 1.794 Get:14 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libexpat1 arm64 2.4.8-2ubuntu0.22.10.1 [72.1 kB]
#17 1.802 Get:15 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libkrb5support0 arm64 1.20-1ubuntu0.1 [31.3 kB]
#17 1.804 Get:16 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libk5crypto3 arm64 1.20-1ubuntu0.1 [85.0 kB]
#17 1.809 Get:17 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libkeyutils1 arm64 1.6.3-1 [10.6 kB]
#17 1.809 Get:18 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libkrb5-3 arm64 1.20-1ubuntu0.1 [345 kB]
#17 1.819 Get:19 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libgssapi-krb5-2 arm64 1.20-1ubuntu0.1 [139 kB]
#17 1.830 Get:20 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtirpc-common all 1.3.3+ds-1 [7790 B]
#17 1.831 Get:21 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtirpc3 arm64 1.3.3+ds-1 [82.1 kB]
#17 1.832 Get:22 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnsl2 arm64 1.3.0-2build2 [41.4 kB]
#17 1.847 Get:23 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 readline-common all 8.2-1 [55.1 kB]
#17 1.870 Get:24 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libreadline8 arm64 8.2-1 [149 kB]
#17 1.882 Get:25 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsqlite3-0 arm64 3.39.3-1 [644 kB]
#17 1.915 Get:26 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 netbase all 6.3 [12.9 kB]
#17 1.915 Get:27 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 sudo arm64 1.9.11p3-1ubuntu1.2 [822 kB]
#17 1.928 Get:28 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 ucf all 3.0043 [56.1 kB]
#17 1.928 Get:29 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcbor0.8 arm64 0.8.0-2ubuntu1 [24.3 kB]
#17 1.929 Get:30 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libedit2 arm64 3.1-20210910-1build1 [96.0 kB]
#17 1.930 Get:31 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfido2-1 arm64 1.11.0-1 [81.5 kB]
#17 1.931 Get:32 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnghttp2-14 arm64 1.49.0-1 [72.1 kB]
#17 1.932 Get:33 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libpng16-16 arm64 1.6.38-2 [182 kB]
#17 1.948 Get:34 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libpsl5 arm64 0.21.0-1.2build2 [58.3 kB]
#17 1.980 Get:35 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxau6 arm64 1:1.0.9-1build5 [7624 B]
#17 1.981 Get:36 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxdmcp6 arm64 1:1.1.3-0ubuntu5 [10.8 kB]
#17 1.981 Get:37 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxcb1 arm64 1.15-1 [47.6 kB]
#17 1.988 Get:38 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libx11-data all 2:1.8.1-2 [118 kB]
#17 1.999 Get:39 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libx11-6 arm64 2:1.8.1-2 [646 kB]
#17 2.016 Get:40 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxext6 arm64 2:1.3.4-1build1 [31.1 kB]
#17 2.017 Get:41 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxmuu1 arm64 2:1.1.3-3 [10.4 kB]
#17 2.017 Get:42 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 manpages all 5.13-1 [1391 kB]
#17 2.050 Get:43 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 openssh-client arm64 1:9.0p1-1ubuntu7.1 [831 kB]
#17 2.057 Get:44 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 publicsuffix all 20220811.1734-1 [130 kB]
#17 2.074 Get:45 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 xauth arm64 1:1.1.1-1 [27.1 kB]
#17 2.099 Get:46 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 xz-utils arm64 5.2.5-2.1 [83.5 kB]
#17 2.118 Get:47 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 binutils-common arm64 2.39-3ubuntu1.1 [225 kB]
#17 2.135 Get:48 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libbinutils arm64 2.39-3ubuntu1.1 [709 kB]
#17 2.150 Get:49 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libctf-nobfd0 arm64 2.39-3ubuntu1.1 [96.7 kB]
#17 2.151 Get:50 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libctf0 arm64 2.39-3ubuntu1.1 [92.9 kB]
#17 2.167 Get:51 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libgprofng0 arm64 2.39-3ubuntu1.1 [791 kB]
#17 2.182 Get:52 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.39-3ubuntu1.1 [3133 kB]
#17 2.230 Get:53 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 binutils arm64 2.39-3ubuntu1.1 [3272 B]
#17 2.230 Get:54 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libc-dev-bin arm64 2.36-0ubuntu4 [19.5 kB]
#17 2.231 Get:55 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 linux-libc-dev arm64 5.19.0-38.39 [1345 kB]
#17 2.257 Get:56 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcrypt-dev arm64 1:4.4.28-2 [120 kB]
#17 2.287 Get:57 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 rpcsvc-proto arm64 1.4.2-0ubuntu6 [65.4 kB]
#17 2.289 Get:58 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtirpc-dev arm64 1.3.3+ds-1 [199 kB]
#17 2.298 Get:59 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnsl-dev arm64 1.3.0-2build2 [72.1 kB]
#17 2.308 Get:60 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libc6-dev arm64 2.36-0ubuntu4 [1547 kB]
#17 2.367 Get:61 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libisl23 arm64 0.25-1 [697 kB]
#17 2.373 Get:62 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libmpfr6 arm64 4.1.0-3build3 [245 kB]
#17 2.375 Get:63 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libmpc3 arm64 1.2.1-2build1 [48.1 kB]
#17 2.377 Get:64 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 cpp-12 arm64 12.2.0-3ubuntu1 [9579 kB]
#17 2.588 Get:65 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 cpp arm64 4:12.2.0-1ubuntu1 [27.3 kB]
#17 2.588 Get:66 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcc1-0 arm64 12.2.0-3ubuntu1 [44.1 kB]
#17 2.603 Get:67 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgomp1 arm64 12.2.0-3ubuntu1 [122 kB]
#17 2.634 Get:68 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libitm1 arm64 12.2.0-3ubuntu1 [27.9 kB]
#17 2.635 Get:69 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libatomic1 arm64 12.2.0-3ubuntu1 [10.7 kB]
#17 2.636 Get:70 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libasan8 arm64 12.2.0-3ubuntu1 [2375 kB]
#17 2.750 Get:71 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liblsan0 arm64 12.2.0-3ubuntu1 [1027 kB]
#17 2.758 Get:72 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtsan2 arm64 12.2.0-3ubuntu1 [2514 kB]
#17 2.794 Get:73 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libubsan1 arm64 12.2.0-3ubuntu1 [957 kB]
#17 2.810 Get:74 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libhwasan0 arm64 12.2.0-3ubuntu1 [1109 kB]
#17 2.839 Get:75 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgcc-12-dev arm64 12.2.0-3ubuntu1 [1157 kB]
#17 2.870 Get:76 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gcc-12 arm64 12.2.0-3ubuntu1 [19.1 MB]
#17 3.419 Get:77 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gcc arm64 4:12.2.0-1ubuntu1 [5116 B]
#17 3.434 Get:78 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libstdc++-12-dev arm64 12.2.0-3ubuntu1 [2154 kB]
#17 3.572 Get:79 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 g++-12 arm64 12.2.0-3ubuntu1 [10.9 MB]
#17 3.826 Get:80 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 g++ arm64 4:12.2.0-1ubuntu1 [1396 B]
#17 3.826 Get:81 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 make arm64 4.3-4.1build1 [177 kB]
#17 3.828 Get:82 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libdpkg-perl all 1.21.9ubuntu1 [237 kB]
#17 3.831 Get:83 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 bzip2 arm64 1.0.8-5build1 [34.6 kB]
#17 3.831 Get:84 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 patch arm64 2.7.6-7build2 [105 kB]
#17 3.832 Get:85 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 lto-disabled-list all 35 [12.2 kB]
#17 3.833 Get:86 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 dpkg-dev all 1.21.9ubuntu1 [1070 kB]
#17 3.841 Get:87 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 build-essential arm64 12.9ubuntu3 [4740 B]
#17 3.841 Get:88 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libbrotli1 arm64 1.0.9-2build6 [314 kB]
#17 3.858 Get:89 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsasl2-modules-db arm64 2.1.28+dfsg-6ubuntu2 [21.0 kB]
#17 3.873 Get:90 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsasl2-2 arm64 2.1.28+dfsg-6ubuntu2 [57.3 kB]
#17 3.882 Get:91 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libldap-2.5-0 arm64 2.5.14+dfsg-0ubuntu0.22.10.1 [180 kB]
#17 3.896 Get:92 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 librtmp1 arm64 2.4+20151223.gitfa8646d.1-2build4 [59.2 kB]
#17 3.898 Get:93 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libssh-4 arm64 0.9.6-2build1 [184 kB]
#17 3.903 Get:94 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libcurl4 arm64 7.85.0-1ubuntu0.5 [288 kB]
#17 3.909 Get:95 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 curl arm64 7.85.0-1ubuntu0.5 [196 kB]
#17 3.920 Get:96 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libassuan0 arm64 2.5.5-4 [35.3 kB]
#17 3.921 Get:97 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpgconf arm64 2.2.35-3ubuntu1 [92.4 kB]
#17 3.923 Get:98 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libksba8 arm64 1.6.0-3ubuntu1.1 [116 kB]
#17 3.925 Get:99 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnpth0 arm64 1.6-3build2 [8156 B]
#17 3.943 Get:100 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 dirmngr arm64 2.2.35-3ubuntu1 [295 kB]
#17 3.982 Get:101 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfakeroot arm64 1.29-1ubuntu1 [30.8 kB]
#17 3.983 Get:102 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 fakeroot arm64 1.29-1ubuntu1 [60.1 kB]
#17 3.984 Get:103 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
#17 4.019 Get:104 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 fontconfig-config all 2.13.1-4.4ubuntu1 [28.2 kB]
#17 4.021 Get:105 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libcurl3-gnutls arm64 7.85.0-1ubuntu0.5 [282 kB]
#17 4.026 Get:106 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liberror-perl all 0.17029-1 [26.5 kB]
#17 4.027 Get:107 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 git-man all 1:2.37.2-1ubuntu1.4 [975 kB]
#17 4.037 Get:108 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 git arm64 1:2.37.2-1ubuntu1.4 [3355 kB]
#17 4.083 Get:109 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gnupg-l10n all 2.2.35-3ubuntu1 [53.8 kB]
#17 4.083 Get:110 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gnupg-utils arm64 2.2.35-3ubuntu1 [301 kB]
#17 4.124 Get:111 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg arm64 2.2.35-3ubuntu1 [508 kB]
#17 4.168 Get:112 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 pinentry-curses arm64 1.2.0-2ubuntu1 [33.7 kB]
#17 4.169 Get:113 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg-agent arm64 2.2.35-3ubuntu1 [209 kB]
#17 4.185 Get:114 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg-wks-client arm64 2.2.35-3ubuntu1 [61.8 kB]
#17 4.186 Get:115 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg-wks-server arm64 2.2.35-3ubuntu1 [57.2 kB]
#17 4.188 Get:116 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpgsm arm64 2.2.35-3ubuntu1 [195 kB]
#17 4.191 Get:117 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gnupg all 2.2.35-3ubuntu1 [318 kB]
#17 4.201 Get:118 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
#17 4.202 Get:119 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libalgorithm-diff-xs-perl arm64 0.04-7 [11.6 kB]
#17 4.202 Get:120 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libalgorithm-merge-perl all 0.08-4 [12.0 kB]
#17 4.203 Get:121 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfreetype6 arm64 2.12.1+dfsg-3 [381 kB]
#17 4.227 Get:122 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfontconfig1 arm64 2.13.1-4.4ubuntu1 [132 kB]
#17 4.259 Get:123 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libjpeg-turbo8 arm64 2.1.2-0ubuntu1 [129 kB]
#17 4.263 Get:124 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libjpeg8 arm64 8c-2ubuntu10 [2264 B]
#17 4.263 Get:125 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libdeflate0 arm64 1.12-1 [72.0 kB]
#17 4.268 Get:126 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libjbig0 arm64 2.1-3.1ubuntu0.22.10.1 [29.4 kB]
#17 4.269 Get:127 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liblerc3 arm64 3.0+ds-1ubuntu1 [109 kB]
#17 4.272 Get:128 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libwebp7 arm64 1.2.2-2 [192 kB]
#17 4.277 Get:129 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libtiff5 arm64 4.4.0-4ubuntu3.3 [183 kB]
#17 4.280 Get:130 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libxpm4 arm64 1:3.5.12-1ubuntu0.22.10.1 [35.4 kB]
#17 4.281 Get:131 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgd3 arm64 2.3.3-6 [119 kB]
#17 4.282 Get:132 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libc-devtools arm64 2.36-0ubuntu4 [27.4 kB]
#17 4.297 Get:133 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcap-dev arm64 1:2.44-1build3 [40.2 kB]
#17 4.315 Get:134 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfile-fcntllock-perl arm64 0.22-4 [33.6 kB]
#17 4.319 Get:135 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libldap-common all 2.5.14+dfsg-0ubuntu0.22.10.1 [19.8 kB]
#17 4.323 Get:136 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsasl2-modules arm64 2.1.28+dfsg-6ubuntu2 [69.3 kB]
#17 4.331 Get:137 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 manpages-dev all 5.13-1 [2355 kB]
#17 4.503 debconf: delaying package configuration, since apt-utils is not installed
#17 4.531 Fetched 93.1 MB in 3s (32.5 MB/s)
#17 4.549 Selecting previously unselected package liblocale-gettext-perl.
#17 4.549 (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 ... 4393 files and directories currently installed.)
#17 4.554 Preparing to unpack .../000-liblocale-gettext-perl_1.07-4build3_arm64.deb ...
#17 4.554 Unpacking liblocale-gettext-perl (1.07-4build3) ...
#17 4.568 Selecting previously unselected package perl-modules-5.34.
#17 4.569 Preparing to unpack .../001-perl-modules-5.34_5.34.0-5ubuntu1.1_all.deb ...
#17 4.570 Unpacking perl-modules-5.34 (5.34.0-5ubuntu1.1) ...
#17 4.779 Selecting previously unselected package libgdbm6:arm64.
#17 4.781 Preparing to unpack .../002-libgdbm6_1.23-1_arm64.deb ...
#17 4.784 Unpacking libgdbm6:arm64 (1.23-1) ...
#17 4.799 Selecting previously unselected package libgdbm-compat4:arm64.
#17 4.800 Preparing to unpack .../003-libgdbm-compat4_1.23-1_arm64.deb ...
#17 4.800 Unpacking libgdbm-compat4:arm64 (1.23-1) ...
#17 4.816 Selecting previously unselected package libperl5.34:arm64.
#17 4.817 Preparing to unpack .../004-libperl5.34_5.34.0-5ubuntu1.1_arm64.deb ...
#17 4.817 Unpacking libperl5.34:arm64 (5.34.0-5ubuntu1.1) ...
#17 5.006 Selecting previously unselected package perl.
#17 5.008 Preparing to unpack .../005-perl_5.34.0-5ubuntu1.1_arm64.deb ...
#17 5.014 Unpacking perl (5.34.0-5ubuntu1.1) ...
#17 5.042 Selecting previously unselected package libssl3:arm64.
#17 5.044 Preparing to unpack .../006-libssl3_3.0.5-2ubuntu2.1_arm64.deb ...
#17 5.044 Unpacking libssl3:arm64 (3.0.5-2ubuntu2.1) ...
#17 5.086 Selecting previously unselected package openssl.
#17 5.087 Preparing to unpack .../007-openssl_3.0.5-2ubuntu2.1_arm64.deb ...
#17 5.088 Unpacking openssl (3.0.5-2ubuntu2.1) ...
#17 5.122 Selecting previously unselected package ca-certificates.
#17 5.124 Preparing to unpack .../008-ca-certificates_20211016ubuntu0.22.10.1_all.deb ...
#17 5.124 Unpacking ca-certificates (20211016ubuntu0.22.10.1) ...
#17 5.155 Selecting previously unselected package krb5-locales.
#17 5.157 Preparing to unpack .../009-krb5-locales_1.20-1ubuntu0.1_all.deb ...
#17 5.158 Unpacking krb5-locales (1.20-1ubuntu0.1) ...
#17 5.173 Selecting previously unselected package less.
#17 5.174 Preparing to unpack .../010-less_590-1ubuntu0.22.10.1_arm64.deb ...
#17 5.177 Unpacking less (590-1ubuntu0.22.10.1) ...
#17 5.196 Selecting previously unselected package libmd0:arm64.
#17 5.197 Preparing to unpack .../011-libmd0_1.0.4-2_arm64.deb ...
#17 5.198 Unpacking libmd0:arm64 (1.0.4-2) ...
#17 5.213 Selecting previously unselected package libbsd0:arm64.
#17 5.215 Preparing to unpack .../012-libbsd0_0.11.6-1_arm64.deb ...
#17 5.216 Unpacking libbsd0:arm64 (0.11.6-1) ...
#17 5.231 Selecting previously unselected package libexpat1:arm64.
#17 5.232 Preparing to unpack .../013-libexpat1_2.4.8-2ubuntu0.22.10.1_arm64.deb ...
#17 5.233 Unpacking libexpat1:arm64 (2.4.8-2ubuntu0.22.10.1) ...
#17 5.251 Selecting previously unselected package libkrb5support0:arm64.
#17 5.253 Preparing to unpack .../014-libkrb5support0_1.20-1ubuntu0.1_arm64.deb ...
#17 5.253 Unpacking libkrb5support0:arm64 (1.20-1ubuntu0.1) ...
#17 5.270 Selecting previously unselected package libk5crypto3:arm64.
#17 5.271 Preparing to unpack .../015-libk5crypto3_1.20-1ubuntu0.1_arm64.deb ...
#17 5.272 Unpacking libk5crypto3:arm64 (1.20-1ubuntu0.1) ...
#17 5.289 Selecting previously unselected package libkeyutils1:arm64.
#17 5.290 Preparing to unpack .../016-libkeyutils1_1.6.3-1_arm64.deb ...
#17 5.291 Unpacking libkeyutils1:arm64 (1.6.3-1) ...
#17 5.306 Selecting previously unselected package libkrb5-3:arm64.
#17 5.307 Preparing to unpack .../017-libkrb5-3_1.20-1ubuntu0.1_arm64.deb ...
#17 5.308 Unpacking libkrb5-3:arm64 (1.20-1ubuntu0.1) ...
#17 5.331 Selecting previously unselected package libgssapi-krb5-2:arm64.
#17 5.332 Preparing to unpack .../018-libgssapi-krb5-2_1.20-1ubuntu0.1_arm64.deb ...
#17 5.333 Unpacking libgssapi-krb5-2:arm64 (1.20-1ubuntu0.1) ...
#17 5.351 Selecting previously unselected package libtirpc-common.
#17 5.352 Preparing to unpack .../019-libtirpc-common_1.3.3+ds-1_all.deb ...
#17 5.352 Unpacking libtirpc-common (1.3.3+ds-1) ...
#17 5.367 Selecting previously unselected package libtirpc3:arm64.
#17 5.368 Preparing to unpack .../020-libtirpc3_1.3.3+ds-1_arm64.deb ...
#17 5.369 Unpacking libtirpc3:arm64 (1.3.3+ds-1) ...
#17 5.385 Selecting previously unselected package libnsl2:arm64.
#17 5.386 Preparing to unpack .../021-libnsl2_1.3.0-2build2_arm64.deb ...
#17 5.387 Unpacking libnsl2:arm64 (1.3.0-2build2) ...
#17 5.402 Selecting previously unselected package readline-common.
#17 5.403 Preparing to unpack .../022-readline-common_8.2-1_all.deb ...
#17 5.404 Unpacking readline-common (8.2-1) ...
#17 5.421 Selecting previously unselected package libreadline8:arm64.
#17 5.422 Preparing to unpack .../023-libreadline8_8.2-1_arm64.deb ...
#17 5.423 Unpacking libreadline8:arm64 (8.2-1) ...
#17 5.443 Selecting previously unselected package libsqlite3-0:arm64.
#17 5.444 Preparing to unpack .../024-libsqlite3-0_3.39.3-1_arm64.deb ...
#17 5.445 Unpacking libsqlite3-0:arm64 (3.39.3-1) ...
#17 5.467 Selecting previously unselected package netbase.
#17 5.468 Preparing to unpack .../025-netbase_6.3_all.deb ...
#17 5.469 Unpacking netbase (6.3) ...
#17 5.486 Selecting previously unselected package sudo.
#17 5.488 Preparing to unpack .../026-sudo_1.9.11p3-1ubuntu1.2_arm64.deb ...
#17 5.490 Unpacking sudo (1.9.11p3-1ubuntu1.2) ...
#17 5.523 Selecting previously unselected package ucf.
#17 5.525 Preparing to unpack .../027-ucf_3.0043_all.deb ...
#17 5.527 Moving old data out of the way
#17 5.529 Unpacking ucf (3.0043) ...
#17 5.550 Selecting previously unselected package libcbor0.8:arm64.
#17 5.551 Preparing to unpack .../028-libcbor0.8_0.8.0-2ubuntu1_arm64.deb ...
#17 5.551 Unpacking libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#17 5.568 Selecting previously unselected package libedit2:arm64.
#17 5.569 Preparing to unpack .../029-libedit2_3.1-20210910-1build1_arm64.deb ...
#17 5.570 Unpacking libedit2:arm64 (3.1-20210910-1build1) ...
#17 5.589 Selecting previously unselected package libfido2-1:arm64.
#17 5.590 Preparing to unpack .../030-libfido2-1_1.11.0-1_arm64.deb ...
#17 5.590 Unpacking libfido2-1:arm64 (1.11.0-1) ...
#17 5.606 Selecting previously unselected package libnghttp2-14:arm64.
#17 5.607 Preparing to unpack .../031-libnghttp2-14_1.49.0-1_arm64.deb ...
#17 5.608 Unpacking libnghttp2-14:arm64 (1.49.0-1) ...
#17 5.626 Selecting previously unselected package libpng16-16:arm64.
#17 5.627 Preparing to unpack .../032-libpng16-16_1.6.38-2_arm64.deb ...
#17 5.628 Unpacking libpng16-16:arm64 (1.6.38-2) ...
#17 5.645 Selecting previously unselected package libpsl5:arm64.
#17 5.647 Preparing to unpack .../033-libpsl5_0.21.0-1.2build2_arm64.deb ...
#17 5.647 Unpacking libpsl5:arm64 (0.21.0-1.2build2) ...
#17 5.664 Selecting previously unselected package libxau6:arm64.
#17 5.665 Preparing to unpack .../034-libxau6_1%3a1.0.9-1build5_arm64.deb ...
#17 5.666 Unpacking libxau6:arm64 (1:1.0.9-1build5) ...
#17 5.681 Selecting previously unselected package libxdmcp6:arm64.
#17 5.683 Preparing to unpack .../035-libxdmcp6_1%3a1.1.3-0ubuntu5_arm64.deb ...
#17 5.684 Unpacking libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#17 5.701 Selecting previously unselected package libxcb1:arm64.
#17 5.702 Preparing to unpack .../036-libxcb1_1.15-1_arm64.deb ...
#17 5.702 Unpacking libxcb1:arm64 (1.15-1) ...
#17 5.719 Selecting previously unselected package libx11-data.
#17 5.720 Preparing to unpack .../037-libx11-data_2%3a1.8.1-2_all.deb ...
#17 5.721 Unpacking libx11-data (2:1.8.1-2) ...
#17 5.766 Selecting previously unselected package libx11-6:arm64.
#17 5.767 Preparing to unpack .../038-libx11-6_2%3a1.8.1-2_arm64.deb ...
#17 5.768 Unpacking libx11-6:arm64 (2:1.8.1-2) ...
#17 5.793 Selecting previously unselected package libxext6:arm64.
#17 5.795 Preparing to unpack .../039-libxext6_2%3a1.3.4-1build1_arm64.deb ...
#17 5.796 Unpacking libxext6:arm64 (2:1.3.4-1build1) ...
#17 5.812 Selecting previously unselected package libxmuu1:arm64.
#17 5.814 Preparing to unpack .../040-libxmuu1_2%3a1.1.3-3_arm64.deb ...
#17 5.815 Unpacking libxmuu1:arm64 (2:1.1.3-3) ...
#17 5.830 Selecting previously unselected package manpages.
#17 5.831 Preparing to unpack .../041-manpages_5.13-1_all.deb ...
#17 5.832 Unpacking manpages (5.13-1) ...
#17 5.860 Selecting previously unselected package openssh-client.
#17 5.861 Preparing to unpack .../042-openssh-client_1%3a9.0p1-1ubuntu7.1_arm64.deb ...
#17 5.868 Unpacking openssh-client (1:9.0p1-1ubuntu7.1) ...
#17 5.903 Selecting previously unselected package publicsuffix.
#17 5.904 Preparing to unpack .../043-publicsuffix_20220811.1734-1_all.deb ...
#17 5.905 Unpacking publicsuffix (20220811.1734-1) ...
#17 5.923 Selecting previously unselected package xauth.
#17 5.924 Preparing to unpack .../044-xauth_1%3a1.1.1-1_arm64.deb ...
#17 5.925 Unpacking xauth (1:1.1.1-1) ...
#17 5.941 Selecting previously unselected package xz-utils.
#17 5.943 Preparing to unpack .../045-xz-utils_5.2.5-2.1_arm64.deb ...
#17 5.943 Unpacking xz-utils (5.2.5-2.1) ...
#17 5.963 Selecting previously unselected package binutils-common:arm64.
#17 5.964 Preparing to unpack .../046-binutils-common_2.39-3ubuntu1.1_arm64.deb ...
#17 5.965 Unpacking binutils-common:arm64 (2.39-3ubuntu1.1) ...
#17 5.982 Selecting previously unselected package libbinutils:arm64.
#17 5.984 Preparing to unpack .../047-libbinutils_2.39-3ubuntu1.1_arm64.deb ...
#17 5.985 Unpacking libbinutils:arm64 (2.39-3ubuntu1.1) ...
#17 6.016 Selecting previously unselected package libctf-nobfd0:arm64.
#17 6.017 Preparing to unpack .../048-libctf-nobfd0_2.39-3ubuntu1.1_arm64.deb ...
#17 6.017 Unpacking libctf-nobfd0:arm64 (2.39-3ubuntu1.1) ...
#17 6.035 Selecting previously unselected package libctf0:arm64.
#17 6.036 Preparing to unpack .../049-libctf0_2.39-3ubuntu1.1_arm64.deb ...
#17 6.037 Unpacking libctf0:arm64 (2.39-3ubuntu1.1) ...
#17 6.054 Selecting previously unselected package libgprofng0:arm64.
#17 6.056 Preparing to unpack .../050-libgprofng0_2.39-3ubuntu1.1_arm64.deb ...
#17 6.056 Unpacking libgprofng0:arm64 (2.39-3ubuntu1.1) ...
#17 6.088 Selecting previously unselected package binutils-aarch64-linux-gnu.
#17 6.090 Preparing to unpack .../051-binutils-aarch64-linux-gnu_2.39-3ubuntu1.1_arm64.deb ...
#17 6.090 Unpacking binutils-aarch64-linux-gnu (2.39-3ubuntu1.1) ...
#17 6.198 Selecting previously unselected package binutils.
#17 6.200 Preparing to unpack .../052-binutils_2.39-3ubuntu1.1_arm64.deb ...
#17 6.200 Unpacking binutils (2.39-3ubuntu1.1) ...
#17 6.219 Selecting previously unselected package libc-dev-bin.
#17 6.220 Preparing to unpack .../053-libc-dev-bin_2.36-0ubuntu4_arm64.deb ...
#17 6.221 Unpacking libc-dev-bin (2.36-0ubuntu4) ...
#17 6.237 Selecting previously unselected package linux-libc-dev:arm64.
#17 6.238 Preparing to unpack .../054-linux-libc-dev_5.19.0-38.39_arm64.deb ...
#17 6.239 Unpacking linux-libc-dev:arm64 (5.19.0-38.39) ...
#17 6.362 Selecting previously unselected package libcrypt-dev:arm64.
#17 6.364 Preparing to unpack .../055-libcrypt-dev_1%3a4.4.28-2_arm64.deb ...
#17 6.371 Unpacking libcrypt-dev:arm64 (1:4.4.28-2) ...
#17 6.390 Selecting previously unselected package rpcsvc-proto.
#17 6.391 Preparing to unpack .../056-rpcsvc-proto_1.4.2-0ubuntu6_arm64.deb ...
#17 6.392 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
#17 6.412 Selecting previously unselected package libtirpc-dev:arm64.
#17 6.414 Preparing to unpack .../057-libtirpc-dev_1.3.3+ds-1_arm64.deb ...
#17 6.414 Unpacking libtirpc-dev:arm64 (1.3.3+ds-1) ...
#17 6.438 Selecting previously unselected package libnsl-dev:arm64.
#17 6.439 Preparing to unpack .../058-libnsl-dev_1.3.0-2build2_arm64.deb ...
#17 6.440 Unpacking libnsl-dev:arm64 (1.3.0-2build2) ...
#17 6.462 Selecting previously unselected package libc6-dev:arm64.
#17 6.463 Preparing to unpack .../059-libc6-dev_2.36-0ubuntu4_arm64.deb ...
#17 6.464 Unpacking libc6-dev:arm64 (2.36-0ubuntu4) ...
#17 6.559 Selecting previously unselected package libisl23:arm64.
#17 6.560 Preparing to unpack .../060-libisl23_0.25-1_arm64.deb ...
#17 6.561 Unpacking libisl23:arm64 (0.25-1) ...
#17 6.596 Selecting previously unselected package libmpfr6:arm64.
#17 6.598 Preparing to unpack .../061-libmpfr6_4.1.0-3build3_arm64.deb ...
#17 6.598 Unpacking libmpfr6:arm64 (4.1.0-3build3) ...
#17 6.618 Selecting previously unselected package libmpc3:arm64.
#17 6.620 Preparing to unpack .../062-libmpc3_1.2.1-2build1_arm64.deb ...
#17 6.621 Unpacking libmpc3:arm64 (1.2.1-2build1) ...
#17 6.643 Selecting previously unselected package cpp-12.
#17 6.645 Preparing to unpack .../063-cpp-12_12.2.0-3ubuntu1_arm64.deb ...
#17 6.645 Unpacking cpp-12 (12.2.0-3ubuntu1) ...
#17 6.812 Selecting previously unselected package cpp.
#17 6.813 Preparing to unpack .../064-cpp_4%3a12.2.0-1ubuntu1_arm64.deb ...
#17 6.814 Unpacking cpp (4:12.2.0-1ubuntu1) ...
#17 6.830 Selecting previously unselected package libcc1-0:arm64.
#17 6.832 Preparing to unpack .../065-libcc1-0_12.2.0-3ubuntu1_arm64.deb ...
#17 6.833 Unpacking libcc1-0:arm64 (12.2.0-3ubuntu1) ...
#17 6.850 Selecting previously unselected package libgomp1:arm64.
#17 6.852 Preparing to unpack .../066-libgomp1_12.2.0-3ubuntu1_arm64.deb ...
#17 6.853 Unpacking libgomp1:arm64 (12.2.0-3ubuntu1) ...
#17 6.870 Selecting previously unselected package libitm1:arm64.
#17 6.872 Preparing to unpack .../067-libitm1_12.2.0-3ubuntu1_arm64.deb ...
#17 6.872 Unpacking libitm1:arm64 (12.2.0-3ubuntu1) ...
#17 6.888 Selecting previously unselected package libatomic1:arm64.
#17 6.890 Preparing to unpack .../068-libatomic1_12.2.0-3ubuntu1_arm64.deb ...
#17 6.891 Unpacking libatomic1:arm64 (12.2.0-3ubuntu1) ...
#17 6.906 Selecting previously unselected package libasan8:arm64.
#17 6.908 Preparing to unpack .../069-libasan8_12.2.0-3ubuntu1_arm64.deb ...
#17 6.909 Unpacking libasan8:arm64 (12.2.0-3ubuntu1) ...
#17 6.966 Selecting previously unselected package liblsan0:arm64.
#17 6.968 Preparing to unpack .../070-liblsan0_12.2.0-3ubuntu1_arm64.deb ...
#17 6.968 Unpacking liblsan0:arm64 (12.2.0-3ubuntu1) ...
#17 7.003 Selecting previously unselected package libtsan2:arm64.
#17 7.004 Preparing to unpack .../071-libtsan2_12.2.0-3ubuntu1_arm64.deb ...
#17 7.005 Unpacking libtsan2:arm64 (12.2.0-3ubuntu1) ...
#17 7.060 Selecting previously unselected package libubsan1:arm64.
#17 7.062 Preparing to unpack .../072-libubsan1_12.2.0-3ubuntu1_arm64.deb ...
#17 7.063 Unpacking libubsan1:arm64 (12.2.0-3ubuntu1) ...
#17 7.094 Selecting previously unselected package libhwasan0:arm64.
#17 7.095 Preparing to unpack .../073-libhwasan0_12.2.0-3ubuntu1_arm64.deb ...
#17 7.096 Unpacking libhwasan0:arm64 (12.2.0-3ubuntu1) ...
#17 7.130 Selecting previously unselected package libgcc-12-dev:arm64.
#17 7.131 Preparing to unpack .../074-libgcc-12-dev_12.2.0-3ubuntu1_arm64.deb ...
#17 7.132 Unpacking libgcc-12-dev:arm64 (12.2.0-3ubuntu1) ...
#17 7.198 Selecting previously unselected package gcc-12.
#17 7.200 Preparing to unpack .../075-gcc-12_12.2.0-3ubuntu1_arm64.deb ...
#17 7.201 Unpacking gcc-12 (12.2.0-3ubuntu1) ...
#17 7.493 Selecting previously unselected package gcc.
#17 7.494 Preparing to unpack .../076-gcc_4%3a12.2.0-1ubuntu1_arm64.deb ...
#17 7.495 Unpacking gcc (4:12.2.0-1ubuntu1) ...
#17 7.514 Selecting previously unselected package libstdc++-12-dev:arm64.
#17 7.516 Preparing to unpack .../077-libstdc++-12-dev_12.2.0-3ubuntu1_arm64.deb ...
#17 7.517 Unpacking libstdc++-12-dev:arm64 (12.2.0-3ubuntu1) ...
#17 7.666 Selecting previously unselected package g++-12.
#17 7.668 Preparing to unpack .../078-g++-12_12.2.0-3ubuntu1_arm64.deb ...
#17 7.669 Unpacking g++-12 (12.2.0-3ubuntu1) ...
#17 7.839 Selecting previously unselected package g++.
#17 7.841 Preparing to unpack .../079-g++_4%3a12.2.0-1ubuntu1_arm64.deb ...
#17 7.841 Unpacking g++ (4:12.2.0-1ubuntu1) ...
#17 7.855 Selecting previously unselected package make.
#17 7.857 Preparing to unpack .../080-make_4.3-4.1build1_arm64.deb ...
#17 7.858 Unpacking make (4.3-4.1build1) ...
#17 7.877 Selecting previously unselected package libdpkg-perl.
#17 7.879 Preparing to unpack .../081-libdpkg-perl_1.21.9ubuntu1_all.deb ...
#17 7.879 Unpacking libdpkg-perl (1.21.9ubuntu1) ...
#17 7.907 Selecting previously unselected package bzip2.
#17 7.909 Preparing to unpack .../082-bzip2_1.0.8-5build1_arm64.deb ...
#17 7.910 Unpacking bzip2 (1.0.8-5build1) ...
#17 7.928 Selecting previously unselected package patch.
#17 7.930 Preparing to unpack .../083-patch_2.7.6-7build2_arm64.deb ...
#17 7.940 Unpacking patch (2.7.6-7build2) ...
#17 7.955 Selecting previously unselected package lto-disabled-list.
#17 7.957 Preparing to unpack .../084-lto-disabled-list_35_all.deb ...
#17 7.958 Unpacking lto-disabled-list (35) ...
#17 7.974 Selecting previously unselected package dpkg-dev.
#17 7.976 Preparing to unpack .../085-dpkg-dev_1.21.9ubuntu1_all.deb ...
#17 7.976 Unpacking dpkg-dev (1.21.9ubuntu1) ...
#17 8.008 Selecting previously unselected package build-essential.
#17 8.010 Preparing to unpack .../086-build-essential_12.9ubuntu3_arm64.deb ...
#17 8.011 Unpacking build-essential (12.9ubuntu3) ...
#17 8.026 Selecting previously unselected package libbrotli1:arm64.
#17 8.028 Preparing to unpack .../087-libbrotli1_1.0.9-2build6_arm64.deb ...
#17 8.029 Unpacking libbrotli1:arm64 (1.0.9-2build6) ...
#17 8.052 Selecting previously unselected package libsasl2-modules-db:arm64.
#17 8.054 Preparing to unpack .../088-libsasl2-modules-db_2.1.28+dfsg-6ubuntu2_arm64.deb ...
#17 8.055 Unpacking libsasl2-modules-db:arm64 (2.1.28+dfsg-6ubuntu2) ...
#17 8.071 Selecting previously unselected package libsasl2-2:arm64.
#17 8.073 Preparing to unpack .../089-libsasl2-2_2.1.28+dfsg-6ubuntu2_arm64.deb ...
#17 8.074 Unpacking libsasl2-2:arm64 (2.1.28+dfsg-6ubuntu2) ...
#17 8.092 Selecting previously unselected package libldap-2.5-0:arm64.
#17 8.094 Preparing to unpack .../090-libldap-2.5-0_2.5.14+dfsg-0ubuntu0.22.10.1_arm64.deb ...
#17 8.094 Unpacking libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#17 8.116 Selecting previously unselected package librtmp1:arm64.
#17 8.118 Preparing to unpack .../091-librtmp1_2.4+20151223.gitfa8646d.1-2build4_arm64.deb ...
#17 8.118 Unpacking librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#17 8.136 Selecting previously unselected package libssh-4:arm64.
#17 8.138 Preparing to unpack .../092-libssh-4_0.9.6-2build1_arm64.deb ...
#17 8.139 Unpacking libssh-4:arm64 (0.9.6-2build1) ...
#17 8.159 Selecting previously unselected package libcurl4:arm64.
#17 8.161 Preparing to unpack .../093-libcurl4_7.85.0-1ubuntu0.5_arm64.deb ...
#17 8.161 Unpacking libcurl4:arm64 (7.85.0-1ubuntu0.5) ...
#17 8.182 Selecting previously unselected package curl.
#17 8.183 Preparing to unpack .../094-curl_7.85.0-1ubuntu0.5_arm64.deb ...
#17 8.184 Unpacking curl (7.85.0-1ubuntu0.5) ...
#17 8.203 Selecting previously unselected package libassuan0:arm64.
#17 8.204 Preparing to unpack .../095-libassuan0_2.5.5-4_arm64.deb ...
#17 8.205 Unpacking libassuan0:arm64 (2.5.5-4) ...
#17 8.222 Selecting previously unselected package gpgconf.
#17 8.224 Preparing to unpack .../096-gpgconf_2.2.35-3ubuntu1_arm64.deb ...
#17 8.224 Unpacking gpgconf (2.2.35-3ubuntu1) ...
#17 8.243 Selecting previously unselected package libksba8:arm64.
#17 8.244 Preparing to unpack .../097-libksba8_1.6.0-3ubuntu1.1_arm64.deb ...
#17 8.245 Unpacking libksba8:arm64 (1.6.0-3ubuntu1.1) ...
#17 8.263 Selecting previously unselected package libnpth0:arm64.
#17 8.265 Preparing to unpack .../098-libnpth0_1.6-3build2_arm64.deb ...
#17 8.266 Unpacking libnpth0:arm64 (1.6-3build2) ...
#17 8.282 Selecting previously unselected package dirmngr.
#17 8.283 Preparing to unpack .../099-dirmngr_2.2.35-3ubuntu1_arm64.deb ...
#17 8.302 Unpacking dirmngr (2.2.35-3ubuntu1) ...
#17 8.326 Selecting previously unselected package libfakeroot:arm64.
#17 8.328 Preparing to unpack .../100-libfakeroot_1.29-1ubuntu1_arm64.deb ...
#17 8.329 Unpacking libfakeroot:arm64 (1.29-1ubuntu1) ...
#17 8.345 Selecting previously unselected package fakeroot.
#17 8.347 Preparing to unpack .../101-fakeroot_1.29-1ubuntu1_arm64.deb ...
#17 8.348 Unpacking fakeroot (1.29-1ubuntu1) ...
#17 8.367 Selecting previously unselected package fonts-dejavu-core.
#17 8.369 Preparing to unpack .../102-fonts-dejavu-core_2.37-2build1_all.deb ...
#17 8.370 Unpacking fonts-dejavu-core (2.37-2build1) ...
#17 8.458 Selecting previously unselected package fontconfig-config.
#17 8.460 Preparing to unpack .../103-fontconfig-config_2.13.1-4.4ubuntu1_all.deb ...
#17 8.461 Unpacking fontconfig-config (2.13.1-4.4ubuntu1) ...
#17 8.484 Selecting previously unselected package libcurl3-gnutls:arm64.
#17 8.486 Preparing to unpack .../104-libcurl3-gnutls_7.85.0-1ubuntu0.5_arm64.deb ...
#17 8.487 Unpacking libcurl3-gnutls:arm64 (7.85.0-1ubuntu0.5) ...
#17 8.509 Selecting previously unselected package liberror-perl.
#17 8.510 Preparing to unpack .../105-liberror-perl_0.17029-1_all.deb ...
#17 8.511 Unpacking liberror-perl (0.17029-1) ...
#17 8.531 Selecting previously unselected package git-man.
#17 8.534 Preparing to unpack .../106-git-man_1%3a2.37.2-1ubuntu1.4_all.deb ...
#17 8.534 Unpacking git-man (1:2.37.2-1ubuntu1.4) ...
#17 8.560 Selecting previously unselected package git.
#17 8.562 Preparing to unpack .../107-git_1%3a2.37.2-1ubuntu1.4_arm64.deb ...
#17 8.570 Unpacking git (1:2.37.2-1ubuntu1.4) ...
#17 8.684 Selecting previously unselected package gnupg-l10n.
#17 8.686 Preparing to unpack .../108-gnupg-l10n_2.2.35-3ubuntu1_all.deb ...
#17 8.686 Unpacking gnupg-l10n (2.2.35-3ubuntu1) ...
#17 8.706 Selecting previously unselected package gnupg-utils.
#17 8.708 Preparing to unpack .../109-gnupg-utils_2.2.35-3ubuntu1_arm64.deb ...
#17 8.708 Unpacking gnupg-utils (2.2.35-3ubuntu1) ...
#17 8.731 Selecting previously unselected package gpg.
#17 8.733 Preparing to unpack .../110-gpg_2.2.35-3ubuntu1_arm64.deb ...
#17 8.733 Unpacking gpg (2.2.35-3ubuntu1) ...
#17 8.755 Selecting previously unselected package pinentry-curses.
#17 8.757 Preparing to unpack .../111-pinentry-curses_1.2.0-2ubuntu1_arm64.deb ...
#17 8.758 Unpacking pinentry-curses (1.2.0-2ubuntu1) ...
#17 8.778 Selecting previously unselected package gpg-agent.
#17 8.781 Preparing to unpack .../112-gpg-agent_2.2.35-3ubuntu1_arm64.deb ...
#17 8.781 Unpacking gpg-agent (2.2.35-3ubuntu1) ...
#17 8.803 Selecting previously unselected package gpg-wks-client.
#17 8.805 Preparing to unpack .../113-gpg-wks-client_2.2.35-3ubuntu1_arm64.deb ...
#17 8.806 Unpacking gpg-wks-client (2.2.35-3ubuntu1) ...
#17 8.824 Selecting previously unselected package gpg-wks-server.
#17 8.826 Preparing to unpack .../114-gpg-wks-server_2.2.35-3ubuntu1_arm64.deb ...
#17 8.826 Unpacking gpg-wks-server (2.2.35-3ubuntu1) ...
#17 8.845 Selecting previously unselected package gpgsm.
#17 8.847 Preparing to unpack .../115-gpgsm_2.2.35-3ubuntu1_arm64.deb ...
#17 8.848 Unpacking gpgsm (2.2.35-3ubuntu1) ...
#17 8.867 Selecting previously unselected package gnupg.
#17 8.868 Preparing to unpack .../116-gnupg_2.2.35-3ubuntu1_all.deb ...
#17 8.869 Unpacking gnupg (2.2.35-3ubuntu1) ...
#17 8.887 Selecting previously unselected package libalgorithm-diff-perl.
#17 8.889 Preparing to unpack .../117-libalgorithm-diff-perl_1.201-1_all.deb ...
#17 8.889 Unpacking libalgorithm-diff-perl (1.201-1) ...
#17 8.912 Selecting previously unselected package libalgorithm-diff-xs-perl:arm64.
#17 8.914 Preparing to unpack .../118-libalgorithm-diff-xs-perl_0.04-7_arm64.deb ...
#17 8.915 Unpacking libalgorithm-diff-xs-perl:arm64 (0.04-7) ...
#17 8.932 Selecting previously unselected package libalgorithm-merge-perl.
#17 8.934 Preparing to unpack .../119-libalgorithm-merge-perl_0.08-4_all.deb ...
#17 8.934 Unpacking libalgorithm-merge-perl (0.08-4) ...
#17 8.952 Selecting previously unselected package libfreetype6:arm64.
#17 8.954 Preparing to unpack .../120-libfreetype6_2.12.1+dfsg-3_arm64.deb ...
#17 8.954 Unpacking libfreetype6:arm64 (2.12.1+dfsg-3) ...
#17 8.978 Selecting previously unselected package libfontconfig1:arm64.
#17 8.980 Preparing to unpack .../121-libfontconfig1_2.13.1-4.4ubuntu1_arm64.deb ...
#17 8.981 Unpacking libfontconfig1:arm64 (2.13.1-4.4ubuntu1) ...
#17 8.999 Selecting previously unselected package libjpeg-turbo8:arm64.
#17 9.001 Preparing to unpack .../122-libjpeg-turbo8_2.1.2-0ubuntu1_arm64.deb ...
#17 9.002 Unpacking libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#17 9.021 Selecting previously unselected package libjpeg8:arm64.
#17 9.023 Preparing to unpack .../123-libjpeg8_8c-2ubuntu10_arm64.deb ...
#17 9.024 Unpacking libjpeg8:arm64 (8c-2ubuntu10) ...
#17 9.039 Selecting previously unselected package libdeflate0:arm64.
#17 9.041 Preparing to unpack .../124-libdeflate0_1.12-1_arm64.deb ...
#17 9.041 Unpacking libdeflate0:arm64 (1.12-1) ...
#17 9.059 Selecting previously unselected package libjbig0:arm64.
#17 9.061 Preparing to unpack .../125-libjbig0_2.1-3.1ubuntu0.22.10.1_arm64.deb ...
#17 9.062 Unpacking libjbig0:arm64 (2.1-3.1ubuntu0.22.10.1) ...
#17 9.079 Selecting previously unselected package liblerc3:arm64.
#17 9.082 Preparing to unpack .../126-liblerc3_3.0+ds-1ubuntu1_arm64.deb ...
#17 9.082 Unpacking liblerc3:arm64 (3.0+ds-1ubuntu1) ...
#17 9.103 Selecting previously unselected package libwebp7:arm64.
#17 9.105 Preparing to unpack .../127-libwebp7_1.2.2-2_arm64.deb ...
#17 9.105 Unpacking libwebp7:arm64 (1.2.2-2) ...
#17 9.127 Selecting previously unselected package libtiff5:arm64.
#17 9.129 Preparing to unpack .../128-libtiff5_4.4.0-4ubuntu3.3_arm64.deb ...
#17 9.130 Unpacking libtiff5:arm64 (4.4.0-4ubuntu3.3) ...
#17 9.150 Selecting previously unselected package libxpm4:arm64.
#17 9.152 Preparing to unpack .../129-libxpm4_1%3a3.5.12-1ubuntu0.22.10.1_arm64.deb ...
#17 9.152 Unpacking libxpm4:arm64 (1:3.5.12-1ubuntu0.22.10.1) ...
#17 9.170 Selecting previously unselected package libgd3:arm64.
#17 9.173 Preparing to unpack .../130-libgd3_2.3.3-6_arm64.deb ...
#17 9.174 Unpacking libgd3:arm64 (2.3.3-6) ...
#17 9.192 Selecting previously unselected package libc-devtools.
#17 9.193 Preparing to unpack .../131-libc-devtools_2.36-0ubuntu4_arm64.deb ...
#17 9.194 Unpacking libc-devtools (2.36-0ubuntu4) ...
#17 9.212 Selecting previously unselected package libcap-dev:arm64.
#17 9.213 Preparing to unpack .../132-libcap-dev_1%3a2.44-1build3_arm64.deb ...
#17 9.214 Unpacking libcap-dev:arm64 (1:2.44-1build3) ...
#17 9.234 Selecting previously unselected package libfile-fcntllock-perl.
#17 9.235 Preparing to unpack .../133-libfile-fcntllock-perl_0.22-4_arm64.deb ...
#17 9.236 Unpacking libfile-fcntllock-perl (0.22-4) ...
#17 9.256 Selecting previously unselected package libldap-common.
#17 9.257 Preparing to unpack .../134-libldap-common_2.5.14+dfsg-0ubuntu0.22.10.1_all.deb ...
#17 9.258 Unpacking libldap-common (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#17 9.276 Selecting previously unselected package libsasl2-modules:arm64.
#17 9.278 Preparing to unpack .../135-libsasl2-modules_2.1.28+dfsg-6ubuntu2_arm64.deb ...
#17 9.286 Unpacking libsasl2-modules:arm64 (2.1.28+dfsg-6ubuntu2) ...
#17 9.309 Selecting previously unselected package manpages-dev.
#17 9.311 Preparing to unpack .../136-manpages-dev_5.13-1_all.deb ...
#17 9.312 Unpacking manpages-dev (5.13-1) ...
#17 9.398 Setting up libksba8:arm64 (1.6.0-3ubuntu1.1) ...
#17 9.399 Setting up libexpat1:arm64 (2.4.8-2ubuntu0.22.10.1) ...
#17 9.400 Setting up libxau6:arm64 (1:1.0.9-1build5) ...
#17 9.402 Setting up libkeyutils1:arm64 (1.6.3-1) ...
#17 9.403 Setting up lto-disabled-list (35) ...
#17 9.404 Setting up libpsl5:arm64 (0.21.0-1.2build2) ...
#17 9.406 Setting up manpages (5.13-1) ...
#17 9.407 Setting up libtirpc-common (1.3.3+ds-1) ...
#17 9.409 Setting up libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#17 9.410 Setting up libbrotli1:arm64 (1.0.9-2build6) ...
#17 9.411 Setting up libsqlite3-0:arm64 (3.39.3-1) ...
#17 9.412 Setting up binutils-common:arm64 (2.39-3ubuntu1.1) ...
#17 9.413 Setting up libssl3:arm64 (3.0.5-2ubuntu2.1) ...
#17 9.488 Setting up libnghttp2-14:arm64 (1.49.0-1) ...
#17 9.490 Setting up libdeflate0:arm64 (1.12-1) ...
#17 9.491 Setting up less (590-1ubuntu0.22.10.1) ...
#17 9.497 Setting up linux-libc-dev:arm64 (5.19.0-38.39) ...
#17 9.499 Setting up libctf-nobfd0:arm64 (2.39-3ubuntu1.1) ...
#17 9.500 Setting up libnpth0:arm64 (1.6-3build2) ...
#17 9.501 Setting up krb5-locales (1.20-1ubuntu0.1) ...
#17 9.502 Setting up libassuan0:arm64 (2.5.5-4) ...
#17 9.504 Setting up libgomp1:arm64 (12.2.0-3ubuntu1) ...
#17 9.505 Setting up perl-modules-5.34 (5.34.0-5ubuntu1.1) ...
#17 9.506 Setting up bzip2 (1.0.8-5build1) ...
#17 9.508 Setting up libldap-common (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#17 9.509 Setting up libjbig0:arm64 (2.1-3.1ubuntu0.22.10.1) ...
#17 9.511 Setting up libfakeroot:arm64 (1.29-1ubuntu1) ...
#17 9.512 Setting up libkrb5support0:arm64 (1.20-1ubuntu0.1) ...
#17 9.514 Setting up libsasl2-modules-db:arm64 (2.1.28+dfsg-6ubuntu2) ...
#17 9.515 Setting up fakeroot (1.29-1ubuntu1) ...
#17 9.518 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
#17 9.518 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 9.518 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 9.518 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 9.518 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 9.518 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 9.518 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 9.518 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 9.519 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 9.522 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
#17 9.524 Setting up libx11-data (2:1.8.1-2) ...
#17 9.525 Setting up make (4.3-4.1build1) ...
#17 9.527 Setting up libmpfr6:arm64 (4.1.0-3build3) ...
#17 9.529 Setting up gnupg-l10n (2.2.35-3ubuntu1) ...
#17 9.530 Setting up librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#17 9.532 Setting up liblerc3:arm64 (3.0+ds-1ubuntu1) ...
#17 9.534 Setting up xz-utils (5.2.5-2.1) ...
#17 9.537 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#17 9.537 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 9.538 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 9.538 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 9.538 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 9.538 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 9.538 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 9.538 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 9.538 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 9.539 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 9.539 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 9.542 Setting up libpng16-16:arm64 (1.6.38-2) ...
#17 9.543 Setting up libmpc3:arm64 (1.2.1-2build1) ...
#17 9.544 Setting up libatomic1:arm64 (12.2.0-3ubuntu1) ...
#17 9.545 Setting up patch (2.7.6-7build2) ...
#17 9.547 Setting up sudo (1.9.11p3-1ubuntu1.2) ...
#17 9.556 Setting up fonts-dejavu-core (2.37-2build1) ...
#17 9.564 Setting up ucf (3.0043) ...
#17 9.640 Setting up libk5crypto3:arm64 (1.20-1ubuntu0.1) ...
#17 9.642 Setting up libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#17 9.644 Setting up libsasl2-2:arm64 (2.1.28+dfsg-6ubuntu2) ...
#17 9.646 Setting up libwebp7:arm64 (1.2.2-2) ...
#17 9.648 Setting up libubsan1:arm64 (12.2.0-3ubuntu1) ...
#17 9.649 Setting up libmd0:arm64 (1.0.4-2) ...
#17 9.650 Setting up libhwasan0:arm64 (12.2.0-3ubuntu1) ...
#17 9.652 Setting up libcrypt-dev:arm64 (1:4.4.28-2) ...
#17 9.659 Setting up libasan8:arm64 (12.2.0-3ubuntu1) ...
#17 9.661 Setting up git-man (1:2.37.2-1ubuntu1.4) ...
#17 9.662 Setting up netbase (6.3) ...
#17 9.668 Setting up libkrb5-3:arm64 (1.20-1ubuntu0.1) ...
#17 9.669 Setting up libtsan2:arm64 (12.2.0-3ubuntu1) ...
#17 9.671 Setting up libbinutils:arm64 (2.39-3ubuntu1.1) ...
#17 9.672 Setting up libfido2-1:arm64 (1.11.0-1) ...
#17 9.673 Setting up libisl23:arm64 (0.25-1) ...
#17 9.675 Setting up libc-dev-bin (2.36-0ubuntu4) ...
#17 9.676 Setting up openssl (3.0.5-2ubuntu2.1) ...
#17 9.679 Setting up libbsd0:arm64 (0.11.6-1) ...
#17 9.681 Setting up libcap-dev:arm64 (1:2.44-1build3) ...
#17 9.682 Setting up readline-common (8.2-1) ...
#17 9.687 Setting up publicsuffix (20220811.1734-1) ...
#17 9.688 Setting up libcc1-0:arm64 (12.2.0-3ubuntu1) ...
#17 9.690 Setting up liblocale-gettext-perl (1.07-4build3) ...
#17 9.691 Setting up liblsan0:arm64 (12.2.0-3ubuntu1) ...
#17 9.692 Setting up libitm1:arm64 (12.2.0-3ubuntu1) ...
#17 9.694 Setting up libgdbm6:arm64 (1.23-1) ...
#17 9.695 Setting up libctf0:arm64 (2.39-3ubuntu1.1) ...
#17 9.696 Setting up libjpeg8:arm64 (8c-2ubuntu10) ...
#17 9.698 Setting up pinentry-curses (1.2.0-2ubuntu1) ...
#17 9.710 Setting up manpages-dev (5.13-1) ...
#17 9.711 Setting up libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#17 9.712 Setting up cpp-12 (12.2.0-3ubuntu1) ...
#17 9.713 Setting up libxcb1:arm64 (1.15-1) ...
#17 9.715 Setting up fontconfig-config (2.13.1-4.4ubuntu1) ...
#17 9.738 Setting up libedit2:arm64 (3.1-20210910-1build1) ...
#17 9.739 Setting up libreadline8:arm64 (8.2-1) ...
#17 9.741 Setting up libsasl2-modules:arm64 (2.1.28+dfsg-6ubuntu2) ...
#17 9.749 Setting up libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#17 9.750 Setting up ca-certificates (20211016ubuntu0.22.10.1) ...
#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:4f18ff91cadb8a9e53f5fd34fb32f28f98fb40ea5f8651a8f233758d200524df
#14 0.601 Reading package lists...
#14 1.184 Building dependency tree...
#14 1.329 Reading state information...
#14 1.522 The following additional packages will be installed:
#14 1.522   binutils binutils-aarch64-linux-gnu binutils-common bzip2 ca-certificates
#14 1.523   cpp cpp-12 dirmngr dpkg-dev fakeroot fontconfig-config fonts-dejavu-core g++
#14 1.523   g++-12 gcc gcc-12 git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent
#14 1.523   gpg-wks-client gpg-wks-server gpgconf gpgsm krb5-locales less
#14 1.523   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
#14 1.523   libasan8 libassuan0 libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin
#14 1.523   libc-devtools libc6-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0
#14 1.523   libctf0 libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2
#14 1.523   liberror-perl libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl
#14 1.523   libfontconfig1 libfreetype6 libgcc-12-dev libgd3 libgdbm-compat4 libgdbm6
#14 1.523   libgomp1 libgprofng0 libgssapi-krb5-2 libhwasan0 libisl23 libitm1 libjbig0
#14 1.523   libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
#14 1.523   libksba8 libldap-2.5-0 libldap-common liblerc3 liblocale-gettext-perl
#14 1.523   liblsan0 libmd0 libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libnsl2
#14 1.523   libperl5.34 libpng16-16 libpopt0 libpsl5 libpthread-stubs0-dev libreadline8
#14 1.523   librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0
#14 1.523   libssh-4 libssl3 libstdc++-12-dev libtiff5 libtirpc-common libtirpc-dev
#14 1.523   libtirpc3 libtsan2 libubsan1 libwebp7 libx11-6 libx11-data libxau-dev
#14 1.523   libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext6 libxmuu1 libxpm4
#14 1.523   linux-libc-dev lto-disabled-list make manpages manpages-dev netbase
#14 1.524   openssh-client openssl patch perl perl-modules-5.34 pinentry-curses
#14 1.524   publicsuffix readline-common rpcsvc-proto ucf x11proto-dev xauth
#14 1.524   xorg-sgml-doctools xtrans-dev xz-utils
#14 1.525 Suggested packages:
#14 1.525   binutils-doc bzip2-doc cpp-doc gcc-12-locales cpp-12-doc dbus-user-session
#14 1.525   libpam-systemd pinentry-gnome3 tor debian-keyring gcc-12-doc gcc-multilib
#14 1.525   autoconf automake libtool flex bison gdb gcc-doc gettext-base git-daemon-run
#14 1.525   | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs
#14 1.525   git-mediawiki git-svn parcimonie xloadimage scdaemon glibc-doc bzr
#14 1.525   libgd-tools gdbm-l10n krb5-doc krb5-user libsasl2-modules-gssapi-mit
#14 1.525   | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
#14 1.525   libsasl2-modules-sql libstdc++-12-doc libx11-doc libxcb-doc make-doc
#14 1.525   man-browser hunspell keychain libpam-ssh monkeysphere ssh-askpass ed
#14 1.525   diffutils-doc perl-doc libterm-readline-gnu-perl
#14 1.525   | libterm-readline-perl-perl libtap-harness-archive-perl pinentry-doc
#14 1.525   readline-doc openssh-server python3 python3-braceexpand zip
#14 1.657 The following NEW packages will be installed:
#14 1.657   binutils binutils-aarch64-linux-gnu binutils-common bubblewrap
#14 1.657   build-essential bzip2 ca-certificates cpp cpp-12 curl dirmngr dpkg-dev
#14 1.657   fakeroot fontconfig-config fonts-dejavu-core g++ g++-12 gcc gcc-12 git
#14 1.657   git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client
#14 1.657   gpg-wks-server gpgconf gpgsm krb5-locales less libalgorithm-diff-perl
#14 1.657   libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan8 libassuan0
#14 1.657   libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin libc-devtools
#14 1.657   libc6-dev libcap-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0
#14 1.657   libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2 liberror-perl
#14 1.657   libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl libfontconfig1
#14 1.657   libfreetype6 libgcc-12-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1
#14 1.657   libgprofng0 libgssapi-krb5-2 libhwasan0 libisl23 libitm1 libjbig0
#14 1.657   libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
#14 1.657   libksba8 libldap-2.5-0 libldap-common liblerc3 liblocale-gettext-perl
#14 1.657   liblsan0 libmd0 libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libnsl2
#14 1.657   libperl5.34 libpng16-16 libpopt0 libpsl5 libpthread-stubs0-dev libreadline8
#14 1.658   librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0
#14 1.658   libssh-4 libssl3 libstdc++-12-dev libtiff5 libtirpc-common libtirpc-dev
#14 1.658   libtirpc3 libtsan2 libubsan1 libwebp7 libx11-6 libx11-data libx11-dev
#14 1.658   libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext6
#14 1.658   libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages manpages-dev
#14 1.658   nano netbase openssh-client openssl patch perl perl-modules-5.34
#14 1.658   pinentry-curses publicsuffix readline-common rpcsvc-proto rsync sudo ucf
#14 1.658   unzip x11proto-dev xauth xorg-sgml-doctools xtrans-dev xz-utils
#14 1.693 0 upgraded, 150 newly installed, 0 to remove and 0 not upgraded.
#14 1.693 Need to get 95.5 MB of archives.
#14 1.693 After this operation, 365 MB of additional disk space will be used.
#14 1.693 Get:1 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liblocale-gettext-perl arm64 1.07-4build3 [16.9 kB]
#14 1.708 Get:2 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libpopt0 arm64 1.18-3build1 [28.0 kB]
#14 1.711 Get:3 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libssl3 arm64 3.0.5-2ubuntu2.1 [1755 kB]
#14 1.840 Get:4 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 rsync arm64 3.2.7-0ubuntu0.22.10.1 [426 kB]
#14 1.873 Get:5 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 perl-modules-5.34 all 5.34.0-5ubuntu1.1 [2952 kB]
#14 1.951 Get:6 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgdbm6 arm64 1.23-1 [34.1 kB]
#14 1.952 Get:7 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgdbm-compat4 arm64 1.23-1 [6294 B]
#14 1.952 Get:8 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libperl5.34 arm64 5.34.0-5ubuntu1.1 [4618 kB]
#14 2.033 Get:9 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 perl arm64 5.34.0-5ubuntu1.1 [231 kB]
#14 2.042 Get:10 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 openssl arm64 3.0.5-2ubuntu2.1 [1157 kB]
#14 2.060 Get:11 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 ca-certificates all 20211016ubuntu0.22.10.1 [143 kB]
#14 2.076 Get:12 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 krb5-locales all 1.20-1ubuntu0.1 [11.6 kB]
#14 2.085 Get:13 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 less arm64 590-1ubuntu0.22.10.1 [140 kB]
#14 2.104 Get:14 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libmd0 arm64 1.0.4-2 [23.7 kB]
#14 2.105 Get:15 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libbsd0 arm64 0.11.6-1 [43.6 kB]
#14 2.108 Get:16 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libexpat1 arm64 2.4.8-2ubuntu0.22.10.1 [72.1 kB]
#14 2.111 Get:17 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libkrb5support0 arm64 1.20-1ubuntu0.1 [31.3 kB]
#14 2.112 Get:18 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libk5crypto3 arm64 1.20-1ubuntu0.1 [85.0 kB]
#14 2.114 Get:19 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libkeyutils1 arm64 1.6.3-1 [10.6 kB]
#14 2.115 Get:20 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libkrb5-3 arm64 1.20-1ubuntu0.1 [345 kB]
#14 2.122 Get:21 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libgssapi-krb5-2 arm64 1.20-1ubuntu0.1 [139 kB]
#14 2.123 Get:22 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtirpc-common all 1.3.3+ds-1 [7790 B]
#14 2.138 Get:23 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtirpc3 arm64 1.3.3+ds-1 [82.1 kB]
#14 2.168 Get:24 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnsl2 arm64 1.3.0-2build2 [41.4 kB]
#14 2.178 Get:25 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 readline-common all 8.2-1 [55.1 kB]
#14 2.180 Get:26 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libreadline8 arm64 8.2-1 [149 kB]
#14 2.188 Get:27 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsqlite3-0 arm64 3.39.3-1 [644 kB]
#14 2.202 Get:28 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 netbase all 6.3 [12.9 kB]
#14 2.202 Get:29 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 sudo arm64 1.9.11p3-1ubuntu1.2 [822 kB]
#14 2.222 Get:30 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 ucf all 3.0043 [56.1 kB]
#14 2.223 Get:31 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcbor0.8 arm64 0.8.0-2ubuntu1 [24.3 kB]
#14 2.224 Get:32 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libedit2 arm64 3.1-20210910-1build1 [96.0 kB]
#14 2.226 Get:33 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfido2-1 arm64 1.11.0-1 [81.5 kB]
#14 2.242 Get:34 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnghttp2-14 arm64 1.49.0-1 [72.1 kB]
#14 2.268 Get:35 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libpng16-16 arm64 1.6.38-2 [182 kB]
#14 2.281 Get:36 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libpsl5 arm64 0.21.0-1.2build2 [58.3 kB]
#14 2.285 Get:37 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxau6 arm64 1:1.0.9-1build5 [7624 B]
#14 2.285 Get:38 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxdmcp6 arm64 1:1.1.3-0ubuntu5 [10.8 kB]
#14 2.286 Get:39 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxcb1 arm64 1.15-1 [47.6 kB]
#14 2.286 Get:40 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libx11-data all 2:1.8.1-2 [118 kB]
#14 2.300 Get:41 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libx11-6 arm64 2:1.8.1-2 [646 kB]
#14 2.312 Get:42 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxext6 arm64 2:1.3.4-1build1 [31.1 kB]
#14 2.313 Get:43 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxmuu1 arm64 2:1.1.3-3 [10.4 kB]
#14 2.313 Get:44 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 manpages all 5.13-1 [1391 kB]
#14 2.369 Get:45 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 nano arm64 6.4-1 [280 kB]
#14 2.416 Get:46 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 openssh-client arm64 1:9.0p1-1ubuntu7.1 [831 kB]
#14 2.482 Get:47 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 publicsuffix all 20220811.1734-1 [130 kB]
#14 2.485 Get:48 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 xauth arm64 1:1.1.1-1 [27.1 kB]
#14 2.486 Get:49 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 xz-utils arm64 5.2.5-2.1 [83.5 kB]
#14 2.487 Get:50 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 binutils-common arm64 2.39-3ubuntu1.1 [225 kB]
#14 2.489 Get:51 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libbinutils arm64 2.39-3ubuntu1.1 [709 kB]
#14 2.495 Get:52 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libctf-nobfd0 arm64 2.39-3ubuntu1.1 [96.7 kB]
#14 2.496 Get:53 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libctf0 arm64 2.39-3ubuntu1.1 [92.9 kB]
#14 2.497 Get:54 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libgprofng0 arm64 2.39-3ubuntu1.1 [791 kB]
#14 2.503 Get:55 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.39-3ubuntu1.1 [3133 kB]
#14 2.579 Get:56 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 binutils arm64 2.39-3ubuntu1.1 [3272 B]
#14 2.587 Get:57 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 bubblewrap arm64 0.6.2-1 [45.5 kB]
#14 2.598 Get:58 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libc-dev-bin arm64 2.36-0ubuntu4 [19.5 kB]
#14 2.602 Get:59 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 linux-libc-dev arm64 5.19.0-38.39 [1345 kB]
#14 2.678 Get:60 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcrypt-dev arm64 1:4.4.28-2 [120 kB]
#14 2.680 Get:61 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 rpcsvc-proto arm64 1.4.2-0ubuntu6 [65.4 kB]
#14 2.681 Get:62 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtirpc-dev arm64 1.3.3+ds-1 [199 kB]
#14 2.683 Get:63 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnsl-dev arm64 1.3.0-2build2 [72.1 kB]
#14 2.684 Get:64 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libc6-dev arm64 2.36-0ubuntu4 [1547 kB]
#14 2.708 Get:65 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libisl23 arm64 0.25-1 [697 kB]
#14 2.714 Get:66 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libmpfr6 arm64 4.1.0-3build3 [245 kB]
#14 2.730 Get:67 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libmpc3 arm64 1.2.1-2build1 [48.1 kB]
#14 2.751 Get:68 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 cpp-12 arm64 12.2.0-3ubuntu1 [9579 kB]
#14 2.999 Get:69 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 cpp arm64 4:12.2.0-1ubuntu1 [27.3 kB]
#14 2.999 Get:70 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcc1-0 arm64 12.2.0-3ubuntu1 [44.1 kB]
#14 3.000 Get:71 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgomp1 arm64 12.2.0-3ubuntu1 [122 kB]
#14 3.001 Get:72 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libitm1 arm64 12.2.0-3ubuntu1 [27.9 kB]
#14 3.002 Get:73 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libatomic1 arm64 12.2.0-3ubuntu1 [10.7 kB]
#14 3.002 Get:74 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libasan8 arm64 12.2.0-3ubuntu1 [2375 kB]
#14 3.061 Get:75 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liblsan0 arm64 12.2.0-3ubuntu1 [1027 kB]
#14 3.085 Get:76 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libtsan2 arm64 12.2.0-3ubuntu1 [2514 kB]
#14 3.154 Get:77 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libubsan1 arm64 12.2.0-3ubuntu1 [957 kB]
#14 3.187 Get:78 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libhwasan0 arm64 12.2.0-3ubuntu1 [1109 kB]
#14 3.295 Get:79 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgcc-12-dev arm64 12.2.0-3ubuntu1 [1157 kB]
#14 3.339 Get:80 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gcc-12 arm64 12.2.0-3ubuntu1 [19.1 MB]
#14 3.655 Get:81 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gcc arm64 4:12.2.0-1ubuntu1 [5116 B]
#14 3.655 Get:82 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libstdc++-12-dev arm64 12.2.0-3ubuntu1 [2154 kB]
#14 3.691 Get:83 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 g++-12 arm64 12.2.0-3ubuntu1 [10.9 MB]
#14 3.850 Get:84 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 g++ arm64 4:12.2.0-1ubuntu1 [1396 B]
#14 3.850 Get:85 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 make arm64 4.3-4.1build1 [177 kB]
#14 3.852 Get:86 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libdpkg-perl all 1.21.9ubuntu1 [237 kB]
#14 3.854 Get:87 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 bzip2 arm64 1.0.8-5build1 [34.6 kB]
#14 3.854 Get:88 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 patch arm64 2.7.6-7build2 [105 kB]
#14 3.870 Get:89 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 lto-disabled-list all 35 [12.2 kB]
#14 3.878 Get:90 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 dpkg-dev all 1.21.9ubuntu1 [1070 kB]
#14 3.969 Get:91 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 build-essential arm64 12.9ubuntu3 [4740 B]
#14 3.969 Get:92 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libbrotli1 arm64 1.0.9-2build6 [314 kB]
#14 3.975 Get:93 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsasl2-modules-db arm64 2.1.28+dfsg-6ubuntu2 [21.0 kB]
#14 3.976 Get:94 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsasl2-2 arm64 2.1.28+dfsg-6ubuntu2 [57.3 kB]
#14 3.977 Get:95 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libldap-2.5-0 arm64 2.5.14+dfsg-0ubuntu0.22.10.1 [180 kB]
#14 3.978 Get:96 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 librtmp1 arm64 2.4+20151223.gitfa8646d.1-2build4 [59.2 kB]
#14 3.979 Get:97 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libssh-4 arm64 0.9.6-2build1 [184 kB]
#14 3.981 Get:98 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libcurl4 arm64 7.85.0-1ubuntu0.5 [288 kB]
#14 3.988 Get:99 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 curl arm64 7.85.0-1ubuntu0.5 [196 kB]
#14 4.006 Get:100 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libassuan0 arm64 2.5.5-4 [35.3 kB]
#14 4.024 Get:101 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpgconf arm64 2.2.35-3ubuntu1 [92.4 kB]
#14 4.036 Get:102 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libksba8 arm64 1.6.0-3ubuntu1.1 [116 kB]
#14 4.044 Get:103 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libnpth0 arm64 1.6-3build2 [8156 B]
#14 4.044 Get:104 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 dirmngr arm64 2.2.35-3ubuntu1 [295 kB]
#14 4.053 Get:105 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfakeroot arm64 1.29-1ubuntu1 [30.8 kB]
#14 4.054 Get:106 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 fakeroot arm64 1.29-1ubuntu1 [60.1 kB]
#14 4.055 Get:107 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
#14 4.069 Get:108 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 fontconfig-config all 2.13.1-4.4ubuntu1 [28.2 kB]
#14 4.070 Get:109 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libcurl3-gnutls arm64 7.85.0-1ubuntu0.5 [282 kB]
#14 4.087 Get:110 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liberror-perl all 0.17029-1 [26.5 kB]
#14 4.102 Get:111 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 git-man all 1:2.37.2-1ubuntu1.4 [975 kB]
#14 4.205 Get:112 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 git arm64 1:2.37.2-1ubuntu1.4 [3355 kB]
#14 4.349 Get:113 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gnupg-l10n all 2.2.35-3ubuntu1 [53.8 kB]
#14 4.350 Get:114 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gnupg-utils arm64 2.2.35-3ubuntu1 [301 kB]
#14 4.353 Get:115 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg arm64 2.2.35-3ubuntu1 [508 kB]
#14 4.357 Get:116 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 pinentry-curses arm64 1.2.0-2ubuntu1 [33.7 kB]
#14 4.357 Get:117 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg-agent arm64 2.2.35-3ubuntu1 [209 kB]
#14 4.359 Get:118 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg-wks-client arm64 2.2.35-3ubuntu1 [61.8 kB]
#14 4.360 Get:119 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpg-wks-server arm64 2.2.35-3ubuntu1 [57.2 kB]
#14 4.360 Get:120 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gpgsm arm64 2.2.35-3ubuntu1 [195 kB]
#14 4.362 Get:121 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 gnupg all 2.2.35-3ubuntu1 [318 kB]
#14 4.384 Get:122 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
#14 4.404 Get:123 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libalgorithm-diff-xs-perl arm64 0.04-7 [11.6 kB]
#14 4.405 Get:124 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libalgorithm-merge-perl all 0.08-4 [12.0 kB]
#14 4.407 Get:125 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfreetype6 arm64 2.12.1+dfsg-3 [381 kB]
#14 4.431 Get:126 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfontconfig1 arm64 2.13.1-4.4ubuntu1 [132 kB]
#14 4.434 Get:127 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libjpeg-turbo8 arm64 2.1.2-0ubuntu1 [129 kB]
#14 4.436 Get:128 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libjpeg8 arm64 8c-2ubuntu10 [2264 B]
#14 4.436 Get:129 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libdeflate0 arm64 1.12-1 [72.0 kB]
#14 4.438 Get:130 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libjbig0 arm64 2.1-3.1ubuntu0.22.10.1 [29.4 kB]
#14 4.438 Get:131 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 liblerc3 arm64 3.0+ds-1ubuntu1 [109 kB]
#14 4.440 Get:132 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libwebp7 arm64 1.2.2-2 [192 kB]
#14 4.456 Get:133 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libtiff5 arm64 4.4.0-4ubuntu3.3 [183 kB]
#14 4.491 Get:134 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libxpm4 arm64 1:3.5.12-1ubuntu0.22.10.1 [35.4 kB]
#14 4.493 Get:135 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libgd3 arm64 2.3.3-6 [119 kB]
#14 4.512 Get:136 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libc-devtools arm64 2.36-0ubuntu4 [27.4 kB]
#14 4.513 Get:137 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libcap-dev arm64 1:2.44-1build3 [40.2 kB]
#14 4.513 Get:138 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libfile-fcntllock-perl arm64 0.22-4 [33.6 kB]
#14 4.514 Get:139 http://ports.ubuntu.com/ubuntu-ports kinetic-updates/main arm64 libldap-common all 2.5.14+dfsg-0ubuntu0.22.10.1 [19.8 kB]
#14 4.514 Get:140 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libpthread-stubs0-dev arm64 0.4-1build2 [5496 B]
#14 4.514 Get:141 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libsasl2-modules arm64 2.1.28+dfsg-6ubuntu2 [69.3 kB]
#14 4.515 Get:142 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB]
#14 4.515 Get:143 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 x11proto-dev all 2022.1-1 [605 kB]
#14 4.540 Get:144 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxau-dev arm64 1:1.0.9-1build5 [10.1 kB]
#14 4.548 Get:145 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxdmcp-dev arm64 1:1.1.3-0ubuntu5 [26.4 kB]
#14 4.554 Get:146 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 xtrans-dev all 1.4.0-1 [68.9 kB]
#14 4.563 Get:147 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libxcb1-dev arm64 1.15-1 [89.6 kB]
#14 4.569 Get:148 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 libx11-dev arm64 2:1.8.1-2 [729 kB]
#14 4.586 Get:149 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 manpages-dev all 5.13-1 [2355 kB]
#14 4.623 Get:150 http://ports.ubuntu.com/ubuntu-ports kinetic/main arm64 unzip arm64 6.0-27ubuntu1 [170 kB]
#14 4.753 debconf: delaying package configuration, since apt-utils is not installed
#14 4.794 Fetched 95.5 MB in 3s (32.3 MB/s)
#14 4.812 Selecting previously unselected package liblocale-gettext-perl.
#14 4.812 (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 ... 4393 files and directories currently installed.)
#14 4.816 Preparing to unpack .../000-liblocale-gettext-perl_1.07-4build3_arm64.deb ...
#14 4.817 Unpacking liblocale-gettext-perl (1.07-4build3) ...
#14 4.831 Selecting previously unselected package libpopt0:arm64.
#14 4.832 Preparing to unpack .../001-libpopt0_1.18-3build1_arm64.deb ...
#14 4.833 Unpacking libpopt0:arm64 (1.18-3build1) ...
#14 4.847 Selecting previously unselected package libssl3:arm64.
#14 4.848 Preparing to unpack .../002-libssl3_3.0.5-2ubuntu2.1_arm64.deb ...
#14 4.849 Unpacking libssl3:arm64 (3.0.5-2ubuntu2.1) ...
#14 4.890 Selecting previously unselected package rsync.
#14 4.891 Preparing to unpack .../003-rsync_3.2.7-0ubuntu0.22.10.1_arm64.deb ...
#14 4.892 Unpacking rsync (3.2.7-0ubuntu0.22.10.1) ...
#14 4.912 Selecting previously unselected package perl-modules-5.34.
#14 4.913 Preparing to unpack .../004-perl-modules-5.34_5.34.0-5ubuntu1.1_all.deb ...
#14 4.913 Unpacking perl-modules-5.34 (5.34.0-5ubuntu1.1) ...
#14 5.108 Selecting previously unselected package libgdbm6:arm64.
#14 5.109 Preparing to unpack .../005-libgdbm6_1.23-1_arm64.deb ...
#14 5.110 Unpacking libgdbm6:arm64 (1.23-1) ...
#14 5.126 Selecting previously unselected package libgdbm-compat4:arm64.
#14 5.128 Preparing to unpack .../006-libgdbm-compat4_1.23-1_arm64.deb ...
#14 5.128 Unpacking libgdbm-compat4:arm64 (1.23-1) ...
#14 5.144 Selecting previously unselected package libperl5.34:arm64.
#14 5.145 Preparing to unpack .../007-libperl5.34_5.34.0-5ubuntu1.1_arm64.deb ...
#14 5.146 Unpacking libperl5.34:arm64 (5.34.0-5ubuntu1.1) ...
#14 5.317 Selecting previously unselected package perl.
#14 5.319 Preparing to unpack .../008-perl_5.34.0-5ubuntu1.1_arm64.deb ...
#14 5.327 Unpacking perl (5.34.0-5ubuntu1.1) ...
#14 5.352 Selecting previously unselected package openssl.
#14 5.353 Preparing to unpack .../009-openssl_3.0.5-2ubuntu2.1_arm64.deb ...
#14 5.353 Unpacking openssl (3.0.5-2ubuntu2.1) ...
#14 5.385 Selecting previously unselected package ca-certificates.
#14 5.386 Preparing to unpack .../010-ca-certificates_20211016ubuntu0.22.10.1_all.deb ...
#14 5.386 Unpacking ca-certificates (20211016ubuntu0.22.10.1) ...
#14 5.418 Selecting previously unselected package krb5-locales.
#14 5.419 Preparing to unpack .../011-krb5-locales_1.20-1ubuntu0.1_all.deb ...
#14 5.420 Unpacking krb5-locales (1.20-1ubuntu0.1) ...
#14 5.435 Selecting previously unselected package less.
#14 5.437 Preparing to unpack .../012-less_590-1ubuntu0.22.10.1_arm64.deb ...
#14 5.440 Unpacking less (590-1ubuntu0.22.10.1) ...
#14 5.458 Selecting previously unselected package libmd0:arm64.
#14 5.459 Preparing to unpack .../013-libmd0_1.0.4-2_arm64.deb ...
#14 5.460 Unpacking libmd0:arm64 (1.0.4-2) ...
#14 5.473 Selecting previously unselected package libbsd0:arm64.
#14 5.475 Preparing to unpack .../014-libbsd0_0.11.6-1_arm64.deb ...
#14 5.475 Unpacking libbsd0:arm64 (0.11.6-1) ...
#14 5.491 Selecting previously unselected package libexpat1:arm64.
#14 5.492 Preparing to unpack .../015-libexpat1_2.4.8-2ubuntu0.22.10.1_arm64.deb ...
#14 5.493 Unpacking libexpat1:arm64 (2.4.8-2ubuntu0.22.10.1) ...
#14 5.510 Selecting previously unselected package libkrb5support0:arm64.
#14 5.512 Preparing to unpack .../016-libkrb5support0_1.20-1ubuntu0.1_arm64.deb ...
#14 5.512 Unpacking libkrb5support0:arm64 (1.20-1ubuntu0.1) ...
#14 5.529 Selecting previously unselected package libk5crypto3:arm64.
#14 5.530 Preparing to unpack .../017-libk5crypto3_1.20-1ubuntu0.1_arm64.deb ...
#14 5.531 Unpacking libk5crypto3:arm64 (1.20-1ubuntu0.1) ...
#14 5.548 Selecting previously unselected package libkeyutils1:arm64.
#14 5.550 Preparing to unpack .../018-libkeyutils1_1.6.3-1_arm64.deb ...
#14 5.550 Unpacking libkeyutils1:arm64 (1.6.3-1) ...
#14 5.567 Selecting previously unselected package libkrb5-3:arm64.
#14 5.569 Preparing to unpack .../019-libkrb5-3_1.20-1ubuntu0.1_arm64.deb ...
#14 5.569 Unpacking libkrb5-3:arm64 (1.20-1ubuntu0.1) ...
#14 5.591 Selecting previously unselected package libgssapi-krb5-2:arm64.
#14 5.592 Preparing to unpack .../020-libgssapi-krb5-2_1.20-1ubuntu0.1_arm64.deb ...
#14 5.593 Unpacking libgssapi-krb5-2:arm64 (1.20-1ubuntu0.1) ...
#14 5.610 Selecting previously unselected package libtirpc-common.
#14 5.611 Preparing to unpack .../021-libtirpc-common_1.3.3+ds-1_all.deb ...
#14 5.612 Unpacking libtirpc-common (1.3.3+ds-1) ...
#14 5.626 Selecting previously unselected package libtirpc3:arm64.
#14 5.627 Preparing to unpack .../022-libtirpc3_1.3.3+ds-1_arm64.deb ...
#14 5.628 Unpacking libtirpc3:arm64 (1.3.3+ds-1) ...
#14 5.646 Selecting previously unselected package libnsl2:arm64.
#14 5.647 Preparing to unpack .../023-libnsl2_1.3.0-2build2_arm64.deb ...
#14 5.648 Unpacking libnsl2:arm64 (1.3.0-2build2) ...
#14 5.664 Selecting previously unselected package readline-common.
#14 5.665 Preparing to unpack .../024-readline-common_8.2-1_all.deb ...
#14 5.666 Unpacking readline-common (8.2-1) ...
#14 5.682 Selecting previously unselected package libreadline8:arm64.
#14 5.683 Preparing to unpack .../025-libreadline8_8.2-1_arm64.deb ...
#14 5.683 Unpacking libreadline8:arm64 (8.2-1) ...
#14 5.703 Selecting previously unselected package libsqlite3-0:arm64.
#14 5.704 Preparing to unpack .../026-libsqlite3-0_3.39.3-1_arm64.deb ...
#14 5.704 Unpacking libsqlite3-0:arm64 (3.39.3-1) ...
#14 5.731 Selecting previously unselected package netbase.
#14 5.732 Preparing to unpack .../027-netbase_6.3_all.deb ...
#14 5.732 Unpacking netbase (6.3) ...
#14 5.751 Selecting previously unselected package sudo.
#14 5.752 Preparing to unpack .../028-sudo_1.9.11p3-1ubuntu1.2_arm64.deb ...
#14 5.755 Unpacking sudo (1.9.11p3-1ubuntu1.2) ...
#14 5.790 Selecting previously unselected package ucf.
#14 5.791 Preparing to unpack .../029-ucf_3.0043_all.deb ...
#14 5.794 Moving old data out of the way
#14 5.795 Unpacking ucf (3.0043) ...
#14 5.816 Selecting previously unselected package libcbor0.8:arm64.
#14 5.818 Preparing to unpack .../030-libcbor0.8_0.8.0-2ubuntu1_arm64.deb ...
#14 5.818 Unpacking libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#14 5.834 Selecting previously unselected package libedit2:arm64.
#14 5.835 Preparing to unpack .../031-libedit2_3.1-20210910-1build1_arm64.deb ...
#14 5.836 Unpacking libedit2:arm64 (3.1-20210910-1build1) ...
#14 5.854 Selecting previously unselected package libfido2-1:arm64.
#14 5.855 Preparing to unpack .../032-libfido2-1_1.11.0-1_arm64.deb ...
#14 5.856 Unpacking libfido2-1:arm64 (1.11.0-1) ...
#14 5.874 Selecting previously unselected package libnghttp2-14:arm64.
#14 5.875 Preparing to unpack .../033-libnghttp2-14_1.49.0-1_arm64.deb ...
#14 5.875 Unpacking libnghttp2-14:arm64 (1.49.0-1) ...
#14 5.893 Selecting previously unselected package libpng16-16:arm64.
#14 5.894 Preparing to unpack .../034-libpng16-16_1.6.38-2_arm64.deb ...
#14 5.895 Unpacking libpng16-16:arm64 (1.6.38-2) ...
#14 5.912 Selecting previously unselected package libpsl5:arm64.
#14 5.913 Preparing to unpack .../035-libpsl5_0.21.0-1.2build2_arm64.deb ...
#14 5.914 Unpacking libpsl5:arm64 (0.21.0-1.2build2) ...
#14 5.931 Selecting previously unselected package libxau6:arm64.
#14 5.932 Preparing to unpack .../036-libxau6_1%3a1.0.9-1build5_arm64.deb ...
#14 5.933 Unpacking libxau6:arm64 (1:1.0.9-1build5) ...
#14 5.948 Selecting previously unselected package libxdmcp6:arm64.
#14 5.950 Preparing to unpack .../037-libxdmcp6_1%3a1.1.3-0ubuntu5_arm64.deb ...
#14 5.950 Unpacking libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#14 5.968 Selecting previously unselected package libxcb1:arm64.
#14 5.970 Preparing to unpack .../038-libxcb1_1.15-1_arm64.deb ...
#14 5.970 Unpacking libxcb1:arm64 (1.15-1) ...
#14 5.986 Selecting previously unselected package libx11-data.
#14 5.987 Preparing to unpack .../039-libx11-data_2%3a1.8.1-2_all.deb ...
#14 5.988 Unpacking libx11-data (2:1.8.1-2) ...
#14 6.032 Selecting previously unselected package libx11-6:arm64.
#14 6.033 Preparing to unpack .../040-libx11-6_2%3a1.8.1-2_arm64.deb ...
#14 6.033 Unpacking libx11-6:arm64 (2:1.8.1-2) ...
#14 6.062 Selecting previously unselected package libxext6:arm64.
#14 6.063 Preparing to unpack .../041-libxext6_2%3a1.3.4-1build1_arm64.deb ...
#14 6.064 Unpacking libxext6:arm64 (2:1.3.4-1build1) ...
#14 6.080 Selecting previously unselected package libxmuu1:arm64.
#14 6.081 Preparing to unpack .../042-libxmuu1_2%3a1.1.3-3_arm64.deb ...
#14 6.082 Unpacking libxmuu1:arm64 (2:1.1.3-3) ...
#14 6.097 Selecting previously unselected package manpages.
#14 6.099 Preparing to unpack .../043-manpages_5.13-1_all.deb ...
#14 6.100 Unpacking manpages (5.13-1) ...
#14 6.126 Selecting previously unselected package nano.
#14 6.127 Preparing to unpack .../044-nano_6.4-1_arm64.deb ...
#14 6.128 Unpacking nano (6.4-1) ...
#14 6.153 Selecting previously unselected package openssh-client.
#14 6.154 Preparing to unpack .../045-openssh-client_1%3a9.0p1-1ubuntu7.1_arm64.deb ...
#14 6.162 Unpacking openssh-client (1:9.0p1-1ubuntu7.1) ...
#14 6.196 Selecting previously unselected package publicsuffix.
#14 6.198 Preparing to unpack .../046-publicsuffix_20220811.1734-1_all.deb ...
#14 6.198 Unpacking publicsuffix (20220811.1734-1) ...
#14 6.216 Selecting previously unselected package xauth.
#14 6.218 Preparing to unpack .../047-xauth_1%3a1.1.1-1_arm64.deb ...
#14 6.219 Unpacking xauth (1:1.1.1-1) ...
#14 6.233 Selecting previously unselected package xz-utils.
#14 6.234 Preparing to unpack .../048-xz-utils_5.2.5-2.1_arm64.deb ...
#14 6.234 Unpacking xz-utils (5.2.5-2.1) ...
#14 6.253 Selecting previously unselected package binutils-common:arm64.
#14 6.255 Preparing to unpack .../049-binutils-common_2.39-3ubuntu1.1_arm64.deb ...
#14 6.255 Unpacking binutils-common:arm64 (2.39-3ubuntu1.1) ...
#14 6.274 Selecting previously unselected package libbinutils:arm64.
#14 6.275 Preparing to unpack .../050-libbinutils_2.39-3ubuntu1.1_arm64.deb ...
#14 6.275 Unpacking libbinutils:arm64 (2.39-3ubuntu1.1) ...
#14 6.306 Selecting previously unselected package libctf-nobfd0:arm64.
#14 6.307 Preparing to unpack .../051-libctf-nobfd0_2.39-3ubuntu1.1_arm64.deb ...
#14 6.308 Unpacking libctf-nobfd0:arm64 (2.39-3ubuntu1.1) ...
#14 6.325 Selecting previously unselected package libctf0:arm64.
#14 6.327 Preparing to unpack .../052-libctf0_2.39-3ubuntu1.1_arm64.deb ...
#14 6.327 Unpacking libctf0:arm64 (2.39-3ubuntu1.1) ...
#14 6.345 Selecting previously unselected package libgprofng0:arm64.
#14 6.346 Preparing to unpack .../053-libgprofng0_2.39-3ubuntu1.1_arm64.deb ...
#14 6.346 Unpacking libgprofng0:arm64 (2.39-3ubuntu1.1) ...
#14 6.378 Selecting previously unselected package binutils-aarch64-linux-gnu.
#14 6.379 Preparing to unpack .../054-binutils-aarch64-linux-gnu_2.39-3ubuntu1.1_arm64.deb ...
#14 6.380 Unpacking binutils-aarch64-linux-gnu (2.39-3ubuntu1.1) ...
#14 6.488 Selecting previously unselected package binutils.
#14 6.490 Preparing to unpack .../055-binutils_2.39-3ubuntu1.1_arm64.deb ...
#14 6.490 Unpacking binutils (2.39-3ubuntu1.1) ...
#14 6.509 Selecting previously unselected package bubblewrap.
#14 6.511 Preparing to unpack .../056-bubblewrap_0.6.2-1_arm64.deb ...
#14 6.511 Unpacking bubblewrap (0.6.2-1) ...
#14 6.527 Selecting previously unselected package libc-dev-bin.
#14 6.529 Preparing to unpack .../057-libc-dev-bin_2.36-0ubuntu4_arm64.deb ...
#14 6.530 Unpacking libc-dev-bin (2.36-0ubuntu4) ...
#14 6.546 Selecting previously unselected package linux-libc-dev:arm64.
#14 6.547 Preparing to unpack .../058-linux-libc-dev_5.19.0-38.39_arm64.deb ...
#14 6.548 Unpacking linux-libc-dev:arm64 (5.19.0-38.39) ...
#14 6.674 Selecting previously unselected package libcrypt-dev:arm64.
#14 6.676 Preparing to unpack .../059-libcrypt-dev_1%3a4.4.28-2_arm64.deb ...
#14 6.683 Unpacking libcrypt-dev:arm64 (1:4.4.28-2) ...
#14 6.702 Selecting previously unselected package rpcsvc-proto.
#14 6.703 Preparing to unpack .../060-rpcsvc-proto_1.4.2-0ubuntu6_arm64.deb ...
#14 6.704 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
#14 6.723 Selecting previously unselected package libtirpc-dev:arm64.
#14 6.724 Preparing to unpack .../061-libtirpc-dev_1.3.3+ds-1_arm64.deb ...
#14 6.725 Unpacking libtirpc-dev:arm64 (1.3.3+ds-1) ...
#14 6.748 Selecting previously unselected package libnsl-dev:arm64.
#14 6.750 Preparing to unpack .../062-libnsl-dev_1.3.0-2build2_arm64.deb ...
#14 6.750 Unpacking libnsl-dev:arm64 (1.3.0-2build2) ...
#14 6.776 Selecting previously unselected package libc6-dev:arm64.
#14 6.777 Preparing to unpack .../063-libc6-dev_2.36-0ubuntu4_arm64.deb ...
#14 6.778 Unpacking libc6-dev:arm64 (2.36-0ubuntu4) ...
#14 6.878 Selecting previously unselected package libisl23:arm64.
#14 6.879 Preparing to unpack .../064-libisl23_0.25-1_arm64.deb ...
#14 6.880 Unpacking libisl23:arm64 (0.25-1) ...
#14 6.909 Selecting previously unselected package libmpfr6:arm64.
#14 6.910 Preparing to unpack .../065-libmpfr6_4.1.0-3build3_arm64.deb ...
#14 6.911 Unpacking libmpfr6:arm64 (4.1.0-3build3) ...
#14 6.929 Selecting previously unselected package libmpc3:arm64.
#14 6.930 Preparing to unpack .../066-libmpc3_1.2.1-2build1_arm64.deb ...
#14 6.931 Unpacking libmpc3:arm64 (1.2.1-2build1) ...
#14 6.948 Selecting previously unselected package cpp-12.
#14 6.949 Preparing to unpack .../067-cpp-12_12.2.0-3ubuntu1_arm64.deb ...
#14 6.950 Unpacking cpp-12 (12.2.0-3ubuntu1) ...
#14 7.105 Selecting previously unselected package cpp.
#14 7.107 Preparing to unpack .../068-cpp_4%3a12.2.0-1ubuntu1_arm64.deb ...
#14 7.107 Unpacking cpp (4:12.2.0-1ubuntu1) ...
#14 7.123 Selecting previously unselected package libcc1-0:arm64.
#14 7.126 Preparing to unpack .../069-libcc1-0_12.2.0-3ubuntu1_arm64.deb ...
#14 7.126 Unpacking libcc1-0:arm64 (12.2.0-3ubuntu1) ...
#14 7.143 Selecting previously unselected package libgomp1:arm64.
#14 7.145 Preparing to unpack .../070-libgomp1_12.2.0-3ubuntu1_arm64.deb ...
#14 7.146 Unpacking libgomp1:arm64 (12.2.0-3ubuntu1) ...
#14 7.163 Selecting previously unselected package libitm1:arm64.
#14 7.165 Preparing to unpack .../071-libitm1_12.2.0-3ubuntu1_arm64.deb ...
#14 7.165 Unpacking libitm1:arm64 (12.2.0-3ubuntu1) ...
#14 7.182 Selecting previously unselected package libatomic1:arm64.
#14 7.183 Preparing to unpack .../072-libatomic1_12.2.0-3ubuntu1_arm64.deb ...
#14 7.184 Unpacking libatomic1:arm64 (12.2.0-3ubuntu1) ...
#14 7.200 Selecting previously unselected package libasan8:arm64.
#14 7.201 Preparing to unpack .../073-libasan8_12.2.0-3ubuntu1_arm64.deb ...
#14 7.202 Unpacking libasan8:arm64 (12.2.0-3ubuntu1) ...
#14 7.256 Selecting previously unselected package liblsan0:arm64.
#14 7.257 Preparing to unpack .../074-liblsan0_12.2.0-3ubuntu1_arm64.deb ...
#14 7.258 Unpacking liblsan0:arm64 (12.2.0-3ubuntu1) ...
#14 7.289 Selecting previously unselected package libtsan2:arm64.
#14 7.291 Preparing to unpack .../075-libtsan2_12.2.0-3ubuntu1_arm64.deb ...
#14 7.292 Unpacking libtsan2:arm64 (12.2.0-3ubuntu1) ...
#14 7.347 Selecting previously unselected package libubsan1:arm64.
#14 7.348 Preparing to unpack .../076-libubsan1_12.2.0-3ubuntu1_arm64.deb ...
#14 7.349 Unpacking libubsan1:arm64 (12.2.0-3ubuntu1) ...
#14 7.380 Selecting previously unselected package libhwasan0:arm64.
#14 7.382 Preparing to unpack .../077-libhwasan0_12.2.0-3ubuntu1_arm64.deb ...
#14 7.383 Unpacking libhwasan0:arm64 (12.2.0-3ubuntu1) ...
#14 7.415 Selecting previously unselected package libgcc-12-dev:arm64.
#14 7.416 Preparing to unpack .../078-libgcc-12-dev_12.2.0-3ubuntu1_arm64.deb ...
#14 7.417 Unpacking libgcc-12-dev:arm64 (12.2.0-3ubuntu1) ...
#14 7.477 Selecting previously unselected package gcc-12.
#14 7.479 Preparing to unpack .../079-gcc-12_12.2.0-3ubuntu1_arm64.deb ...
#14 7.479 Unpacking gcc-12 (12.2.0-3ubuntu1) ...
#14 7.771 Selecting previously unselected package gcc.
#14 7.773 Preparing to unpack .../080-gcc_4%3a12.2.0-1ubuntu1_arm64.deb ...
#14 7.773 Unpacking gcc (4:12.2.0-1ubuntu1) ...
#14 7.792 Selecting previously unselected package libstdc++-12-dev:arm64.
#14 7.794 Preparing to unpack .../081-libstdc++-12-dev_12.2.0-3ubuntu1_arm64.deb ...
#14 7.795 Unpacking libstdc++-12-dev:arm64 (12.2.0-3ubuntu1) ...
#14 7.943 Selecting previously unselected package g++-12.
#14 7.945 Preparing to unpack .../082-g++-12_12.2.0-3ubuntu1_arm64.deb ...
#14 7.946 Unpacking g++-12 (12.2.0-3ubuntu1) ...
#14 8.119 Selecting previously unselected package g++.
#14 8.121 Preparing to unpack .../083-g++_4%3a12.2.0-1ubuntu1_arm64.deb ...
#14 8.131 Unpacking g++ (4:12.2.0-1ubuntu1) ...
#14 8.146 Selecting previously unselected package make.
#14 8.148 Preparing to unpack .../084-make_4.3-4.1build1_arm64.deb ...
#14 8.149 Unpacking make (4.3-4.1build1) ...
#14 8.169 Selecting previously unselected package libdpkg-perl.
#14 8.171 Preparing to unpack .../085-libdpkg-perl_1.21.9ubuntu1_all.deb ...
#14 8.171 Unpacking libdpkg-perl (1.21.9ubuntu1) ...
#14 8.201 Selecting previously unselected package bzip2.
#14 8.203 Preparing to unpack .../086-bzip2_1.0.8-5build1_arm64.deb ...
#14 8.204 Unpacking bzip2 (1.0.8-5build1) ...
#14 8.222 Selecting previously unselected package patch.
#14 8.224 Preparing to unpack .../087-patch_2.7.6-7build2_arm64.deb ...
#14 8.225 Unpacking patch (2.7.6-7build2) ...
#14 8.241 Selecting previously unselected package lto-disabled-list.
#14 8.243 Preparing to unpack .../088-lto-disabled-list_35_all.deb ...
#14 8.244 Unpacking lto-disabled-list (35) ...
#14 8.258 Selecting previously unselected package dpkg-dev.
#14 8.260 Preparing to unpack .../089-dpkg-dev_1.21.9ubuntu1_all.deb ...
#14 8.260 Unpacking dpkg-dev (1.21.9ubuntu1) ...
#14 8.291 Selecting previously unselected package build-essential.
#14 8.293 Preparing to unpack .../090-build-essential_12.9ubuntu3_arm64.deb ...
#14 8.294 Unpacking build-essential (12.9ubuntu3) ...
#14 8.309 Selecting previously unselected package libbrotli1:arm64.
#14 8.311 Preparing to unpack .../091-libbrotli1_1.0.9-2build6_arm64.deb ...
#14 8.312 Unpacking libbrotli1:arm64 (1.0.9-2build6) ...
#14 8.336 Selecting previously unselected package libsasl2-modules-db:arm64.
#14 8.337 Preparing to unpack .../092-libsasl2-modules-db_2.1.28+dfsg-6ubuntu2_arm64.deb ...
#14 8.338 Unpacking libsasl2-modules-db:arm64 (2.1.28+dfsg-6ubuntu2) ...
#14 8.355 Selecting previously unselected package libsasl2-2:arm64.
#14 8.357 Preparing to unpack .../093-libsasl2-2_2.1.28+dfsg-6ubuntu2_arm64.deb ...
#14 8.358 Unpacking libsasl2-2:arm64 (2.1.28+dfsg-6ubuntu2) ...
#14 8.377 Selecting previously unselected package libldap-2.5-0:arm64.
#14 8.378 Preparing to unpack .../094-libldap-2.5-0_2.5.14+dfsg-0ubuntu0.22.10.1_arm64.deb ...
#14 8.379 Unpacking libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#14 8.400 Selecting previously unselected package librtmp1:arm64.
#14 8.402 Preparing to unpack .../095-librtmp1_2.4+20151223.gitfa8646d.1-2build4_arm64.deb ...
#14 8.402 Unpacking librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#14 8.420 Selecting previously unselected package libssh-4:arm64.
#14 8.422 Preparing to unpack .../096-libssh-4_0.9.6-2build1_arm64.deb ...
#14 8.422 Unpacking libssh-4:arm64 (0.9.6-2build1) ...
#14 8.443 Selecting previously unselected package libcurl4:arm64.
#14 8.445 Preparing to unpack .../097-libcurl4_7.85.0-1ubuntu0.5_arm64.deb ...
#14 8.446 Unpacking libcurl4:arm64 (7.85.0-1ubuntu0.5) ...
#14 8.465 Selecting previously unselected package curl.
#14 8.466 Preparing to unpack .../098-curl_7.85.0-1ubuntu0.5_arm64.deb ...
#14 8.467 Unpacking curl (7.85.0-1ubuntu0.5) ...
#14 8.486 Selecting previously unselected package libassuan0:arm64.
#14 8.487 Preparing to unpack .../099-libassuan0_2.5.5-4_arm64.deb ...
#14 8.488 Unpacking libassuan0:arm64 (2.5.5-4) ...
#14 8.504 Selecting previously unselected package gpgconf.
#14 8.506 Preparing to unpack .../100-gpgconf_2.2.35-3ubuntu1_arm64.deb ...
#14 8.507 Unpacking gpgconf (2.2.35-3ubuntu1) ...
#14 8.526 Selecting previously unselected package libksba8:arm64.
#14 8.528 Preparing to unpack .../101-libksba8_1.6.0-3ubuntu1.1_arm64.deb ...
#14 8.528 Unpacking libksba8:arm64 (1.6.0-3ubuntu1.1) ...
#14 8.547 Selecting previously unselected package libnpth0:arm64.
#14 8.549 Preparing to unpack .../102-libnpth0_1.6-3build2_arm64.deb ...
#14 8.549 Unpacking libnpth0:arm64 (1.6-3build2) ...
#14 8.566 Selecting previously unselected package dirmngr.
#14 8.568 Preparing to unpack .../103-dirmngr_2.2.35-3ubuntu1_arm64.deb ...
#14 8.586 Unpacking dirmngr (2.2.35-3ubuntu1) ...
#14 8.611 Selecting previously unselected package libfakeroot:arm64.
#14 8.613 Preparing to unpack .../104-libfakeroot_1.29-1ubuntu1_arm64.deb ...
#14 8.613 Unpacking libfakeroot:arm64 (1.29-1ubuntu1) ...
#14 8.631 Selecting previously unselected package fakeroot.
#14 8.633 Preparing to unpack .../105-fakeroot_1.29-1ubuntu1_arm64.deb ...
#14 8.634 Unpacking fakeroot (1.29-1ubuntu1) ...
#14 8.653 Selecting previously unselected package fonts-dejavu-core.
#14 8.655 Preparing to unpack .../106-fonts-dejavu-core_2.37-2build1_all.deb ...
#14 8.656 Unpacking fonts-dejavu-core (2.37-2build1) ...
#14 8.742 Selecting previously unselected package fontconfig-config.
#14 8.744 Preparing to unpack .../107-fontconfig-config_2.13.1-4.4ubuntu1_all.deb ...
#14 8.745 Unpacking fontconfig-config (2.13.1-4.4ubuntu1) ...
#14 8.767 Selecting previously unselected package libcurl3-gnutls:arm64.
#14 8.769 Preparing to unpack .../108-libcurl3-gnutls_7.85.0-1ubuntu0.5_arm64.deb ...
#14 8.769 Unpacking libcurl3-gnutls:arm64 (7.85.0-1ubuntu0.5) ...
#14 8.791 Selecting previously unselected package liberror-perl.
#14 8.793 Preparing to unpack .../109-liberror-perl_0.17029-1_all.deb ...
#14 8.793 Unpacking liberror-perl (0.17029-1) ...
#14 8.811 Selecting previously unselected package git-man.
#14 8.813 Preparing to unpack .../110-git-man_1%3a2.37.2-1ubuntu1.4_all.deb ...
#14 8.814 Unpacking git-man (1:2.37.2-1ubuntu1.4) ...
#14 8.839 Selecting previously unselected package git.
#14 8.841 Preparing to unpack .../111-git_1%3a2.37.2-1ubuntu1.4_arm64.deb ...
#14 8.848 Unpacking git (1:2.37.2-1ubuntu1.4) ...
#14 8.970 Selecting previously unselected package gnupg-l10n.
#14 8.972 Preparing to unpack .../112-gnupg-l10n_2.2.35-3ubuntu1_all.deb ...
#14 8.973 Unpacking gnupg-l10n (2.2.35-3ubuntu1) ...
#14 8.993 Selecting previously unselected package gnupg-utils.
#14 8.995 Preparing to unpack .../113-gnupg-utils_2.2.35-3ubuntu1_arm64.deb ...
#14 8.996 Unpacking gnupg-utils (2.2.35-3ubuntu1) ...
#14 9.019 Selecting previously unselected package gpg.
#14 9.021 Preparing to unpack .../114-gpg_2.2.35-3ubuntu1_arm64.deb ...
#14 9.022 Unpacking gpg (2.2.35-3ubuntu1) ...
#14 9.047 Selecting previously unselected package pinentry-curses.
#14 9.049 Preparing to unpack .../115-pinentry-curses_1.2.0-2ubuntu1_arm64.deb ...
#14 9.050 Unpacking pinentry-curses (1.2.0-2ubuntu1) ...
#14 9.070 Selecting previously unselected package gpg-agent.
#14 9.072 Preparing to unpack .../116-gpg-agent_2.2.35-3ubuntu1_arm64.deb ...
#14 9.073 Unpacking gpg-agent (2.2.35-3ubuntu1) ...
#14 9.095 Selecting previously unselected package gpg-wks-client.
#14 9.097 Preparing to unpack .../117-gpg-wks-client_2.2.35-3ubuntu1_arm64.deb ...
#14 9.097 Unpacking gpg-wks-client (2.2.35-3ubuntu1) ...
#14 9.114 Selecting previously unselected package gpg-wks-server.
#14 9.116 Preparing to unpack .../118-gpg-wks-server_2.2.35-3ubuntu1_arm64.deb ...
#14 9.117 Unpacking gpg-wks-server (2.2.35-3ubuntu1) ...
#14 9.133 Selecting previously unselected package gpgsm.
#14 9.135 Preparing to unpack .../119-gpgsm_2.2.35-3ubuntu1_arm64.deb ...
#14 9.136 Unpacking gpgsm (2.2.35-3ubuntu1) ...
#14 9.156 Selecting previously unselected package gnupg.
#14 9.157 Preparing to unpack .../120-gnupg_2.2.35-3ubuntu1_all.deb ...
#14 9.158 Unpacking gnupg (2.2.35-3ubuntu1) ...
#14 9.178 Selecting previously unselected package libalgorithm-diff-perl.
#14 9.179 Preparing to unpack .../121-libalgorithm-diff-perl_1.201-1_all.deb ...
#14 9.180 Unpacking libalgorithm-diff-perl (1.201-1) ...
#14 9.202 Selecting previously unselected package libalgorithm-diff-xs-perl:arm64.
#14 9.204 Preparing to unpack .../122-libalgorithm-diff-xs-perl_0.04-7_arm64.deb ...
#14 9.205 Unpacking libalgorithm-diff-xs-perl:arm64 (0.04-7) ...
#14 9.223 Selecting previously unselected package libalgorithm-merge-perl.
#14 9.225 Preparing to unpack .../123-libalgorithm-merge-perl_0.08-4_all.deb ...
#14 9.225 Unpacking libalgorithm-merge-perl (0.08-4) ...
#14 9.243 Selecting previously unselected package libfreetype6:arm64.
#14 9.245 Preparing to unpack .../124-libfreetype6_2.12.1+dfsg-3_arm64.deb ...
#14 9.246 Unpacking libfreetype6:arm64 (2.12.1+dfsg-3) ...
#14 9.270 Selecting previously unselected package libfontconfig1:arm64.
#14 9.272 Preparing to unpack .../125-libfontconfig1_2.13.1-4.4ubuntu1_arm64.deb ...
#14 9.272 Unpacking libfontconfig1:arm64 (2.13.1-4.4ubuntu1) ...
#14 9.291 Selecting previously unselected package libjpeg-turbo8:arm64.
#14 9.293 Preparing to unpack .../126-libjpeg-turbo8_2.1.2-0ubuntu1_arm64.deb ...
#14 9.294 Unpacking libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#14 9.313 Selecting previously unselected package libjpeg8:arm64.
#14 9.315 Preparing to unpack .../127-libjpeg8_8c-2ubuntu10_arm64.deb ...
#14 9.316 Unpacking libjpeg8:arm64 (8c-2ubuntu10) ...
#14 9.333 Selecting previously unselected package libdeflate0:arm64.
#14 9.335 Preparing to unpack .../128-libdeflate0_1.12-1_arm64.deb ...
#14 9.336 Unpacking libdeflate0:arm64 (1.12-1) ...
#14 9.354 Selecting previously unselected package libjbig0:arm64.
#14 9.356 Preparing to unpack .../129-libjbig0_2.1-3.1ubuntu0.22.10.1_arm64.deb ...
#14 9.357 Unpacking libjbig0:arm64 (2.1-3.1ubuntu0.22.10.1) ...
#14 9.375 Selecting previously unselected package liblerc3:arm64.
#14 9.377 Preparing to unpack .../130-liblerc3_3.0+ds-1ubuntu1_arm64.deb ...
#14 9.378 Unpacking liblerc3:arm64 (3.0+ds-1ubuntu1) ...
#14 9.397 Selecting previously unselected package libwebp7:arm64.
#14 9.399 Preparing to unpack .../131-libwebp7_1.2.2-2_arm64.deb ...
#14 9.400 Unpacking libwebp7:arm64 (1.2.2-2) ...
#14 9.420 Selecting previously unselected package libtiff5:arm64.
#14 9.422 Preparing to unpack .../132-libtiff5_4.4.0-4ubuntu3.3_arm64.deb ...
#14 9.423 Unpacking libtiff5:arm64 (4.4.0-4ubuntu3.3) ...
#14 9.445 Selecting previously unselected package libxpm4:arm64.
#14 9.446 Preparing to unpack .../133-libxpm4_1%3a3.5.12-1ubuntu0.22.10.1_arm64.deb ...
#14 9.447 Unpacking libxpm4:arm64 (1:3.5.12-1ubuntu0.22.10.1) ...
#14 9.464 Selecting previously unselected package libgd3:arm64.
#14 9.466 Preparing to unpack .../134-libgd3_2.3.3-6_arm64.deb ...
#14 9.467 Unpacking libgd3:arm64 (2.3.3-6) ...
#14 9.486 Selecting previously unselected package libc-devtools.
#14 9.487 Preparing to unpack .../135-libc-devtools_2.36-0ubuntu4_arm64.deb ...
#14 9.488 Unpacking libc-devtools (2.36-0ubuntu4) ...
#14 9.506 Selecting previously unselected package libcap-dev:arm64.
#14 9.508 Preparing to unpack .../136-libcap-dev_1%3a2.44-1build3_arm64.deb ...
#14 9.508 Unpacking libcap-dev:arm64 (1:2.44-1build3) ...
#14 9.529 Selecting previously unselected package libfile-fcntllock-perl.
#14 9.531 Preparing to unpack .../137-libfile-fcntllock-perl_0.22-4_arm64.deb ...
#14 9.531 Unpacking libfile-fcntllock-perl (0.22-4) ...
#14 9.550 Selecting previously unselected package libldap-common.
#14 9.552 Preparing to unpack .../138-libldap-common_2.5.14+dfsg-0ubuntu0.22.10.1_all.deb ...
#14 9.553 Unpacking libldap-common (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#14 9.570 Selecting previously unselected package libpthread-stubs0-dev:arm64.
#14 9.571 Preparing to unpack .../139-libpthread-stubs0-dev_0.4-1build2_arm64.deb ...
#14 9.572 Unpacking libpthread-stubs0-dev:arm64 (0.4-1build2) ...
#14 9.589 Selecting previously unselected package libsasl2-modules:arm64.
#14 9.590 Preparing to unpack .../140-libsasl2-modules_2.1.28+dfsg-6ubuntu2_arm64.deb ...
#14 9.597 Unpacking libsasl2-modules:arm64 (2.1.28+dfsg-6ubuntu2) ...
#14 9.618 Selecting previously unselected package xorg-sgml-doctools.
#14 9.619 Preparing to unpack .../141-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ...
#14 9.620 Unpacking xorg-sgml-doctools (1:1.11-1.1) ...
#14 9.641 Selecting previously unselected package x11proto-dev.
#14 9.643 Preparing to unpack .../142-x11proto-dev_2022.1-1_all.deb ...
#14 9.644 Unpacking x11proto-dev (2022.1-1) ...
#14 9.687 Selecting previously unselected package libxau-dev:arm64.
#14 9.689 Preparing to unpack .../143-libxau-dev_1%3a1.0.9-1build5_arm64.deb ...
#14 9.689 Unpacking libxau-dev:arm64 (1:1.0.9-1build5) ...
#14 9.707 Selecting previously unselected package libxdmcp-dev:arm64.
#14 9.709 Preparing to unpack .../144-libxdmcp-dev_1%3a1.1.3-0ubuntu5_arm64.deb ...
#14 9.710 Unpacking libxdmcp-dev:arm64 (1:1.1.3-0ubuntu5) ...
#14 9.728 Selecting previously unselected package xtrans-dev.
#14 9.730 Preparing to unpack .../145-xtrans-dev_1.4.0-1_all.deb ...
#14 9.730 Unpacking xtrans-dev (1.4.0-1) ...
#14 9.756 Selecting previously unselected package libxcb1-dev:arm64.
#14 9.758 Preparing to unpack .../146-libxcb1-dev_1.15-1_arm64.deb ...
#14 9.759 Unpacking libxcb1-dev:arm64 (1.15-1) ...
#14 9.779 Selecting previously unselected package libx11-dev:arm64.
#14 9.781 Preparing to unpack .../147-libx11-dev_2%3a1.8.1-2_arm64.deb ...
#14 9.781 Unpacking libx11-dev:arm64 (2:1.8.1-2) ...
#14 9.817 Selecting previously unselected package manpages-dev.
#14 9.819 Preparing to unpack .../148-manpages-dev_5.13-1_all.deb ...
#14 9.819 Unpacking manpages-dev (5.13-1) ...
#14 9.890 Selecting previously unselected package unzip.
#14 9.893 Preparing to unpack .../149-unzip_6.0-27ubuntu1_arm64.deb ...
#14 9.894 Unpacking unzip (6.0-27ubuntu1) ...
#14 9.930 Setting up libksba8:arm64 (1.6.0-3ubuntu1.1) ...
#14 9.932 Setting up libexpat1:arm64 (2.4.8-2ubuntu0.22.10.1) ...
#14 9.933 Setting up bubblewrap (0.6.2-1) ...
#14 9.936 sysctl: setting key "kernel.unprivileged_userns_clone", ignoring: Read-only file system
#14 9.937 Setting up libxau6:arm64 (1:1.0.9-1build5) ...
#14 9.938 Setting up libkeyutils1:arm64 (1.6.3-1) ...
#14 9.940 Setting up lto-disabled-list (35) ...
#14 9.941 Setting up libpsl5:arm64 (0.21.0-1.2build2) ...
#14 9.942 Setting up manpages (5.13-1) ...
#14 9.943 Setting up libtirpc-common (1.3.3+ds-1) ...
#14 9.945 Setting up unzip (6.0-27ubuntu1) ...
#14 9.949 Setting up libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#14 9.950 Setting up libbrotli1:arm64 (1.0.9-2build6) ...
#14 9.951 Setting up libsqlite3-0:arm64 (3.39.3-1) ...
#14 9.952 Setting up binutils-common:arm64 (2.39-3ubuntu1.1) ...
#14 9.953 Setting up libssl3:arm64 (3.0.5-2ubuntu2.1) ...
#14 10.03 Setting up libnghttp2-14:arm64 (1.49.0-1) ...
#14 10.03 Setting up libdeflate0:arm64 (1.12-1) ...
#14 10.03 Setting up less (590-1ubuntu0.22.10.1) ...
#14 10.04 Setting up linux-libc-dev:arm64 (5.19.0-38.39) ...
#14 10.04 Setting up libctf-nobfd0:arm64 (2.39-3ubuntu1.1) ...
#14 10.04 Setting up libnpth0:arm64 (1.6-3build2) ...
#14 10.04 Setting up krb5-locales (1.20-1ubuntu0.1) ...
#14 10.04 Setting up libassuan0:arm64 (2.5.5-4) ...
#14 10.04 Setting up libgomp1:arm64 (12.2.0-3ubuntu1) ...
#14 10.04 Setting up perl-modules-5.34 (5.34.0-5ubuntu1.1) ...
#14 10.05 Setting up bzip2 (1.0.8-5build1) ...
#14 10.05 Setting up libldap-common (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#14 10.05 Setting up libpthread-stubs0-dev:arm64 (0.4-1build2) ...
#14 10.05 Setting up libjbig0:arm64 (2.1-3.1ubuntu0.22.10.1) ...
#14 10.05 Setting up libfakeroot:arm64 (1.29-1ubuntu1) ...
#14 10.05 Setting up libkrb5support0:arm64 (1.20-1ubuntu0.1) ...
#14 10.05 Setting up libsasl2-modules-db:arm64 (2.1.28+dfsg-6ubuntu2) ...
#14 10.05 Setting up fakeroot (1.29-1ubuntu1) ...
#14 10.06 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
#14 10.06 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 10.06 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 10.06 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 10.06 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 10.06 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 10.06 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 10.06 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 10.06 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 10.06 Setting up xtrans-dev (1.4.0-1) ...
#14 10.06 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
#14 10.07 Setting up libx11-data (2:1.8.1-2) ...
#14 10.07 Setting up make (4.3-4.1build1) ...
#14 10.07 Setting up libmpfr6:arm64 (4.1.0-3build3) ...
#14 10.07 Setting up gnupg-l10n (2.2.35-3ubuntu1) ...
#14 10.07 Setting up librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#14 10.07 Setting up liblerc3:arm64 (3.0+ds-1ubuntu1) ...
#14 10.07 Setting up xz-utils (5.2.5-2.1) ...
#14 10.08 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#14 10.08 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 10.08 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 10.08 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 10.08 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 10.08 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 10.08 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 10.08 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 10.08 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 10.08 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 10.08 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 10.08 Setting up libpng16-16:arm64 (1.6.38-2) ...
#14 10.08 Setting up libmpc3:arm64 (1.2.1-2build1) ...
#14 10.08 Setting up libatomic1:arm64 (12.2.0-3ubuntu1) ...
#14 10.09 Setting up patch (2.7.6-7build2) ...
#14 10.09 Setting up sudo (1.9.11p3-1ubuntu1.2) ...
#14 10.10 Setting up fonts-dejavu-core (2.37-2build1) ...
#14 10.10 Setting up ucf (3.0043) ...
#14 10.18 Setting up libk5crypto3:arm64 (1.20-1ubuntu0.1) ...
#14 10.18 Setting up libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#14 10.19 Setting up libsasl2-2:arm64 (2.1.28+dfsg-6ubuntu2) ...
#14 10.19 Setting up libwebp7:arm64 (1.2.2-2) ...
#14 10.19 Setting up libubsan1:arm64 (12.2.0-3ubuntu1) ...
#14 10.19 Setting up nano (6.4-1) ...
#14 10.20 update-alternatives: using /bin/nano to provide /usr/bin/editor (editor) in auto mode
#14 10.20 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 10.20 update-alternatives: using /bin/nano to provide /usr/bin/pico (pico) in auto mode
#14 10.20 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 10.20 Setting up libmd0:arm64 (1.0.4-2) ...
#14 10.20 Setting up libhwasan0:arm64 (12.2.0-3ubuntu1) ...
#14 10.20 Setting up libcrypt-dev:arm64 (1:4.4.28-2) ...
#14 10.21 Setting up libasan8:arm64 (12.2.0-3ubuntu1) ...
#14 10.21 Setting up git-man (1:2.37.2-1ubuntu1.4) ...
#14 10.21 Setting up xorg-sgml-doctools (1:1.11-1.1) ...
#14 10.21 Setting up netbase (6.3) ...
#14 10.22 Setting up libkrb5-3:arm64 (1.20-1ubuntu0.1) ...
#14 10.22 Setting up libtsan2:arm64 (12.2.0-3ubuntu1) ...
#14 10.22 Setting up libbinutils:arm64 (2.39-3ubuntu1.1) ...
#14 10.22 Setting up libfido2-1:arm64 (1.11.0-1) ...
#14 10.23 Setting up libisl23:arm64 (0.25-1) ...
#14 10.23 Setting up libc-dev-bin (2.36-0ubuntu4) ...
#14 10.23 Setting up openssl (3.0.5-2ubuntu2.1) ...
#14 10.23 Setting up libbsd0:arm64 (0.11.6-1) ...
#14 10.23 Setting up libcap-dev:arm64 (1:2.44-1build3) ...
#14 10.23 Setting up readline-common (8.2-1) ...
#14 10.24 Setting up publicsuffix (20220811.1734-1) ...
#14 10.24 Setting up libcc1-0:arm64 (12.2.0-3ubuntu1) ...
#14 10.24 Setting up liblocale-gettext-perl (1.07-4build3) ...
#14 10.25 Setting up liblsan0:arm64 (12.2.0-3ubuntu1) ...
#14 10.25 Setting up libitm1:arm64 (12.2.0-3ubuntu1) ...
#14 10.25 Setting up libgdbm6:arm64 (1.23-1) ...
#14 10.25 Setting up libpopt0:arm64 (1.18-3build1) ...
#14 10.26 Setting up libctf0:arm64 (2.39-3ubuntu1.1) ...
#14 10.26 Setting up libjpeg8:arm64 (8c-2ubuntu10) ...
#14 10.26 Setting up pinentry-curses (1.2.0-2ubuntu1) ...
#14 10.26 Setting up manpages-dev (5.13-1) ...
#14 10.26 Setting up libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#14 10.27 Setting up cpp-12 (12.2.0-3ubuntu1) ...
#14 10.27 Setting up libxcb1:arm64 (1.15-1) ...
#14 10.27 Setting up fontconfig-config (2.13.1-4.4ubuntu1) ...
#14 10.29 Setting up libedit2:arm64 (3.1-20210910-1build1) ...
#14 10.29 Setting up libreadline8:arm64 (8.2-1) ...
#14 10.29 Setting up libsasl2-modules:arm64 (2.1.28+dfsg-6ubuntu2) ...
#14 10.30 Setting up libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.10.1) ...
#14 10.30 Setting up ca-certificates (20211016ubuntu0.22.10.1) ...
#14 10.92 Updating certificates in /etc/ssl/certs...
#14 11.66 124 added, 0 removed; done.
#14 11.68 Setting up libgprofng0:arm64 (2.39-3ubuntu1.1) ...
#14 11.68 Setting up libfreetype6:arm64 (2.12.1+dfsg-3) ...
#14 11.68 Setting up libgcc-12-dev:arm64 (12.2.0-3ubuntu1) ...
#14 11.68 Setting up libgssapi-krb5-2:arm64 (1.20-1ubuntu0.1) ...
#14 11.68 Setting up libgdbm-compat4:arm64 (1.23-1) ...
#14 11.69 Setting up libssh-4:arm64 (0.9.6-2build1) ...
#14 11.69 Setting up cpp (4:12.2.0-1ubuntu1) ...
#14 11.69 Setting up gpgconf (2.2.35-3ubuntu1) ...
#14 11.69 Setting up libcurl4:arm64 (7.85.0-1ubuntu0.5) ...
#14 11.69 Setting up libx11-6:arm64 (2:1.8.1-2) ...
#14 11.70 Setting up libtiff5:arm64 (4.4.0-4ubuntu3.3) ...
#14 11.70 Setting up curl (7.85.0-1ubuntu0.5) ...
#14 11.70 Setting up libxmuu1:arm64 (2:1.1.3-3) ...
#14 11.70 Setting up gpg (2.2.35-3ubuntu1) ...
#14 11.70 Setting up rsync (3.2.7-0ubuntu0.22.10.1) ...
#14 11.72 invoke-rc.d: could not determine current runlevel
#14 11.72 invoke-rc.d: policy-rc.d denied execution of start.
#14 11.81 Setting up gnupg-utils (2.2.35-3ubuntu1) ...
#14 11.82 Setting up libtirpc3:arm64 (1.3.3+ds-1) ...
#14 11.82 Setting up libperl5.34:arm64 (5.34.0-5ubuntu1.1) ...
#14 11.82 Setting up gpg-agent (2.2.35-3ubuntu1) ...
#14 12.28 Setting up libxpm4:arm64 (1:3.5.12-1ubuntu0.22.10.1) ...
#14 12.28 Setting up openssh-client (1:9.0p1-1ubuntu7.1) ...
#14 12.34 update-alternatives: using /usr/bin/ssh to provide /usr/bin/rsh (rsh) in auto mode
#14 12.34 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 12.34 update-alternatives: using /usr/bin/slogin to provide /usr/bin/rlogin (rlogin) in auto mode
#14 12.34 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 12.34 update-alternatives: using /usr/bin/scp to provide /usr/bin/rcp (rcp) in auto mode
#14 12.34 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 12.35 Setting up gpgsm (2.2.35-3ubuntu1) ...
#14 12.35 Setting up libxext6:arm64 (2:1.3.4-1build1) ...
#14 12.36 Setting up binutils-aarch64-linux-gnu (2.39-3ubuntu1.1) ...
#14 12.36 Setting up libcurl3-gnutls:arm64 (7.85.0-1ubuntu0.5) ...
#14 12.36 Setting up binutils (2.39-3ubuntu1.1) ...
#14 12.36 Setting up dirmngr (2.2.35-3ubuntu1) ...
#14 12.51 Setting up perl (5.34.0-5ubuntu1.1) ...
#14 12.52 Setting up libtirpc-dev:arm64 (1.3.3+ds-1) ...
#14 12.52 Setting up gcc-12 (12.2.0-3ubuntu1) ...
#14 12.52 Setting up libdpkg-perl (1.21.9ubuntu1) ...
#14 12.52 Setting up gpg-wks-server (2.2.35-3ubuntu1) ...
#14 12.52 Setting up xauth (1:1.1.1-1) ...
#14 12.52 Setting up libnsl2:arm64 (1.3.0-2build2) ...
#14 12.53 Setting up gpg-wks-client (2.2.35-3ubuntu1) ...
#14 12.53 Setting up libfile-fcntllock-perl (0.22-4) ...
#14 12.53 Setting up libalgorithm-diff-perl (1.201-1) ...
#14 12.53 Setting up gcc (4:12.2.0-1ubuntu1) ...
#14 12.54 Setting up dpkg-dev (1.21.9ubuntu1) ...
#14 12.54 Setting up liberror-perl (0.17029-1) ...
#14 12.54 Setting up git (1:2.37.2-1ubuntu1.4) ...
#14 12.55 Setting up libnsl-dev:arm64 (1.3.0-2build2) ...
#14 12.55 Setting up gnupg (2.2.35-3ubuntu1) ...
#14 12.55 Setting up libc6-dev:arm64 (2.36-0ubuntu4) ...
#14 12.56 Setting up libalgorithm-diff-xs-perl:arm64 (0.04-7) ...
#14 12.56 Setting up libalgorithm-merge-perl (0.08-4) ...
#14 12.56 Setting up libstdc++-12-dev:arm64 (12.2.0-3ubuntu1) ...
#14 12.56 Setting up g++-12 (12.2.0-3ubuntu1) ...
#14 12.56 Setting up g++ (4:12.2.0-1ubuntu1) ...
#14 12.59 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#14 12.59 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 12.60 Setting up build-essential (12.9ubuntu3) ...
#14 12.61 Processing triggers for libc-bin (2.36-0ubuntu4) ...
#14 12.63 Processing triggers for sgml-base (1.30) ...
#14 12.65 Setting up libfontconfig1:arm64 (2.13.1-4.4ubuntu1) ...
#14 12.65 Setting up x11proto-dev (2022.1-1) ...
#14 12.65 Setting up libxau-dev:arm64 (1:1.0.9-1build5) ...
#14 12.65 Setting up libxdmcp-dev:arm64 (1:1.1.3-0ubuntu5) ...
#14 12.65 Setting up libgd3:arm64 (2.3.3-6) ...
#14 12.66 Setting up libc-devtools (2.36-0ubuntu4) ...
#14 12.66 Setting up libxcb1-dev:arm64 (1.15-1) ...
#14 12.66 Setting up libx11-dev:arm64 (2:1.8.1-2) ...
#14 12.66 Processing triggers for ca-certificates (20211016ubuntu0.22.10.1) ...
#14 12.66 Updating certificates in /etc/ssl/certs...
#14 13.23 0 added, 0 removed; done.
#14 13.23 Running hooks in /etc/ca-certificates/update.d...
#14 13.23 done.
#14 13.24 Processing triggers for libc-bin (2.36-0ubuntu4) ...
#14 DONE 13.4s

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:13632b05274669ef95ef86ba4527c79a102784ea04fdc980aae87f8bcddb3285
#17 10.36 Updating certificates in /etc/ssl/certs...
#17 11.13 124 added, 0 removed; done.
#17 11.15 Setting up libgprofng0:arm64 (2.39-3ubuntu1.1) ...
#17 11.15 Setting up libfreetype6:arm64 (2.12.1+dfsg-3) ...
#17 11.15 Setting up libgcc-12-dev:arm64 (12.2.0-3ubuntu1) ...
#17 11.15 Setting up libgssapi-krb5-2:arm64 (1.20-1ubuntu0.1) ...
#17 11.16 Setting up libgdbm-compat4:arm64 (1.23-1) ...
#17 11.16 Setting up libssh-4:arm64 (0.9.6-2build1) ...
#17 11.16 Setting up cpp (4:12.2.0-1ubuntu1) ...
#17 11.17 Setting up gpgconf (2.2.35-3ubuntu1) ...
#17 11.17 Setting up libcurl4:arm64 (7.85.0-1ubuntu0.5) ...
#17 11.17 Setting up libx11-6:arm64 (2:1.8.1-2) ...
#17 11.17 Setting up libtiff5:arm64 (4.4.0-4ubuntu3.3) ...
#17 11.17 Setting up curl (7.85.0-1ubuntu0.5) ...
#17 11.17 Setting up libxmuu1:arm64 (2:1.1.3-3) ...
#17 11.17 Setting up gpg (2.2.35-3ubuntu1) ...
#17 11.18 Setting up gnupg-utils (2.2.35-3ubuntu1) ...
#17 11.18 Setting up libtirpc3:arm64 (1.3.3+ds-1) ...
#17 11.18 Setting up libperl5.34:arm64 (5.34.0-5ubuntu1.1) ...
#17 11.18 Setting up gpg-agent (2.2.35-3ubuntu1) ...
#17 11.65 Setting up libxpm4:arm64 (1:3.5.12-1ubuntu0.22.10.1) ...
#17 11.65 Setting up openssh-client (1:9.0p1-1ubuntu7.1) ...
#17 11.70 update-alternatives: using /usr/bin/ssh to provide /usr/bin/rsh (rsh) in auto mode
#17 11.70 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 11.70 update-alternatives: using /usr/bin/slogin to provide /usr/bin/rlogin (rlogin) in auto mode
#17 11.70 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 11.71 update-alternatives: using /usr/bin/scp to provide /usr/bin/rcp (rcp) in auto mode
#17 11.71 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 11.71 Setting up gpgsm (2.2.35-3ubuntu1) ...
#17 11.71 Setting up libxext6:arm64 (2:1.3.4-1build1) ...
#17 11.72 Setting up binutils-aarch64-linux-gnu (2.39-3ubuntu1.1) ...
#17 11.72 Setting up libcurl3-gnutls:arm64 (7.85.0-1ubuntu0.5) ...
#17 11.72 Setting up binutils (2.39-3ubuntu1.1) ...
#17 11.72 Setting up dirmngr (2.2.35-3ubuntu1) ...
#17 11.86 Setting up perl (5.34.0-5ubuntu1.1) ...
#17 11.87 Setting up libtirpc-dev:arm64 (1.3.3+ds-1) ...
#17 11.87 Setting up gcc-12 (12.2.0-3ubuntu1) ...
#17 11.87 Setting up libdpkg-perl (1.21.9ubuntu1) ...
#17 11.87 Setting up gpg-wks-server (2.2.35-3ubuntu1) ...
#17 11.87 Setting up xauth (1:1.1.1-1) ...
#17 11.88 Setting up libnsl2:arm64 (1.3.0-2build2) ...
#17 11.88 Setting up gpg-wks-client (2.2.35-3ubuntu1) ...
#17 11.88 Setting up libfile-fcntllock-perl (0.22-4) ...
#17 11.88 Setting up libalgorithm-diff-perl (1.201-1) ...
#17 11.88 Setting up gcc (4:12.2.0-1ubuntu1) ...
#17 11.89 Setting up dpkg-dev (1.21.9ubuntu1) ...
#17 11.89 Setting up liberror-perl (0.17029-1) ...
#17 11.89 Setting up git (1:2.37.2-1ubuntu1.4) ...
#17 11.90 Setting up libnsl-dev:arm64 (1.3.0-2build2) ...
#17 11.90 Setting up gnupg (2.2.35-3ubuntu1) ...
#17 11.91 Setting up libc6-dev:arm64 (2.36-0ubuntu4) ...
#17 11.91 Setting up libalgorithm-diff-xs-perl:arm64 (0.04-7) ...
#17 11.91 Setting up libalgorithm-merge-perl (0.08-4) ...
#17 11.91 Setting up libstdc++-12-dev:arm64 (12.2.0-3ubuntu1) ...
#17 11.91 Setting up g++-12 (12.2.0-3ubuntu1) ...
#17 11.91 Setting up g++ (4:12.2.0-1ubuntu1) ...
#17 11.94 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#17 11.94 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 11.94 Setting up build-essential (12.9ubuntu3) ...
#17 11.94 Processing triggers for libc-bin (2.36-0ubuntu4) ...
#17 11.96 Processing triggers for sgml-base (1.30) ...
#17 11.97 Setting up libfontconfig1:arm64 (2.13.1-4.4ubuntu1) ...
#17 11.97 Setting up libgd3:arm64 (2.3.3-6) ...
#17 11.98 Setting up libc-devtools (2.36-0ubuntu4) ...
#17 11.98 Processing triggers for ca-certificates (20211016ubuntu0.22.10.1) ...
#17 11.98 Updating certificates in /etc/ssl/certs...
#17 12.55 0 added, 0 removed; done.
#17 12.55 Running hooks in /etc/ca-certificates/update.d...
#17 12.55 done.
#17 12.56 Processing triggers for libc-bin (2.36-0ubuntu4) ...
#17 DONE 13.2s

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

#19 [stage-0  6/10] RUN git config --global user.name "Docker"
#19 sha256:8934ad050cf7b959611b9371a7790c3946f4fdc3225e34a06187503bfafc8b52
#19 DONE 0.4s

#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:e6c6a62dea95f42978fdf96a9e53fafa35d326f2f40ef7665e9061015348b05f
#20 0.337 Cloning into '/tmp/opam'...
#20 8.350 Note: switching to '8bc4698fb9caded0fa5c2bf08fe67a34d732451e'.
#20 8.350 
#20 8.350 You are in 'detached HEAD' state. You can look around, make experimental
#20 8.350 changes and commit them, and you can discard any commits you make in this
#20 8.350 state without impacting any branches by switching back to a branch.
#20 8.350 
#20 8.350 If you want to create a new branch to retain commits you create, you may
#20 8.350 do so (now or later) by using -c with the switch command. Example:
#20 8.350 
#20 8.350   git switch -c <new-branch-name>
#20 8.350 
#20 8.350 Or undo this operation with:
#20 8.350 
#20 8.350   git switch -
#20 8.350 
#20 8.350 Turn off this advice by setting config variable advice.detachedHead to false
#20 8.350 
#20 8.350 HEAD is now at 8bc4698f Merge pull request #5480 from rjbou/config-invariant
#20 9.251 configure: Configuring OCaml version 4.14.1
#20 9.261 checking build system type... aarch64-unknown-linux-gnu
#20 9.353 checking host system type... aarch64-unknown-linux-gnu
#20 9.353 checking target system type... aarch64-unknown-linux-gnu
#20 9.355 checking for ld... ld
#20 9.357 checking how to print strings... printf
#20 9.360 checking for gcc... gcc
#20 9.393 checking whether the C compiler works... yes
#20 9.454 checking for C compiler default output file name... a.out
#20 9.456 checking for suffix of executables... 
#20 9.505 checking whether we are cross compiling... no
#20 9.561 checking for suffix of object files... o
#20 9.599 checking whether we are using the GNU C compiler... yes
#20 9.629 checking whether gcc accepts -g... yes
#20 9.655 checking for gcc option to accept ISO C89... none needed
#20 9.708 checking for a sed that does not truncate output... /usr/bin/sed
#20 9.715 checking for grep that handles long lines and -e... /usr/bin/grep
#20 9.718 checking for egrep... /usr/bin/grep -E
#20 9.720 checking for fgrep... /usr/bin/grep -F
#20 9.723 checking for ld used by gcc... ld
#20 9.726 checking if the linker (ld) is GNU ld... yes
#20 9.729 checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
#20 9.733 checking the name lister (/usr/bin/nm -B) interface... BSD nm
#20 9.771 checking whether ln -s works... yes
#20 9.771 checking the maximum length of command line arguments... 1572864
#20 9.781 checking how to convert aarch64-unknown-linux-gnu file names to aarch64-unknown-linux-gnu format... func_convert_file_noop
#20 9.781 checking how to convert aarch64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
#20 9.781 checking for ld option to reload object files... -r
#20 9.781 checking for objdump... objdump
#20 9.782 checking how to recognize dependent libraries... pass_all
#20 9.783 checking for dlltool... no
#20 9.783 checking how to associate runtime and link libraries... printf %s\n
#20 9.783 checking for ar... ar
#20 9.784 checking for archiver @FILE support... @
#20 9.829 checking for strip... strip
#20 9.829 checking for ranlib... ranlib
#20 9.830 checking for gawk... no
#20 9.830 checking for mawk... mawk
#20 9.831 checking command to parse /usr/bin/nm -B output from gcc object... ok
#20 9.947 checking for sysroot... no
#20 9.947 checking for a working dd... /usr/bin/dd
#20 9.953 checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
#20 9.959 checking for mt... no
#20 9.960 checking if : is a manifest tool... no
#20 9.966 checking how to run the C preprocessor... gcc -E
#20 10.07 checking for ANSI C header files... yes
#20 10.22 checking for sys/types.h... yes
#20 10.27 checking for sys/stat.h... yes
#20 10.32 checking for stdlib.h... yes
#20 10.37 checking for string.h... yes
#20 10.42 checking for memory.h... yes
#20 10.47 checking for strings.h... yes
#20 10.52 checking for inttypes.h... yes
#20 10.58 checking for stdint.h... yes
#20 10.63 checking for unistd.h... yes
#20 10.69 checking for dlfcn.h... yes
#20 10.74 checking for objdir... .libs
#20 10.85 checking if gcc supports -fno-rtti -fno-exceptions... no
#20 10.88 checking for gcc option to produce PIC... -fPIC -DPIC
#20 10.88 checking if gcc PIC flag -fPIC -DPIC works... yes
#20 10.92 checking if gcc static flag -static works... yes
#20 11.00 checking if gcc supports -c -o file.o... yes
#20 11.05 checking if gcc supports -c -o file.o... (cached) yes
#20 11.05 checking whether the gcc linker (ld) supports shared libraries... yes
#20 11.06 checking whether -lc should be explicitly linked in... no
#20 11.11 checking dynamic linker characteristics... GNU/Linux ld.so
#20 11.19 checking how to hardcode library paths into programs... immediate
#20 11.19 checking whether stripping libraries is possible... yes
#20 11.20 checking if libtool supports shared libraries... yes
#20 11.20 checking whether to build shared libraries... yes
#20 11.20 checking whether to build static libraries... yes
#20 11.20 checking C compiler vendor... gcc-12-2
#20 11.22 checking whether host executables can be run in the build... yes
#20 11.28 checking whether #! works in shell scripts... yes
#20 11.29 checking for flexdll sources... checking for flexlink... no
#20 11.29 checking flexdll.h usability... no
#20 11.33 checking flexdll.h presence... no
#20 11.36 checking for flexdll.h... no
#20 11.36 checking for a BSD-compatible install... /usr/bin/install -c
#20 11.37 checking for cos in -lm... yes
#20 11.44 checking math.h usability... yes
#20 11.49 checking math.h presence... yes
#20 11.52 checking for math.h... yes
#20 11.53 checking for unistd.h... (cached) yes
#20 11.53 checking for stdint.h... (cached) yes
#20 11.53 checking for dirent.h... yes
#20 11.56 checking for sys/select.h... yes
#20 11.59 checking for off_t... yes
#20 11.66 checking size of int... 4
#20 11.73 checking size of long... 8
#20 11.80 checking size of long *... 8
#20 11.88 checking size of short... 2
#20 11.96 checking size of long long... 8
#20 12.04 configure: Target is a 64 bits architecture
#20 12.04 checking whether byte ordering is bigendian... no
#20 12.15 checking alignment of double... 8
#20 12.23 checking alignment of long... 8
#20 12.30 checking alignment of long long... 8
#20 12.38 checking whether the C compiler supports __attribute__((aligned(n)))... yes
#20 12.41 checking whether the C compiler supports __attribute__((optimize("tree-vectorize")))... yes
#20 12.45 checking for ld... ld
#20 12.45 checking for rlwrap... no
#20 12.45 configure: checking semantics of signal handlers
#20 12.45 checking for sigaction... yes
#20 12.51 checking for sigprocmask... yes
#20 12.58 configure: POSIX signal handling found.
#20 12.58 checking for expm1... yes
#20 12.65 checking for log1p... yes
#20 12.73 checking for hypot... yes
#20 12.81 checking for fma... yes
#20 12.89 checking for exp2... yes
#20 12.98 checking for log2... yes
#20 13.06 checking for cbrt... yes
#20 13.13 checking for acosh... yes
#20 13.22 checking for asinh... yes
#20 13.30 checking for atanh... yes
#20 13.38 checking for erf... yes
#20 13.45 checking for erfc... yes
#20 13.53 checking for trunc... yes
#20 13.61 checking for round... yes
#20 13.70 checking for copysign... yes
#20 13.77 checking whether round works... yes
#20 13.84 checking whether fma works... yes
#20 13.91 checking for getrusage... yes
#20 13.98 checking for times... yes
#20 14.04 checking for secure_getenv... yes
#20 14.10 checking for issetugid... no
#20 14.20 checking for library containing clock_gettime... none required
#20 14.27 checking for socket... yes
#20 14.34 checking for socketpair... yes
#20 14.40 checking for bind... yes
#20 14.48 checking for listen... yes
#20 14.55 checking for accept... yes
#20 14.64 checking for connect... yes
#20 14.71 checking for socklen_t... yes
#20 14.79 checking for inet_aton... yes
#20 14.84 checking for struct sockaddr_in6... yes
#20 14.91 checking for getaddrinfo... yes
#20 14.97 checking for getnameinfo... yes
#20 15.03 checking for inet_pton... yes
#20 15.10 checking for inet_ntop... yes
#20 15.15 checking for rewinddir... yes
#20 15.21 checking for lockf... yes
#20 15.27 checking for mkfifo... yes
#20 15.33 checking for getcwd... yes
#20 15.40 checking whether system is declared... yes
#20 15.44 checking for sys/types.h... (cached) yes
#20 15.44 checking utime.h usability... yes
#20 15.48 checking utime.h presence... yes
#20 15.51 checking for utime.h... yes
#20 15.51 checking for utime... yes
#20 15.58 checking for utimes... yes
#20 15.64 checking for fchmod... yes
#20 15.71 checking for fchown... yes
#20 15.77 checking for truncate... yes
#20 15.82 checking for ftruncate... yes
#20 15.88 checking for select... yes
#20 15.95 checking for fd_set... yes
#20 16.02 checking for nanosleep... yes
#20 16.07 checking for symlink... yes
#20 16.13 checking for readlink... yes
#20 16.19 checking for lstat... yes
#20 16.24 checking for realpath... yes
#20 16.30 checking for waitpid... yes
#20 16.36 checking for wait4... yes
#20 16.43 checking for getgroups... yes
#20 16.49 checking for setgroups... yes
#20 16.56 checking for initgroups... yes
#20 16.62 checking termios.h usability... yes
#20 16.65 checking termios.h presence... yes
#20 16.68 checking for termios.h... yes
#20 16.68 checking for tcgetattr... yes
#20 16.74 checking for tcsetattr... yes
#20 16.81 checking for tcsendbreak... yes
#20 16.87 checking for tcflush... yes
#20 16.94 checking for tcflow... yes
#20 17.00 checking for setitimer... yes
#20 17.06 checking for gethostname... yes
#20 17.12 checking sys/utsname.h usability... yes
#20 17.16 checking sys/utsname.h presence... yes
#20 17.19 checking for sys/utsname.h... yes
#20 17.19 checking for uname... yes
#20 17.25 checking for gettimeofday... yes
#20 17.31 checking for mktime... yes
#20 17.36 checking for setsid... yes
#20 17.42 checking for putenv... yes
#20 17.48 checking for setenv... yes
#20 17.54 checking for unsetenv... yes
#20 17.59 checking locale.h usability... yes
#20 17.63 checking locale.h presence... yes
#20 17.65 checking for locale.h... yes
#20 17.65 checking for newlocale... yes
#20 17.71 checking for freelocale... yes
#20 17.77 checking for uselocale... yes
#20 17.83 checking xlocale.h usability... no
#20 17.87 checking xlocale.h presence... no
#20 17.89 checking for xlocale.h... no
#20 17.89 checking for strtod_l... yes
#20 17.96 checking for dlopen... yes
#20 18.03 configure: Dynamic loading of shared libraries is supported.
#20 18.03 checking sys/mman.h usability... yes
#20 18.06 checking sys/mman.h presence... yes
#20 18.08 checking for sys/mman.h... yes
#20 18.08 checking for mmap... yes
#20 18.15 checking for munmap... yes
#20 18.21 checking for pwrite... yes
#20 18.27 checking whether the C compiler supports -fdebug-prefix-map... yes
#20 18.31 checking for struct stat.st_atim.tv_nsec... yes
#20 18.35 configure: stat supports nanosecond precision
#20 18.35 checking how many arguments gethostbyname_r() takes... six
#20 18.41 checking how many arguments gethostbyaddr_r() takes... eight
#20 18.50 checking for mkstemp... yes
#20 18.55 checking for nice... yes
#20 18.61 checking for dup3... yes
#20 18.67 checking for pipe2... yes
#20 18.72 checking for accept4... yes
#20 18.79 checking for getauxval... yes
#20 18.85 checking sys/shm.h usability... yes
#20 18.90 checking sys/shm.h presence... yes
#20 18.92 checking for sys/shm.h... yes
#20 18.92 checking for shmat... yes
#20 18.99 checking for execvpe... yes
#20 19.06 checking spawn.h usability... yes
#20 19.09 checking spawn.h presence... yes
#20 19.12 checking for spawn.h... yes
#20 19.12 checking for posix_spawn... yes
#20 19.17 checking for posix_spawnp... yes
#20 19.24 checking for ffs... yes
#20 19.30 checking for _BitScanForward... no
#20 19.37 configure: replay debugger supported
#20 19.37 checking whether stack overflows can be detected... yes
#20 19.37 checking whether gcc is Clang... no
#20 19.40 checking whether pthreads work with "-pthread" and "-lpthread"... yes
#20 19.47 checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
#20 19.52 checking whether more special flags are required for pthreads... no
#20 19.52 checking for PTHREAD_PRIO_INHERIT... yes
#20 19.58 configure: the POSIX threads library is supported
#20 19.58 checking for sigwait... yes
#20 19.65 checking whether the assembler supports --debug-prefix-map... yes
#20 19.66 checking whether the assembler supports CFI directives... yes
#20 19.70 configure: not using frame pointers
#20 19.70 checking whether mmap supports huge pages... yes
#20 19.82 configure: creating ./config.status
#20 20.55 config.status: creating Makefile.build_config
#20 20.56 config.status: creating Makefile.config
#20 20.58 config.status: creating stdlib/sys.ml
#20 20.61 config.status: creating manual/src/version.tex
#20 20.63 config.status: creating manual/src/html_processing/src/common.ml
#20 20.66 config.status: creating tools/eventlog_metadata
#20 20.68 config.status: creating runtime/caml/m.h
#20 20.70 config.status: creating runtime/caml/s.h
#20 20.72 config.status: creating runtime/caml/version.h
#20 20.73 config.status: executing libtool commands
#20 20.82 make -j -C runtime sak
#20 20.82 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 20.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=  -o sak.o sak.c
#20 20.96 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 20.99 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 20.99 make -j coldstart
#20 20.99 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 21.00 make -j -C runtime all
#20 21.00 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 21.07 echo "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs" > ld.conf
#20 21.07 tr -d '\r' < caml/instruct.h | \
#20 21.07 sed -e '/\/\*/d' \
#20 21.07     -e '/^#/d' \
#20 21.07     -e 's/enum /static char * names_of_/' \
#20 21.07     -e 's/{$/[] = {/' \
#20 21.07     -e 's/\([[:upper:]][[:upper:]_0-9]*\)/"\1"/g' > caml/opnames.h
#20 21.07 tr -d '\r' < caml/instruct.h | \
#20 21.07 sed -n -e '/^  /s/ \([A-Z]\)/ \&\&lbl_\1/gp' \
#20 21.07        -e '/^}/q' > caml/jumptbl.h
#20 21.07 echo "/tmp/opam/bootstrap/ocaml/lib/ocaml" >> ld.conf
#20 21.07 echo '/* This file is generated from ../Makefile.config */' > build_config.h
#20 21.09 echo '#define OCAML_STDLIB_DIR "/tmp/opam/bootstrap/ocaml/lib/ocaml"' >> build_config.h
#20 21.09 cp primitives.new primitives
#20 21.09 echo '#define HOST "aarch64-unknown-linux-gnu"' >> build_config.h
#20 21.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=  -o interp.b.o interp.c
#20 21.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=  -o misc.b.o misc.c
#20 21.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=  -o stacks.b.o stacks.c
#20 21.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=  -o fix_code.b.o fix_code.c
#20 21.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=  -o startup_aux.b.o startup_aux.c
#20 21.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=  -o startup_byt.b.o startup_byt.c
#20 21.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=  -o freelist.b.o freelist.c
#20 21.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=  -o major_gc.b.o major_gc.c
#20 21.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=  -o minor_gc.b.o minor_gc.c
#20 21.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=  -o memory.b.o memory.c
#20 21.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=  -o alloc.b.o alloc.c
#20 21.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=  -o roots_byt.b.o roots_byt.c
#20 21.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=  -o globroots.b.o globroots.c
#20 21.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=  -o fail_byt.b.o fail_byt.c
#20 21.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=  -o signals.b.o signals.c
#20 21.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=  -o signals_byt.b.o signals_byt.c
#20 21.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=  -o printexc.b.o printexc.c
#20 21.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=  -o backtrace_byt.b.o backtrace_byt.c
#20 21.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=  -o backtrace.b.o backtrace.c
#20 21.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=  -o compare.b.o compare.c
#20 21.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=  -o ints.b.o ints.c
#20 21.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=  -o eventlog.b.o eventlog.c
#20 21.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=  -o floats.b.o floats.c
#20 21.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=  -o str.b.o str.c
#20 21.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=  -o array.b.o array.c
#20 21.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=  -o io.b.o io.c
#20 21.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=  -o extern.b.o extern.c
#20 21.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=  -o intern.b.o intern.c
#20 21.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=  -o hash.b.o hash.c
#20 21.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=  -o sys.b.o sys.c
#20 21.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=  -o meta.b.o meta.c
#20 21.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=  -o parsing.b.o parsing.c
#20 21.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=  -o gc_ctrl.b.o gc_ctrl.c
#20 21.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=  -o md5.b.o md5.c
#20 21.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=  -o obj.b.o obj.c
#20 21.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=  -o lexing.b.o lexing.c
#20 21.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=  -o callback.b.o callback.c
#20 21.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=  -o debugger.b.o debugger.c
#20 21.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=  -o weak.b.o weak.c
#20 21.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=  -o compact.b.o compact.c
#20 21.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=  -o finalise.b.o finalise.c
#20 21.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=  -o custom.b.o custom.c
#20 21.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=  -o dynlink.b.o dynlink.c
#20 21.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=  -o afl.b.o afl.c
#20 21.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=  -o unix.b.o unix.c
#20 21.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=  -o bigarray.b.o bigarray.c
#20 21.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=  -o main.b.o main.c
#20 21.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=  -o memprof.b.o memprof.c
#20 21.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=  -o domain.b.o domain.c
#20 21.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=  -o skiplist.b.o skiplist.c
#20 21.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=  -o codefrag.b.o codefrag.c
#20 21.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= -DDEBUG  -o interp.bd.o interp.c
#20 21.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= -DDEBUG  -o misc.bd.o misc.c
#20 21.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= -DDEBUG  -o stacks.bd.o stacks.c
#20 21.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= -DDEBUG  -o fix_code.bd.o fix_code.c
#20 21.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= -DDEBUG  -o startup_aux.bd.o startup_aux.c
#20 21.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= -DDEBUG  -o startup_byt.bd.o startup_byt.c
#20 21.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= -DDEBUG  -o freelist.bd.o freelist.c
#20 21.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= -DDEBUG  -o major_gc.bd.o major_gc.c
#20 21.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= -DDEBUG  -o minor_gc.bd.o minor_gc.c
#20 21.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= -DDEBUG  -o memory.bd.o memory.c
#20 21.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= -DDEBUG  -o alloc.bd.o alloc.c
#20 21.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= -DDEBUG  -o roots_byt.bd.o roots_byt.c
#20 21.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= -DDEBUG  -o globroots.bd.o globroots.c
#20 21.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= -DDEBUG  -o fail_byt.bd.o fail_byt.c
#20 21.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= -DDEBUG  -o signals.bd.o signals.c
#20 21.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= -DDEBUG  -o signals_byt.bd.o signals_byt.c
#20 21.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= -DDEBUG  -o printexc.bd.o printexc.c
#20 21.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= -DDEBUG  -o backtrace_byt.bd.o backtrace_byt.c
#20 21.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= -DDEBUG  -o backtrace.bd.o backtrace.c
#20 21.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= -DDEBUG  -o compare.bd.o compare.c
#20 21.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= -DDEBUG  -o ints.bd.o ints.c
#20 21.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= -DDEBUG  -o eventlog.bd.o eventlog.c
#20 21.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= -DDEBUG  -o floats.bd.o floats.c
#20 21.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= -DDEBUG  -o str.bd.o str.c
#20 21.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= -DDEBUG  -o array.bd.o array.c
#20 21.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= -DDEBUG  -o io.bd.o io.c
#20 21.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= -DDEBUG  -o extern.bd.o extern.c
#20 21.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= -DDEBUG  -o intern.bd.o intern.c
#20 21.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= -DDEBUG  -o hash.bd.o hash.c
#20 21.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= -DDEBUG  -o sys.bd.o sys.c
#20 21.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= -DDEBUG  -o meta.bd.o meta.c
#20 21.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= -DDEBUG  -o parsing.bd.o parsing.c
#20 21.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= -DDEBUG  -o gc_ctrl.bd.o gc_ctrl.c
#20 21.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= -DDEBUG  -o md5.bd.o md5.c
#20 21.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= -DDEBUG  -o obj.bd.o obj.c
#20 21.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= -DDEBUG  -o lexing.bd.o lexing.c
#20 21.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= -DDEBUG  -o callback.bd.o callback.c
#20 21.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= -DDEBUG  -o debugger.bd.o debugger.c
#20 21.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= -DDEBUG  -o weak.bd.o weak.c
#20 21.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= -DDEBUG  -o compact.bd.o compact.c
#20 21.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= -DDEBUG  -o finalise.bd.o finalise.c
#20 21.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= -DDEBUG  -o custom.bd.o custom.c
#20 21.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= -DDEBUG  -o dynlink.bd.o dynlink.c
#20 21.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= -DDEBUG  -o afl.bd.o afl.c
#20 21.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= -DDEBUG  -o unix.bd.o unix.c
#20 21.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= -DDEBUG  -o bigarray.bd.o bigarray.c
#20 21.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= -DDEBUG  -o main.bd.o main.c
#20 21.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= -DDEBUG  -o memprof.bd.o memprof.c
#20 21.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= -DDEBUG  -o domain.bd.o domain.c
#20 21.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= -DDEBUG  -o skiplist.bd.o skiplist.c
#20 21.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= -DDEBUG  -o codefrag.bd.o codefrag.c
#20 21.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= -DDEBUG  -o instrtrace.bd.o instrtrace.c
#20 21.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= -DCAML_INSTR  -o interp.bi.o interp.c
#20 21.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= -DCAML_INSTR  -o misc.bi.o misc.c
#20 21.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= -DCAML_INSTR  -o stacks.bi.o stacks.c
#20 21.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= -DCAML_INSTR  -o fix_code.bi.o fix_code.c
#20 21.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= -DCAML_INSTR  -o startup_aux.bi.o startup_aux.c
#20 21.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= -DCAML_INSTR  -o startup_byt.bi.o startup_byt.c
#20 21.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= -DCAML_INSTR  -o freelist.bi.o freelist.c
#20 21.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= -DCAML_INSTR  -o major_gc.bi.o major_gc.c
#20 21.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= -DCAML_INSTR  -o minor_gc.bi.o minor_gc.c
#20 21.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= -DCAML_INSTR  -o memory.bi.o memory.c
#20 21.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= -DCAML_INSTR  -o alloc.bi.o alloc.c
#20 21.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= -DCAML_INSTR  -o roots_byt.bi.o roots_byt.c
#20 21.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= -DCAML_INSTR  -o globroots.bi.o globroots.c
#20 21.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= -DCAML_INSTR  -o fail_byt.bi.o fail_byt.c
#20 21.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= -DCAML_INSTR  -o signals.bi.o signals.c
#20 21.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= -DCAML_INSTR  -o signals_byt.bi.o signals_byt.c
#20 21.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= -DCAML_INSTR  -o printexc.bi.o printexc.c
#20 21.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= -DCAML_INSTR  -o backtrace_byt.bi.o backtrace_byt.c
#20 21.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= -DCAML_INSTR  -o backtrace.bi.o backtrace.c
#20 21.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= -DCAML_INSTR  -o compare.bi.o compare.c
#20 21.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= -DCAML_INSTR  -o ints.bi.o ints.c
#20 21.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= -DCAML_INSTR  -o eventlog.bi.o eventlog.c
#20 21.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= -DCAML_INSTR  -o floats.bi.o floats.c
#20 21.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= -DCAML_INSTR  -o str.bi.o str.c
#20 21.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= -DCAML_INSTR  -o array.bi.o array.c
#20 21.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= -DCAML_INSTR  -o io.bi.o io.c
#20 21.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= -DCAML_INSTR  -o extern.bi.o extern.c
#20 21.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= -DCAML_INSTR  -o intern.bi.o intern.c
#20 21.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= -DCAML_INSTR  -o hash.bi.o hash.c
#20 21.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= -DCAML_INSTR  -o sys.bi.o sys.c
#20 21.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= -DCAML_INSTR  -o meta.bi.o meta.c
#20 21.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= -DCAML_INSTR  -o parsing.bi.o parsing.c
#20 21.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= -DCAML_INSTR  -o gc_ctrl.bi.o gc_ctrl.c
#20 21.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= -DCAML_INSTR  -o md5.bi.o md5.c
#20 21.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= -DCAML_INSTR  -o obj.bi.o obj.c
#20 21.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= -DCAML_INSTR  -o lexing.bi.o lexing.c
#20 21.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= -DCAML_INSTR  -o callback.bi.o callback.c
#20 21.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= -DCAML_INSTR  -o debugger.bi.o debugger.c
#20 21.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= -DCAML_INSTR  -o weak.bi.o weak.c
#20 21.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= -DCAML_INSTR  -o compact.bi.o compact.c
#20 21.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= -DCAML_INSTR  -o finalise.bi.o finalise.c
#20 21.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= -DCAML_INSTR  -o custom.bi.o custom.c
#20 21.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= -DCAML_INSTR  -o dynlink.bi.o dynlink.c
#20 21.34 gcc -c -O2 -fno-strict-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 21.34 gcc -c -O2 -fno-strict-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 21.34 gcc -c -O2 -fno-strict-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 21.34 gcc -c -O2 -fno-strict-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 21.34 gcc -c -O2 -fno-strict-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 21.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= -DCAML_INSTR  -o domain.bi.o domain.c
#20 21.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= -DCAML_INSTR  -o skiplist.bi.o skiplist.c
#20 21.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= -DCAML_INSTR  -o codefrag.bi.o codefrag.c
#20 21.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  -DCAMLDLLIMPORT=  -o interp.bpic.o interp.c
#20 21.36 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 21.36 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 21.36 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 21.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  -DCAMLDLLIMPORT=  -o startup_aux.bpic.o startup_aux.c
#20 21.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  -DCAMLDLLIMPORT=  -o startup_byt.bpic.o startup_byt.c
#20 21.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  -DCAMLDLLIMPORT=  -o freelist.bpic.o freelist.c
#20 21.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  -DCAMLDLLIMPORT=  -o major_gc.bpic.o major_gc.c
#20 21.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  -DCAMLDLLIMPORT=  -o minor_gc.bpic.o minor_gc.c
#20 21.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  -DCAMLDLLIMPORT=  -o memory.bpic.o memory.c
#20 21.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  -DCAMLDLLIMPORT=  -o alloc.bpic.o alloc.c
#20 21.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=  -o roots_byt.bpic.o roots_byt.c
#20 21.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  -DCAMLDLLIMPORT=  -o globroots.bpic.o globroots.c
#20 21.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  -DCAMLDLLIMPORT=  -o fail_byt.bpic.o fail_byt.c
#20 21.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  -DCAMLDLLIMPORT=  -o signals.bpic.o signals.c
#20 21.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  -DCAMLDLLIMPORT=  -o signals_byt.bpic.o signals_byt.c
#20 21.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  -DCAMLDLLIMPORT=  -o printexc.bpic.o printexc.c
#20 21.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  -DCAMLDLLIMPORT=  -o backtrace_byt.bpic.o backtrace_byt.c
#20 21.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  -DCAMLDLLIMPORT=  -o backtrace.bpic.o backtrace.c
#20 21.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  -DCAMLDLLIMPORT=  -o compare.bpic.o compare.c
#20 21.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  -DCAMLDLLIMPORT=  -o ints.bpic.o ints.c
#20 21.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  -DCAMLDLLIMPORT=  -o eventlog.bpic.o eventlog.c
#20 21.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  -DCAMLDLLIMPORT=  -o floats.bpic.o floats.c
#20 21.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  -DCAMLDLLIMPORT=  -o str.bpic.o str.c
#20 21.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  -DCAMLDLLIMPORT=  -o array.bpic.o array.c
#20 21.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  -DCAMLDLLIMPORT=  -o io.bpic.o io.c
#20 21.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  -DCAMLDLLIMPORT=  -o extern.bpic.o extern.c
#20 21.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  -DCAMLDLLIMPORT=  -o intern.bpic.o intern.c
#20 21.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  -DCAMLDLLIMPORT=  -o hash.bpic.o hash.c
#20 21.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  -DCAMLDLLIMPORT=  -o sys.bpic.o sys.c
#20 21.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  -DCAMLDLLIMPORT=  -o meta.bpic.o meta.c
#20 21.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  -DCAMLDLLIMPORT=  -o parsing.bpic.o parsing.c
#20 21.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  -DCAMLDLLIMPORT=  -o gc_ctrl.bpic.o gc_ctrl.c
#20 21.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  -DCAMLDLLIMPORT=  -o md5.bpic.o md5.c
#20 21.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  -DCAMLDLLIMPORT=  -o obj.bpic.o obj.c
#20 21.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  -DCAMLDLLIMPORT=  -o lexing.bpic.o lexing.c
#20 21.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  -DCAMLDLLIMPORT=  -o callback.bpic.o callback.c
#20 21.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=  -o debugger.bpic.o debugger.c
#20 21.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=  -o weak.bpic.o weak.c
#20 21.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=  -o compact.bpic.o compact.c
#20 21.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=  -o finalise.bpic.o finalise.c
#20 21.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=  -o custom.bpic.o custom.c
#20 21.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=  -o dynlink.bpic.o dynlink.c
#20 21.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=  -o afl.bpic.o afl.c
#20 21.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=  -o unix.bpic.o unix.c
#20 21.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=  -o bigarray.bpic.o bigarray.c
#20 21.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=  -o main.bpic.o main.c
#20 21.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=  -o memprof.bpic.o memprof.c
#20 21.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=  -o domain.bpic.o domain.c
#20 21.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=  -o skiplist.bpic.o skiplist.c
#20 21.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=  -o codefrag.bpic.o codefrag.c
#20 21.49 (echo '#define CAML_INTERNALS'; \
#20 21.49          echo '#include "caml/mlvalues.h"'; \
#20 21.49  echo '#include "caml/prims.h"'; \
#20 21.49  sed -e 's/.*/extern value &();/' primitives; \
#20 21.49  echo 'c_primitive caml_builtin_cprim[] = {'; \
#20 21.49  sed -e 's/.*/  &,/' primitives; \
#20 21.49  echo '  0 };'; \
#20 21.49  echo 'char * caml_names_of_builtin_cprim[] = {'; \
#20 21.49  sed -e 's/.*/  "&",/' primitives; \
#20 21.49  echo '  0 };') > prims.c
#20 21.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=  \
#20 21.50   -o prims.o prims.c
#20 21.78 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 21.80 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 21.82 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 21.84 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 21.92 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 21.95 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 22.04 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 22.04 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 22.10 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 22.11 make -j -C stdlib \
#20 22.11   OCAMLRUN='$(ROOTDIR)/runtime/ocamlrun' \
#20 22.11   CAMLC='$(BOOT_OCAMLC) -use-prims ../runtime/primitives' all
#20 22.11 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 22.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  -nopervasives -c camlinternalFormatBasics.mli
#20 22.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  -nopervasives -c camlinternalAtomic.mli
#20 22.12 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrun' > camlheader
#20 22.12 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrun' > target_camlheader
#20 22.12 echo '#!' | tr -d '\012' > camlheader_ur
#20 22.12 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrund' > camlheaderd
#20 22.12 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrund' > target_camlheaderd
#20 22.12 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlruni' > camlheaderi
#20 22.12 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlruni' > target_camlheaderi
#20 22.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  -nopervasives -c camlinternalAtomic.ml
#20 22.23 ../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 22.24 ../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 22.31 ../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 22.31 ../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 22.31          -o stdlib__Pervasives.cmo -c pervasives.ml
#20 22.31 ../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 22.31          -o stdlib__Either.cmi -c either.mli
#20 22.31 ../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 22.31          -o stdlib__Sys.cmi -c sys.mli
#20 22.32 ../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 22.32          -o stdlib__Nativeint.cmi -c nativeint.mli
#20 22.32 ../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 22.32          -o stdlib__Int32.cmi -c int32.mli
#20 22.32 ../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 22.32 ../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 22.32          -o stdlib__Bool.cmi -c bool.mli
#20 22.32 ../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 22.32          -o stdlib__Char.cmi -c char.mli
#20 22.32 ../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 22.32          -o stdlib__Uchar.cmi -c uchar.mli
#20 22.32 ../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 22.32          -o stdlib__Int.cmi -c int.mli
#20 22.32 ../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 22.32          -o stdlib__Unit.cmi -c unit.mli
#20 22.33 ../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 22.33          -o stdlib__Marshal.cmi -c marshal.mli
#20 22.33 ../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 22.33          -o stdlib__Int64.cmi -c int64.mli
#20 22.33 ../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 22.33          -o stdlib__Lexing.cmi -c lexing.mli
#20 22.33 ../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 22.33          -o stdlib__Stream.cmi -c stream.mli
#20 22.33 ../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 22.33          -o stdlib__Arg.cmi -c arg.mli
#20 22.33 ../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 22.33          -o stdlib__Atomic.cmi -c atomic.mli
#20 22.33 ../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 22.33          -o stdlib__Printexc.cmi -c printexc.mli
#20 22.33 ../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 22.33          -o stdlib__Fun.cmi -c fun.mli
#20 22.33 ../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 22.33          -o stdlib__Digest.cmi -c digest.mli
#20 22.34 ../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 22.34          -o stdlib__Scanf.cmi -c scanf.mli
#20 22.34 ../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 22.34          -o stdlib__Callback.cmi -c callback.mli
#20 22.34 ../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 22.34          -o stdlib__Filename.cmi -c filename.mli
#20 22.34 ../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 22.34          -o stdlib__Complex.cmi -c complex.mli
#20 22.34 ../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 22.34          -o stdlib__In_channel.cmi -c in_channel.mli
#20 22.34 ../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 22.34          -o stdlib__Out_channel.cmi -c out_channel.mli
#20 22.34 ../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 22.35 ../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 22.35          -o stdlib__Either.cmo -c either.ml
#20 22.35 ../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 22.35          -o stdlib__Lazy.cmi -c lazy.mli
#20 22.35 ../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 22.35          -o stdlib__Seq.cmi -c seq.mli
#20 22.35 ../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 22.35          -o stdlib__Bool.cmo -c bool.ml
#20 22.35 ../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 22.35          -o stdlib__Unit.cmo -c unit.ml
#20 22.35 ../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 22.35          -o stdlib__Int32.cmo -c int32.ml
#20 22.35 ../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 22.35          -o stdlib__Nativeint.cmo -c nativeint.ml
#20 22.35 ../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 22.35          -o stdlib__Genlex.cmi -c genlex.mli
#20 22.36 ../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 22.36          -o stdlib__Sys.cmo -c sys.ml
#20 22.36 ../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 22.36          -o stdlib__Obj.cmi -c obj.mli
#20 22.36 ../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 22.36          -o stdlib__Char.cmo -c char.ml
#20 22.36 ../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 22.36          -o stdlib__Uchar.cmo -c uchar.ml
#20 22.36 ../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 22.36          -o stdlib__Int.cmo -c int.ml
#20 22.36 ../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 22.36          -o stdlib__Int64.cmo -c int64.ml
#20 22.37 ../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 22.37          -o stdlib__Atomic.cmo -c atomic.ml
#20 22.37 ../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 22.37          -o stdlib__Fun.cmo -c fun.ml
#20 22.37 ../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 22.37          -o stdlib__Gc.cmi -c gc.mli
#20 22.37 ../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 22.37          -o stdlib__Random.cmi -c random.mli
#20 22.37 ../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 22.37          -o stdlib__Complex.cmo -c complex.ml
#20 22.37 ../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 22.37          -o stdlib__Bigarray.cmi -c bigarray.mli
#20 22.37 ../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 22.37          -o stdlib__Out_channel.cmo -c out_channel.ml
#20 22.39 ../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 22.39          -o stdlib__Obj.cmo -c obj.ml
#20 22.39 ../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 22.39 ../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 22.39          -o stdlib__Lazy.cmo -c lazy.ml
#20 22.39 ../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 22.39          -o stdlib__Seq.cmo -c seq.ml
#20 22.40 ../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 22.40          -o stdlib__Option.cmi -c option.mli
#20 22.40 ../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 22.40          -o stdlib__Result.cmi -c result.mli
#20 22.40 ../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 22.40          -o stdlib__List.cmi -c list.mli
#20 22.40 ../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 22.40          -o stdlib__Bytes.cmi -c bytes.mli
#20 22.40 ../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 22.40          -o stdlib__String.cmi -c string.mli
#20 22.40 ../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 22.40          -o stdlib__Array.cmi -c array.mli
#20 22.40 ../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 22.40          -o stdlib__Float.cmi -c float.mli
#20 22.40 ../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 22.40          -o stdlib__Parsing.cmi -c parsing.mli
#20 22.40 ../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 22.40          -o stdlib__Set.cmi -c set.mli
#20 22.41 ../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 22.41          -o stdlib__Map.cmi -c map.mli
#20 22.41 ../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 22.41          -o stdlib__Stack.cmi -c stack.mli
#20 22.41 ../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 22.41          -o stdlib__Queue.cmi -c queue.mli
#20 22.41 ../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 22.41          -o stdlib__Buffer.cmi -c buffer.mli
#20 22.41 ../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 22.41          -o stdlib__Hashtbl.cmi -c hashtbl.mli
#20 22.41 ../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 22.41          -o stdlib__Callback.cmo -c callback.ml
#20 22.41 ../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 22.41 ../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 22.41 ../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 22.41          -o stdlib__ArrayLabels.cmi -c arrayLabels.mli
#20 22.41 ../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 22.41          -o stdlib__ListLabels.cmi -c listLabels.mli
#20 22.42 ../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 22.42          -o stdlib__BytesLabels.cmi -c bytesLabels.mli
#20 22.42 ../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 22.42          -o stdlib__StringLabels.cmi -c stringLabels.mli
#20 22.42 ../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 22.42          -o stdlib__Option.cmo -c option.ml
#20 22.43 ../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 22.43          -o stdlib__Queue.cmo -c queue.ml
#20 22.44 ../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 22.44          -o stdlib__Result.cmo -c result.ml
#20 22.44 ../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 22.44          -o stdlib__Array.cmo -c array.ml
#20 22.44 ../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 22.44          -o stdlib__Parsing.cmo -c parsing.ml
#20 22.44 ../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 22.44 ../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 22.44          -o stdlib__Printf.cmi -c printf.mli
#20 22.44 ../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 22.44          -o stdlib__Format.cmi -c format.mli
#20 22.44 ../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 22.44          -o stdlib__Bigarray.cmo -c bigarray.ml
#20 22.45 ../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 22.45          -o stdlib__Bytes.cmo -c bytes.ml
#20 22.45 ../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 22.45          -o stdlib__Marshal.cmo -c marshal.ml
#20 22.45 ../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 22.45          -o stdlib__Oo.cmi -c oo.mli
#20 22.45 ../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 22.45 ../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 22.45          -o stdlib__In_channel.cmo -c in_channel.ml
#20 22.46 ../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 22.46          -o stdlib__List.cmo -c list.ml
#20 22.46 ../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 22.46          -o stdlib__String.cmo -c string.ml
#20 22.46 ../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 22.46          -o stdlib__Lexing.cmo -c lexing.ml
#20 22.46 ../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 22.46          -o stdlib__Set.cmo -c set.ml
#20 22.46 ../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 22.46          -o stdlib__Map.cmo -c map.ml
#20 22.46 ../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 22.46          -o stdlib__Stack.cmo -c stack.ml
#20 22.46 ../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 22.46          -o stdlib__Stream.cmo -c stream.ml
#20 22.46 ../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 22.46          -o stdlib__Buffer.cmo -c buffer.ml
#20 22.47 ../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 22.47          -o stdlib__Digest.cmo -c digest.ml
#20 22.47 ../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 22.47          -o stdlib__Random.cmo -c random.ml
#20 22.47 ../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 22.47 ../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 22.47          -o stdlib__ArrayLabels.cmo -c arrayLabels.ml
#20 22.47 ../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 22.47          -o stdlib__BytesLabels.cmo -c bytesLabels.ml
#20 22.47 ../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 22.47          -o stdlib__StringLabels.cmo -c stringLabels.ml
#20 22.47 ../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 22.47          -o stdlib__MoreLabels.cmi -c moreLabels.mli
#20 22.48 ../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 22.48          -o stdlib__StdLabels.cmi -c stdLabels.mli
#20 22.48 ../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 22.48          -o stdlib__Float.cmo -c float.ml
#20 22.48 ../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 22.48          -o stdlib__Hashtbl.cmo -c hashtbl.ml
#20 22.48 ../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 22.48          -o stdlib__Weak.cmi -c weak.mli
#20 22.48 ../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 22.48          -o stdlib__Oo.cmo -c oo.ml
#20 22.48 ../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 22.48          -o stdlib__Genlex.cmo -c genlex.ml
#20 22.48 ../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 22.48          -o stdlib__Ephemeron.cmi -c ephemeron.mli
#20 22.49 ../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 22.49          -o stdlib__Filename.cmo -c filename.ml
#20 22.49 ../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 22.49          -o stdlib__ListLabels.cmo -c listLabels.ml
#20 22.49 ../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 22.49 ../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 22.49          -o stdlib__Printf.cmo -c printf.ml
#20 22.49 ../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 22.49          -o stdlib__Arg.cmo -c arg.ml
#20 22.49 ../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 22.49          -o stdlib__Printexc.cmo -c printexc.ml
#20 22.50 ../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 22.50          -o stdlib__Gc.cmo -c gc.ml
#20 22.50 ../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 22.50          -o stdlib__Scanf.cmo -c scanf.ml
#20 22.51 ../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 22.51          -o stdlib__StdLabels.cmo -c stdLabels.ml
#20 22.51 ../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 22.51          -o stdlib__Weak.cmo -c weak.ml
#20 22.52 ../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 22.52          -o stdlib__Format.cmo -c format.ml
#20 22.58 ../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 22.58          -o stdlib__Ephemeron.cmo -c ephemeron.ml
#20 22.60 ../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 22.60          -o stdlib__MoreLabels.cmo -c moreLabels.ml
#20 24.17 ../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 24.20 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 24.20 cp runtime/ocamlrun boot/ocamlrun
#20 24.20 cd boot; rm -f stdlib.cma std_exit.cmo *.cmi camlheader
#20 24.20 cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
#20 24.22 cd boot; ln -sf ../runtime/libcamlrun.a .
#20 24.22 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 24.22 make -j opt.opt
#20 24.22 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 24.24 make -j checkstack
#20 24.24 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 24.26 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 24.26   -o tools/checkstack.o tools/checkstack.c
#20 24.30 make -j -C tools  checkstack
#20 24.30 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 24.31 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 24.34 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 24.34 tools/checkstack
#20 24.34 rm tools/checkstack tools/checkstack.o
#20 24.34 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 24.34 make -j coreall
#20 24.34 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 24.36 make -j -C runtime  all
#20 24.36 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 24.45 make[3]: Nothing to be done for 'all'.
#20 24.45 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 24.45 cd stdlib; ln -sf ../runtime/libcamlrun.a .
#20 24.45 make -j ocamlc
#20 24.45 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 24.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 utils/warnings.mli
#20 24.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 parsing/longident.mli
#20 24.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 utils/build_path_prefix_map.mli
#20 24.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 utils/identifiable.mli
#20 24.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 utils/load_path.mli
#20 24.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/allocated_const.mli
#20 24.46 make -j -C utils config.ml
#20 24.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 utils/config.mli
#20 24.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 utils/arg_helper.mli
#20 24.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 utils/profile.mli
#20 24.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 utils/local_store.mli
#20 24.46 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/utils'
#20 24.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 utils/terminfo.mli
#20 24.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 utils/ccomp.mli
#20 24.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 utils/targetint.mli
#20 24.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 utils/int_replace_polymorphic_compare.mli
#20 24.47 gcc -E -I runtime/caml utils/domainstate.ml.c > utils/domainstate.ml
#20 24.47 gcc -E -I runtime/caml utils/domainstate.mli.c > utils/domainstate.mli
#20 24.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/binutils.mli
#20 24.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/lazy_backtrack.mli
#20 24.47 cp boot/menhir/menhirLib.ml parsing/camlinternalMenhirLib.ml
#20 24.47 echo '[@@@ocaml.warning "-67"]' > parsing/camlinternalMenhirLib.mli
#20 24.47 ./boot/ocamlrun ./boot/ocamllex -q parsing/lexer.mll
#20 24.47 sed -e 's!%%AFL_INSTRUMENT%%!false!' \
#20 24.47     -e 's!%%ARCH%%!arm64!' \
#20 24.47     -e 's!%%ARCMD%%!ar!' \
#20 24.47     -e 's!%%ASM%%!as!' \
#20 24.47     -e 's!%%ASM_CFI_SUPPORTED%%!true!' \
#20 24.47     -e 's!%%BYTECCLIBS%%!-lm  -lpthread!' \
#20 24.47     -e 's!%%CC%%!gcc!' \
#20 24.47     -e 's!%%CCOMPTYPE%%!cc!' \
#20 24.47     -e 's!%%OUTPUTOBJ%%!-o !' \
#20 24.47     -e 's!%%EXT_ASM%%!.s!' \
#20 24.47     -e 's!%%EXT_DLL%%!.so!' \
#20 24.47     -e 's!%%EXE%%!!' \
#20 24.47     -e 's!%%EXT_LIB%%!.a!' \
#20 24.47     -e 's!%%EXT_OBJ%%!.o!' \
#20 24.47     -e 's!%%FLAMBDA%%!false!' \
#20 24.47     -e 's!%%WITH_FLAMBDA_INVARIANTS%%!false!' \
#20 24.47     -e 's!%%WITH_CMM_INVARIANTS%%!false!' \
#20 24.47     -e 's!%%FLEXLINK_FLAGS%%!!' \
#20 24.47     -e 's!%%FLEXDLL_DIR%%!!' \
#20 24.47     -e 's!%%HOST%%!aarch64-unknown-linux-gnu!' \
#20 24.47     -e 's!%%BINDIR%%!/tmp/opam/bootstrap/ocaml/bin!' \
#20 24.47     -e 's!%%LIBDIR%%!/tmp/opam/bootstrap/ocaml/lib/ocaml!' \
#20 24.47     -e 's!%%MKDLL%%!gcc -shared !' \
#20 24.47     -e 's!%%MKEXE%%!gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -Wl,-E !' \
#20 24.47     -e 's!%%FLEXLINK_LDFLAGS%%! -link \\"-Wl,-E\\"!' \
#20 24.47     -e 's!%%FLEXLINK_DLL_LDFLAGS%%!!' \
#20 24.47     -e 's!%%MKMAINDLL%%!gcc -shared !' \
#20 24.47     -e 's!%%MODEL%%!default!' \
#20 24.47     -e 's!%%NATIVECCLIBS%%!-lm !' \
#20 24.47     -e 's!%%OCAMLC_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC !' \
#20 24.47     -e 's!%%OCAMLC_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 !' \
#20 24.47     -e 's!%%OCAMLOPT_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC !' \
#20 24.47     -e 's!%%OCAMLOPT_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 !' \
#20 24.47     -e 's!%%PACKLD%%!ld -r -o !' \
#20 24.47     -e 's!%%PROFINFO_WIDTH%%!0!' \
#20 24.47     -e 's!%%RPATH%%!-Wl,-rpath,!' \
#20 24.47     -e 's!%%MKSHAREDLIBRPATH%%!-Wl,-rpath,!' \
#20 24.47     -e 's!%%FORCE_SAFE_STRING%%!true!' \
#20 24.47     -e 's!%%DEFAULT_SAFE_STRING%%!true!' \
#20 24.47     -e 's!%%WINDOWS_UNICODE%%!0!' \
#20 24.47     -e 's!%%NAKED_POINTERS%%!true!' \
#20 24.47     -e 's!%%SUPPORTS_SHARED_LIBRARIES%%!true!' \
#20 24.47     -e 's!%%SYSTEM%%!linux!' \
#20 24.47     -e 's!%%SYSTHREAD_SUPPORT%%!true!' \
#20 24.47     -e 's!%%TARGET%%!aarch64-unknown-linux-gnu!' \
#20 24.47     -e 's!%%WITH_FRAME_POINTERS%%!false!' \
#20 24.47     -e 's!%%WITH_PROFINFO%%!false!' \
#20 24.47     -e 's!%%FLAT_FLOAT_ARRAY%%!true!' \
#20 24.47     -e 's!%%FUNCTION_SECTIONS%%!true!' \
#20 24.47     -e 's!%%CC_HAS_DEBUG_PREFIX_MAP%%!true!' \
#20 24.47     -e 's!%%AS_HAS_DEBUG_PREFIX_MAP%%!true!' \
#20 24.47     config.mlp > config.ml
#20 24.47 cat boot/menhir/menhirLib.mli >> parsing/camlinternalMenhirLib.mli
#20 24.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 lambda/switch.mli
#20 24.47 lambda/generate_runtimedef.sh runtime/caml/fail.h runtime/primitives > lambda/runtimedef.ml
#20 24.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 lambda/runtimedef.mli
#20 24.47 make -j -C tools make_opcodes
#20 24.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 bytecomp/bytesections.mli
#20 24.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 bytecomp/dll.mli
#20 24.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/main_args.mli
#20 24.48 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 24.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/makedepend.mli
#20 24.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 bytecomp/bytelibrarian.mli
#20 24.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/errors.mli
#20 24.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/maindriver.mli
#20 24.48 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/utils'
#20 24.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 parsing/camlinternalMenhirLib.mli
#20 24.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 utils/domainstate.mli
#20 24.49 ../boot/ocamlrun ../boot/ocamllex -q make_opcodes.mll
#20 24.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 utils/misc.mli
#20 24.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 utils/build_path_prefix_map.ml -I utils
#20 24.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 utils/terminfo.ml -I utils
#20 24.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 utils/int_replace_polymorphic_compare.ml -I utils
#20 24.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 utils/local_store.ml -I utils
#20 24.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 utils/binutils.ml -I utils
#20 24.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 utils/config.ml -I utils
#20 24.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 utils/lazy_backtrack.ml -I utils
#20 24.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 parsing/location.mli
#20 24.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 lambda/runtimedef.ml -I lambda
#20 24.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 utils/arg_helper.ml -I utils
#20 24.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 bytecomp/bytesections.ml -I bytecomp
#20 24.51 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. make_opcodes.ml -o make_opcodes
#20 24.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 lambda/switch.ml -I lambda
#20 24.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 driver/main.ml -I driver
#20 24.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 utils/domainstate.ml -I utils
#20 24.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/asttypes.mli
#20 24.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 typing/annot.mli
#20 24.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/syntaxerr.mli
#20 24.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 driver/errors.ml -I driver
#20 24.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/syntaxerr.ml -I parsing
#20 24.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 file_formats/cmxs_format.mli
#20 24.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 utils/misc.ml -I utils
#20 24.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 utils/clflags.mli
#20 24.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 utils/profile.ml -I utils
#20 24.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 utils/load_path.ml -I utils
#20 24.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 utils/warnings.ml -I utils
#20 24.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 utils/consistbl.mli
#20 24.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 utils/targetint.ml -I utils
#20 24.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 utils/diffing.mli
#20 24.59 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 24.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/longident.ml -I parsing
#20 24.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 bytecomp/dll.ml -I bytecomp
#20 24.59 ./runtime/ocamlrun tools/make_opcodes -opcodes < runtime/caml/instruct.h > bytecomp/opcodes.ml
#20 24.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 parsing/parsetree.mli
#20 24.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -i bytecomp/opcodes.ml > bytecomp/opcodes.mli
#20 24.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/camlinternalMenhirLib.ml -I parsing
#20 24.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 typing/ident.mli
#20 24.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 middle_end/linkage_name.mli
#20 24.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 middle_end/flambda/base_types/tag.mli
#20 24.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 middle_end/flambda/base_types/static_exception.mli
#20 24.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 utils/numbers.mli
#20 24.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 utils/identifiable.ml -I utils
#20 24.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 utils/strongly_connected_components.mli
#20 24.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 utils/diffing.ml -I utils
#20 24.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 utils/diffing_with_keys.mli
#20 24.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 utils/consistbl.ml -I utils
#20 24.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 utils/ccomp.ml -I utils
#20 24.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 parsing/location.ml -I parsing
#20 24.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 driver/compenv.mli
#20 24.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 bytecomp/opcodes.mli
#20 24.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 utils/diffing_with_keys.ml -I utils
#20 24.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 bytecomp/opcodes.ml -I bytecomp
#20 24.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 typing/type_immediacy.mli
#20 24.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.mli
#20 24.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/pprintast.mli
#20 24.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/parse.mli
#20 24.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.mli
#20 24.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_mapper.mli
#20 24.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_iterator.mli
#20 24.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/attr_helper.mli
#20 24.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/builtin_attributes.mli
#20 24.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_invariants.mli
#20 24.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/depend.mli
#20 24.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 typing/ident.ml -I typing
#20 24.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 driver/pparse.mli
#20 24.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 typing/path.mli
#20 24.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 lambda/debuginfo.mli
#20 24.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/compilation_unit.mli
#20 24.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 driver/compenv.ml -I driver
#20 24.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 driver/main_args.ml -I driver
#20 24.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 utils/numbers.ml -I utils
#20 24.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 utils/clflags.ml -I utils
#20 24.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 utils/strongly_connected_components.ml -I utils
#20 24.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 parsing/attr_helper.ml -I parsing
#20 24.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 typing/outcometree.mli
#20 24.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 parsing/docstrings.ml -I parsing
#20 24.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 parsing/ast_helper.mli
#20 24.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 parsing/printast.ml -I parsing
#20 24.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 parsing/ast_iterator.ml -I parsing
#20 24.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 parsing/builtin_attributes.ml -I parsing
#20 24.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 parsing/ast_invariants.ml -I parsing
#20 24.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 typing/type_immediacy.ml -I typing
#20 24.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 lambda/debuginfo.ml -I lambda
#20 24.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 parsing/depend.ml -I parsing
#20 24.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 driver/pparse.ml -I driver
#20 24.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 typing/shape.mli
#20 24.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/backend_var.mli
#20 24.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 typing/path.ml -I typing
#20 24.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 24.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/export_id.mli
#20 24.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 typing/primitive.mli
#20 24.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 typing/oprint.mli
#20 24.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 typing/primitive.ml -I typing
#20 24.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 typing/oprint.ml -I typing
#20 24.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 parsing/ast_helper.ml -I parsing
#20 24.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 parsing/pprintast.ml -I parsing
#20 24.81 sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.ml > parsing/parser.ml
#20 24.81 sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.mli > parsing/parser.mli
#20 24.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 parsing/ast_mapper.ml -I parsing
#20 24.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/base_types/set_of_closures_origin.mli
#20 24.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 parsing/parser.mli
#20 24.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 typing/types.mli
#20 24.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 typing/shape.ml -I typing
#20 24.87 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 24.87 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 24.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 parsing/lexer.ml -I parsing
#20 24.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 parsing/parse.ml -I parsing
#20 24.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 driver/makedepend.ml -I driver
#20 24.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 typing/subst.mli
#20 24.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 file_formats/cmi_format.mli
#20 24.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 typing/types.ml -I typing
#20 24.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 typing/btype.mli
#20 24.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 typing/predef.mli
#20 24.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 typing/datarepr.mli
#20 24.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 typing/errortrace.mli
#20 24.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 typing/signature_group.mli
#20 24.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 file_formats/cmi_format.ml -I file_formats
#20 24.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 typing/persistent_env.mli
#20 24.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 typing/env.mli
#20 25.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 typing/errortrace.ml -I typing
#20 25.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/btype.ml -I typing
#20 25.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/subst.ml -I typing
#20 25.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/predef.ml -I typing
#20 25.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/datarepr.ml -I typing
#20 25.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/signature_group.ml -I typing
#20 25.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 typing/persistent_env.ml -I typing
#20 25.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 lambda/lambda.mli
#20 25.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 typing/env.ml -I typing
#20 25.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 typing/typedtree.mli
#20 25.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 typing/ctype.mli
#20 25.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 typing/printtyp.mli
#20 25.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 typing/mtype.mli
#20 25.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 typing/envaux.mli
#20 25.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 typing/typedecl_properties.mli
#20 25.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 typing/typedecl_unboxed.mli
#20 25.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 driver/compmisc.mli
#20 25.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 bytecomp/bytepackager.mli
#20 25.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 typing/typedecl_properties.ml -I typing
#20 25.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 typing/typedecl_immediacy.mli
#20 25.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 typing/typedecl_separability.mli
#20 25.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 typing/envaux.ml -I typing
#20 25.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/ctype.ml -I typing
#20 25.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/printtyp.ml -I typing
#20 25.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/includeclass.mli
#20 25.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/mtype.ml -I typing
#20 25.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_unboxed.ml -I typing
#20 25.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 file_formats/cmo_format.mli
#20 25.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/internal_variable_names.mli
#20 25.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/clambda_primitives.mli
#20 25.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 lambda/lambda.ml -I lambda
#20 25.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 lambda/printlambda.mli
#20 25.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 lambda/translobj.mli
#20 25.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 lambda/tmc.mli
#20 25.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 lambda/simplif.mli
#20 25.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 bytecomp/instruct.mli
#20 25.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/typedecl_immediacy.ml -I typing
#20 25.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/typedecl_separability.ml -I typing
#20 25.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 bytecomp/symtable.mli
#20 25.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/includeclass.ml -I typing
#20 25.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 lambda/tmc.ml -I lambda
#20 25.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 lambda/simplif.ml -I lambda
#20 25.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/variable.mli
#20 25.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 lambda/translobj.ml -I lambda
#20 25.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 lambda/printlambda.ml -I lambda
#20 25.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/clambda.mli
#20 25.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 typing/typedtree.ml -I typing
#20 25.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 typing/printtyped.mli
#20 25.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 typing/includecore.mli
#20 25.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 typing/tast_iterator.mli
#20 25.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 typing/tast_mapper.mli
#20 25.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 typing/stypes.mli
#20 25.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/cmt_format.mli
#20 25.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 typing/untypeast.mli
#20 25.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 typing/typetexp.mli
#20 25.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 typing/printpat.mli
#20 25.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 typing/patterns.mli
#20 25.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 typing/parmatch.mli
#20 25.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 typing/typedecl_variance.mli
#20 25.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 typing/typeopt.mli
#20 25.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 typing/rec_check.mli
#20 25.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 typing/typecore.mli
#20 25.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 typing/typeclass.mli
#20 25.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/matching.mli
#20 25.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/translattribute.mli
#20 25.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/translprim.mli
#20 25.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/translcore.mli
#20 25.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/translclass.mli
#20 25.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/translmod.mli
#20 25.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 bytecomp/meta.mli
#20 25.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 driver/compile_common.mli
#20 25.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 bytecomp/instruct.ml -I bytecomp
#20 25.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 bytecomp/bytegen.mli
#20 25.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 bytecomp/printinstr.mli
#20 25.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 bytecomp/emitcode.mli
#20 25.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 bytecomp/bytelink.mli
#20 25.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 bytecomp/meta.ml -I bytecomp
#20 25.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 bytecomp/symtable.ml -I bytecomp
#20 25.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/printtyped.ml -I typing
#20 25.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 bytecomp/printinstr.ml -I bytecomp
#20 25.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.ml -I typing
#20 25.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/stypes.ml -I typing
#20 25.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 typing/tast_mapper.ml -I typing
#20 25.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 bytecomp/bytegen.ml -I bytecomp
#20 25.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 bytecomp/emitcode.ml -I bytecomp
#20 25.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 bytecomp/bytelink.ml -I bytecomp
#20 25.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 bytecomp/bytelibrarian.ml -I bytecomp
#20 25.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 lambda/translattribute.ml -I lambda
#20 25.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 typing/tast_iterator.ml -I typing
#20 25.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 typing/typeopt.ml -I typing
#20 25.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 typing/rec_check.ml -I typing
#20 25.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 lambda/translclass.ml -I lambda
#20 25.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 typing/includecore.ml -I typing
#20 25.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 typing/includemod.mli
#20 25.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 driver/compile.mli
#20 25.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 typing/patterns.ml -I typing
#20 25.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 lambda/matching.ml -I lambda
#20 25.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 typing/typedecl_variance.ml -I typing
#20 25.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 typing/typedecl.mli
#20 25.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 lambda/translprim.ml -I lambda
#20 25.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 lambda/translmod.ml -I lambda
#20 25.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/cmt_format.ml -I file_formats
#20 25.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/cmt2annot.ml -I typing
#20 25.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/untypeast.ml -I typing
#20 25.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/parmatch.ml -I typing
#20 25.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/typetexp.ml -I typing
#20 25.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/base_types/closure_element.mli
#20 25.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/symbol.mli
#20 25.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/parameter.mli
#20 25.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/base_types/mutable_variable.mli
#20 25.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 lambda/translcore.ml -I lambda
#20 25.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/compile.ml -I driver
#20 25.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.ml -I driver
#20 25.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 typing/typedecl.ml -I typing
#20 25.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 typing/typecore.ml -I typing
#20 25.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 typing/typeclass.ml -I typing
#20 25.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/base_types/var_within_closure.mli
#20 25.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/base_types/closure_id.mli
#20 25.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 typing/includemod.ml -I typing
#20 25.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 typing/includemod_errorprinter.mli
#20 25.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 typing/typemod.mli
#20 25.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.ml -I typing
#20 25.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/closure_origin.mli
#20 25.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/projection.mli
#20 25.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/typemod.ml -I typing
#20 25.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/compmisc.ml -I driver
#20 25.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/compile_common.ml -I driver
#20 25.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 bytecomp/bytepackager.ml -I bytecomp
#20 25.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/flambda.mli
#20 25.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/freshening.mli
#20 25.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/simple_value_approx.mli
#20 25.71 ./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 25.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/export_info.mli
#20 25.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 file_formats/cmx_format.mli
#20 31.26 ./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 31.33 ./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 31.92 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 31.92 make -j ocamllex ocamltools library
#20 31.92 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 31.94 make -j -C yacc  all
#20 31.94 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 31.95 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 31.95   -o closure.o closure.c
#20 31.95 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 31.95   -o error.o error.c
#20 31.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/backend_intf.mli
#20 31.95 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 31.95   -o lalr.o lalr.c
#20 31.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/flambda/inlining_cost.mli
#20 31.95 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 31.95   -o lr0.o lr0.c
#20 31.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/internal_variable_names.ml -I middle_end
#20 31.95 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 31.95   -o main.o main.c
#20 31.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/linkage_name.ml -I middle_end
#20 31.95 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 31.95   -o mkpar.o mkpar.c
#20 31.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/compilation_unit.ml -I middle_end
#20 31.95 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 31.95   -o output.o output.c
#20 31.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/variable.ml -I middle_end
#20 31.95 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 31.95   -o reader.o reader.c
#20 31.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/flambda/base_types/closure_element.ml -I middle_end/flambda/base_types
#20 31.95 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 31.95   -o skeleton.o skeleton.c
#20 31.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/flambda/base_types/closure_id.ml -I middle_end/flambda/base_types
#20 31.95 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 31.95   -o symtab.o symtab.c
#20 31.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/symbol.ml -I middle_end
#20 31.95 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 31.95   -o verbose.o verbose.c
#20 31.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/backend_var.ml -I middle_end
#20 31.95 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 31.95   -o warshall.o warshall.c
#20 31.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/clambda_primitives.ml -I middle_end
#20 31.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/printclambda_primitives.mli
#20 31.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/clambda.ml -I middle_end
#20 31.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/printclambda.mli
#20 31.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/semantics_of_primitives.mli
#20 31.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/convert_primitives.mli
#20 31.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/flambda/base_types/id_types.mli
#20 31.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/flambda/base_types/tag.ml -I middle_end/flambda/base_types
#20 31.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/flambda/base_types/mutable_variable.ml -I middle_end/flambda/base_types
#20 31.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/flambda/base_types/set_of_closures_origin.ml -I middle_end/flambda/base_types
#20 31.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/flambda/base_types/closure_origin.ml -I middle_end/flambda/base_types
#20 31.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/flambda/base_types/var_within_closure.ml -I middle_end/flambda/base_types
#20 31.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/flambda/base_types/static_exception.ml -I middle_end/flambda/base_types
#20 31.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/flambda/pass_wrapper.mli
#20 31.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/flambda/allocated_const.ml -I middle_end/flambda
#20 31.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/flambda/parameter.ml -I middle_end/flambda
#20 31.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/flambda/projection.ml -I middle_end/flambda
#20 31.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/flambda/flambda_iterators.mli
#20 31.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/flambda/flambda_utils.mli
#20 31.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/flambda/effect_analysis.mli
#20 31.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/flambda/export_info.ml -I middle_end/flambda
#20 31.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/flambda/export_info_for_pack.mli
#20 31.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/compilenv.mli
#20 31.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/flambda/import_approx.mli
#20 31.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/lift_code.mli
#20 31.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/closure_conversion_aux.mli
#20 31.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/initialize_symbol_to_let_symbol.mli
#20 31.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/alias_analysis.mli
#20 31.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/share_constants.mli
#20 31.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/remove_unused_closure_vars.mli
#20 31.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/remove_unused_program_constructs.mli
#20 31.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/remove_free_vars_equal_to_args.mli
#20 31.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/ref_to_variables.mli
#20 31.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/flambda_invariants.mli
#20 31.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/traverse_for_exported_symbols.mli
#20 31.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/closure_offsets.mli
#20 31.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/un_anf.mli
#20 31.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/flambda_to_clambda.mli
#20 31.97 make -j -C stdlib  all
#20 31.98 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 31.99 ../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 31.99 ../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 31.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/closure/closure.mli
#20 31.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/closure/closure_middle_end.mli
#20 31.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.mli
#20 31.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/lift_let_to_initialize_symbol.mli
#20 31.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/find_recursive_functions.mli
#20 31.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/invariant_params.mli
#20 31.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/inconstant_idents.mli
#20 31.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/lift_constants.mli
#20 32.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/remove_unused_arguments.mli
#20 32.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/build_export_info.mli
#20 32.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/flambda_middle_end.mli
#20 32.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/printclambda_primitives.ml -I middle_end
#20 32.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/printclambda.ml -I middle_end
#20 32.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/semantics_of_primitives.ml -I middle_end
#20 32.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/convert_primitives.ml -I middle_end
#20 32.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/base_types/id_types.ml -I middle_end/flambda/base_types
#20 32.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/base_types/export_id.ml -I middle_end/flambda/base_types
#20 32.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/base_types/set_of_closures_id.ml -I middle_end/flambda/base_types
#20 32.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/pass_wrapper.ml -I middle_end/flambda
#20 32.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/flambda.ml -I middle_end/flambda
#20 32.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/effect_analysis.ml -I middle_end/flambda
#20 32.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/simplify_common.mli
#20 32.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/simplify_primitives.mli
#20 32.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/inlining_stats_types.mli
#20 32.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/simplify_boxed_integer_ops_intf.mli
#20 32.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/initialize_symbol_to_let_symbol.ml -I middle_end/flambda
#20 32.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/flambda_iterators.ml -I middle_end/flambda
#20 32.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/inlining_cost.ml -I middle_end/flambda
#20 32.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/export_info_for_pack.ml -I middle_end/flambda
#20 32.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_code.ml -I middle_end/flambda
#20 32.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/share_constants.ml -I middle_end/flambda
#20 32.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/remove_unused_program_constructs.ml -I middle_end/flambda
#20 32.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/ref_to_variables.ml -I middle_end/flambda
#20 32.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/closure_conversion_aux.ml -I middle_end/flambda
#20 32.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/flambda_invariants.ml -I middle_end/flambda
#20 32.01 ../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 32.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/un_anf.ml -I middle_end/flambda
#20 32.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/compilenv.ml -I middle_end
#20 32.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/import_approx.ml -I middle_end/flambda
#20 32.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/closure/closure.ml -I middle_end/closure
#20 32.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/closure/closure_middle_end.ml -I middle_end/closure
#20 32.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/flambda_utils.ml -I middle_end/flambda
#20 32.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/freshening.ml -I middle_end/flambda
#20 32.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/simple_value_approx.ml -I middle_end/flambda
#20 32.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/lift_let_to_initialize_symbol.ml -I middle_end/flambda
#20 32.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/inconstant_idents.ml -I middle_end/flambda
#20 32.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/remove_unused_closure_vars.ml -I middle_end/flambda
#20 32.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/remove_free_vars_equal_to_args.ml -I middle_end/flambda
#20 32.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/closure_offsets.ml -I middle_end/flambda
#20 32.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/flambda_to_clambda.ml -I middle_end/flambda
#20 32.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/alias_analysis.ml -I middle_end/flambda
#20 32.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/lift_constants.ml -I middle_end/flambda
#20 32.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/closure_conversion.ml -I middle_end/flambda
#20 32.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/find_recursive_functions.ml -I middle_end/flambda
#20 32.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/inline_and_simplify_aux.mli
#20 32.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/inlining_stats_types.ml -I middle_end/flambda
#20 32.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/inlining_stats.mli
#20 32.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/simplify_boxed_integer_ops.mli
#20 32.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/traverse_for_exported_symbols.ml -I middle_end/flambda
#20 32.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/invariant_params.ml -I middle_end/flambda
#20 32.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/remove_unused_arguments.ml -I middle_end/flambda
#20 32.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/simplify_common.ml -I middle_end/flambda
#20 32.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/inlining_stats.ml -I middle_end/flambda
#20 32.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_boxed_integer_ops.ml -I middle_end/flambda
#20 32.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_primitives.ml -I middle_end/flambda
#20 32.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/inlining_decision_intf.mli
#20 32.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/inline_and_simplify_aux.ml -I middle_end/flambda
#20 32.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/extract_projections.mli
#20 32.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/augment_specialised_args.mli
#20 32.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/unbox_free_vars_of_closures.mli
#20 32.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/unbox_specialised_args.mli
#20 32.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/unbox_closures.mli
#20 32.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/inline_and_simplify.mli
#20 32.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/build_export_info.ml -I middle_end/flambda
#20 32.12 ../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 32.12 ../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 32.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/extract_projections.ml -I middle_end/flambda
#20 32.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/unbox_free_vars_of_closures.ml -I middle_end/flambda
#20 32.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/augment_specialised_args.ml -I middle_end/flambda
#20 32.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/unbox_specialised_args.ml -I middle_end/flambda
#20 32.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/unbox_closures.ml -I middle_end/flambda
#20 32.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/flambda_middle_end.ml -I middle_end/flambda
#20 32.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/inlining_transforms.mli
#20 32.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/inlining_decision.mli
#20 32.20 ../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 32.20 ../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 32.20          -o stdlib__Pervasives.cmo -c pervasives.ml
#20 32.20 ../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 32.20          -o stdlib__Either.cmi -c either.mli
#20 32.20 ../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 32.20          -o stdlib__Sys.cmi -c sys.mli
#20 32.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.ml -I middle_end/flambda
#20 32.20 ../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 32.20          -o stdlib__Nativeint.cmi -c nativeint.mli
#20 32.20 ../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 32.20          -o stdlib__Int32.cmi -c int32.mli
#20 32.21 ../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 32.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/inlining_transforms.ml -I middle_end/flambda
#20 32.21 ../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 32.21          -o stdlib__Bool.cmi -c bool.mli
#20 32.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/inlining_decision.ml -I middle_end/flambda
#20 32.21 ../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 32.21          -o stdlib__Char.cmi -c char.mli
#20 32.21 ../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 32.21          -o stdlib__Uchar.cmi -c uchar.mli
#20 32.21 ../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 32.21          -o stdlib__Int.cmi -c int.mli
#20 32.21 ../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 32.21          -o stdlib__Unit.cmi -c unit.mli
#20 32.21 ../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 32.21          -o stdlib__Marshal.cmi -c marshal.mli
#20 32.22 ../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 32.22          -o stdlib__Int64.cmi -c int64.mli
#20 32.22 ../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 32.22          -o stdlib__Lexing.cmi -c lexing.mli
#20 32.22 ../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 32.22          -o stdlib__Stream.cmi -c stream.mli
#20 32.22 ../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 32.22          -o stdlib__Arg.cmi -c arg.mli
#20 32.22 ../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 32.22          -o stdlib__Atomic.cmi -c atomic.mli
#20 32.22 ../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 32.22          -o stdlib__Printexc.cmi -c printexc.mli
#20 32.22 ../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 32.22          -o stdlib__Fun.cmi -c fun.mli
#20 32.22 ../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 32.22          -o stdlib__Digest.cmi -c digest.mli
#20 32.23 ../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 32.23          -o stdlib__Scanf.cmi -c scanf.mli
#20 32.23 ../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 32.23          -o stdlib__Callback.cmi -c callback.mli
#20 32.23 ../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 32.23          -o stdlib__Filename.cmi -c filename.mli
#20 32.23 ../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 32.23          -o stdlib__Complex.cmi -c complex.mli
#20 32.23 ../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 32.23          -o stdlib__In_channel.cmi -c in_channel.mli
#20 32.23 ../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 32.23          -o stdlib__Out_channel.cmi -c out_channel.mli
#20 32.23 ../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 32.24 ../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 32.24          -o stdlib__Either.cmo -c either.ml
#20 32.24 ../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 32.24          -o stdlib__Lazy.cmi -c lazy.mli
#20 32.24 ../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 32.24          -o stdlib__Seq.cmi -c seq.mli
#20 32.24 ../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 32.24          -o stdlib__Char.cmo -c char.ml
#20 32.24 ../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 32.24          -o stdlib__Uchar.cmo -c uchar.ml
#20 32.24 ../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 32.24          -o stdlib__Sys.cmo -c sys.ml
#20 32.24 ../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 32.24          -o stdlib__Obj.cmi -c obj.mli
#20 32.24 ../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 32.24          -o stdlib__Bool.cmo -c bool.ml
#20 32.25 ../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 32.25          -o stdlib__Unit.cmo -c unit.ml
#20 32.25 ../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 32.25          -o stdlib__Int32.cmo -c int32.ml
#20 32.25 ../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 32.25          -o stdlib__Nativeint.cmo -c nativeint.ml
#20 32.25 ../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 32.25          -o stdlib__Genlex.cmi -c genlex.mli
#20 32.25 ../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 32.25          -o stdlib__Int.cmo -c int.ml
#20 32.25 ../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 32.25          -o stdlib__Gc.cmi -c gc.mli
#20 32.25 ../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 32.25          -o stdlib__Fun.cmo -c fun.ml
#20 32.26 ../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 32.26          -o stdlib__Atomic.cmo -c atomic.ml
#20 32.26 ../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 32.26          -o stdlib__Random.cmi -c random.mli
#20 32.26 ../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 32.26          -o stdlib__Out_channel.cmo -c out_channel.ml
#20 32.26 ../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 32.26          -o stdlib__Int64.cmo -c int64.ml
#20 32.26 ../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 32.26          -o stdlib__Complex.cmo -c complex.ml
#20 32.26 ../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 32.26          -o stdlib__Bigarray.cmi -c bigarray.mli
#20 32.27 ../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 32.27          -o stdlib__Obj.cmo -c obj.ml
#20 32.27 ../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 32.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 32.28          -o stdlib__Lazy.cmo -c lazy.ml
#20 32.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 32.28          -o stdlib__Parsing.cmi -c parsing.mli
#20 32.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 32.28          -o stdlib__Callback.cmo -c callback.ml
#20 32.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   -c camlinternalOO.mli
#20 32.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   -c camlinternalMod.mli
#20 32.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 32.28          -o stdlib__Seq.cmo -c seq.ml
#20 32.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 32.28          -o stdlib__Option.cmi -c option.mli
#20 32.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 32.28          -o stdlib__Result.cmi -c result.mli
#20 32.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 32.28          -o stdlib__List.cmi -c list.mli
#20 32.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 32.29          -o stdlib__Bytes.cmi -c bytes.mli
#20 32.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 32.29          -o stdlib__String.cmi -c string.mli
#20 32.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 32.29          -o stdlib__Array.cmi -c array.mli
#20 32.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 32.29          -o stdlib__Float.cmi -c float.mli
#20 32.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 32.29          -o stdlib__Set.cmi -c set.mli
#20 32.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 32.29          -o stdlib__Map.cmi -c map.mli
#20 32.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 32.29          -o stdlib__Stack.cmi -c stack.mli
#20 32.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 32.29          -o stdlib__Queue.cmi -c queue.mli
#20 32.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  -w +A \
#20 32.29          -o stdlib__Buffer.cmi -c buffer.mli
#20 32.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 32.29          -o stdlib__Hashtbl.cmi -c hashtbl.mli
#20 32.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  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 32.30          -o stdlib__ArrayLabels.cmi -c arrayLabels.mli
#20 32.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  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 32.30          -o stdlib__ListLabels.cmi -c listLabels.mli
#20 32.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  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 32.30          -o stdlib__BytesLabels.cmi -c bytesLabels.mli
#20 32.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  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 32.30          -o stdlib__StringLabels.cmi -c stringLabels.mli
#20 32.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 32.31          -o stdlib__Option.cmo -c option.ml
#20 32.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  -no-principal \
#20 32.31          -o stdlib__Oo.cmi -c oo.mli
#20 32.32 ../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 32.32          -o stdlib__Result.cmo -c result.ml
#20 32.33 ../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 32.33          -o stdlib__Queue.cmo -c queue.ml
#20 32.33 ../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 32.33 ../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 32.33          -o stdlib__Printf.cmi -c printf.mli
#20 32.33 ../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 32.33          -o stdlib__Format.cmi -c format.mli
#20 32.33 ../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 32.33          -o stdlib__Array.cmo -c array.ml
#20 32.33 ../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 32.33          -o stdlib__Parsing.cmo -c parsing.ml
#20 32.33 ../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 32.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  -nolabels -no-alias-deps \
#20 32.34          -o stdlib__ArrayLabels.cmo -c arrayLabels.ml
#20 32.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   \
#20 32.34          -o stdlib__In_channel.cmo -c in_channel.ml
#20 32.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   \
#20 32.34          -o stdlib__List.cmo -c list.ml
#20 32.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   \
#20 32.34          -o stdlib__Bytes.cmo -c bytes.ml
#20 32.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   \
#20 32.34          -o stdlib__String.cmo -c string.ml
#20 32.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   \
#20 32.34          -o stdlib__Marshal.cmo -c marshal.ml
#20 32.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   \
#20 32.34          -o stdlib__Lexing.cmo -c lexing.ml
#20 32.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   \
#20 32.34          -o stdlib__Set.cmo -c set.ml
#20 32.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 32.35          -o stdlib__Map.cmo -c map.ml
#20 32.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 32.35          -o stdlib__Stack.cmo -c stack.ml
#20 32.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 32.35          -o stdlib__Stream.cmo -c stream.ml
#20 32.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  -w +A \
#20 32.35          -o stdlib__Buffer.cmo -c buffer.ml
#20 32.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 32.35          -o stdlib__Digest.cmo -c digest.ml
#20 32.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 32.35          -o stdlib__Random.cmo -c random.ml
#20 32.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 32.35          -o stdlib__Hashtbl.cmo -c hashtbl.ml
#20 32.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 32.36          -o stdlib__Weak.cmi -c weak.mli
#20 32.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   -c camlinternalOO.ml
#20 32.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 32.36          -o stdlib__Oo.cmo -c oo.ml
#20 32.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 32.36          -o stdlib__Genlex.cmo -c genlex.ml
#20 32.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 32.36          -o stdlib__Ephemeron.cmi -c ephemeron.mli
#20 32.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  -nolabels -no-alias-deps \
#20 32.36          -o stdlib__ListLabels.cmo -c listLabels.ml
#20 32.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  -nolabels -no-alias-deps \
#20 32.36          -o stdlib__BytesLabels.cmo -c bytesLabels.ml
#20 32.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  -nolabels -no-alias-deps \
#20 32.36          -o stdlib__StringLabels.cmo -c stringLabels.ml
#20 32.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  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 32.37          -o stdlib__MoreLabels.cmi -c moreLabels.mli
#20 32.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  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 32.37          -o stdlib__StdLabels.cmi -c stdLabels.mli
#20 32.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 32.37          -o stdlib__Bigarray.cmo -c bigarray.ml
#20 32.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  -nolabels -no-alias-deps \
#20 32.37          -o stdlib__Float.cmo -c float.ml
#20 32.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 32.37          -o stdlib__Arg.cmo -c arg.ml
#20 32.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 32.37          -o stdlib__Printexc.cmo -c printexc.ml
#20 32.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 32.38          -o stdlib__Gc.cmo -c gc.ml
#20 32.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 32.38          -o stdlib__Filename.cmo -c filename.ml
#20 32.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  -w +A -w -fragile-match -c camlinternalFormat.ml
#20 32.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  -w +A -w -fragile-match \
#20 32.38          -o stdlib__Printf.cmo -c printf.ml
#20 32.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  -w +A -w -fragile-match \
#20 32.38          -o stdlib__Scanf.cmo -c scanf.ml
#20 32.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 32.39          -o stdlib__Weak.cmo -c weak.ml
#20 32.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  -nolabels -no-alias-deps \
#20 32.40          -o stdlib__StdLabels.cmo -c stdLabels.ml
#20 32.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 32.40          -o stdlib__Format.cmo -c format.ml
#20 32.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 32.47          -o stdlib__Ephemeron.cmo -c ephemeron.ml
#20 32.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  -nolabels -no-alias-deps \
#20 32.48          -o stdlib__MoreLabels.cmo -c moreLabels.ml
#20 32.68 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 32.71 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 32.71 make -j -C lex all
#20 32.71 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 32.71 ../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 32.71 ../yacc/ocamlyacc -v parser.mly
#20 32.71 ../boot/ocamlrun ../boot/ocamllex -q lexer.mll
#20 32.72 ../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 32.74 ../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 32.74 ../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 32.74 ../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 32.76 ../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 32.76 ../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 32.76 ../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 32.77 ./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 32.78 ../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 32.78 ../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 32.79 ../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 32.80 ../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 32.80 ../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 32.81 ../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 32.82 ../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 32.83 ../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 32.83 ../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 32.83 ../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 32.85 ../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 32.85 ../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 32.85 ../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 33.05 ../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 33.07 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 33.07 make -j -C tools all
#20 33.07 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 33.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 33.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 33.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 - ocamlcp.ml
#20 33.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 - ocamloptp.ml
#20 33.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 - ocamlmklib.ml
#20 33.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 - ocamlmktop.ml
#20 33.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 - ocamlcmt.ml
#20 33.09 ../runtime/ocamlrun make_opcodes -opnames < ../runtime/caml/instruct.h > opnames.ml
#20 33.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 33.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 33.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 33.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 33.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 33.10 ../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 33.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 33.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 33.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 33.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 33.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 33.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 33.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 33.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 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 33.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 33.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 33.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 33.34 ../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 33.34 ../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 33.38 ../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 34.02 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 34.12 ../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 34.16 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 34.16 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 34.16 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 34.16 make -j ocaml
#20 34.16 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 34.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 toplevel/expunge.ml -I toplevel
#20 34.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 toplevel/genprintval.mli
#20 34.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 toplevel/trace.mli
#20 34.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 toplevel/toploop.mli
#20 34.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 toplevel/topdirs.mli
#20 34.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 toplevel/topmain.mli
#20 34.21 cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/byte
#20 34.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 toplevel/topstart.ml -I toplevel
#20 34.23 cp toplevel/trace.cmi toplevel/trace.mli toplevel/byte
#20 34.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 toplevel/topcommon.mli
#20 34.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 toplevel/genprintval.ml -I toplevel
#20 34.24 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -o expunge compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma toplevel/expunge.cmo
#20 34.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 toplevel/topeval.mli
#20 34.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 toplevel/topcommon.ml -I toplevel
#20 34.36 cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/byte
#20 34.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 toplevel/toploop.ml -I toplevel
#20 34.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 toplevel/topdirs.ml -I toplevel
#20 34.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 toplevel/byte/topeval.ml -I toplevel/byte
#20 34.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 toplevel/byte/trace.ml -I toplevel/byte
#20 34.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 toplevel/byte/topmain.ml -I toplevel/byte
#20 34.66 ./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 34.68 ./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 35.32 ./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 35.37 rm ocaml.tmp
#20 35.37 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 35.37 make -j opt-core
#20 35.37 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 35.38 make -j -C runtime  allopt
#20 35.38 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 35.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 startup_aux.n.o startup_aux.c
#20 35.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 startup_nat.n.o startup_nat.c
#20 35.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 main.n.o main.c
#20 35.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 fail_nat.n.o fail_nat.c
#20 35.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 roots_nat.n.o roots_nat.c
#20 35.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 signals.n.o signals.c
#20 35.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 signals_nat.n.o signals_nat.c
#20 35.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 misc.n.o misc.c
#20 35.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 freelist.n.o freelist.c
#20 35.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 major_gc.n.o major_gc.c
#20 35.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 minor_gc.n.o minor_gc.c
#20 35.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 memory.n.o memory.c
#20 35.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 alloc.n.o alloc.c
#20 35.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 compare.n.o compare.c
#20 35.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 ints.n.o ints.c
#20 35.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 floats.n.o floats.c
#20 35.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 str.n.o str.c
#20 35.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 array.n.o array.c
#20 35.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 io.n.o io.c
#20 35.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 extern.n.o extern.c
#20 35.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 intern.n.o intern.c
#20 35.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 hash.n.o hash.c
#20 35.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 sys.n.o sys.c
#20 35.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 parsing.n.o parsing.c
#20 35.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 gc_ctrl.n.o gc_ctrl.c
#20 35.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 eventlog.n.o eventlog.c
#20 35.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 md5.n.o md5.c
#20 35.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 obj.n.o obj.c
#20 35.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 lexing.n.o lexing.c
#20 35.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 unix.n.o unix.c
#20 35.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 printexc.n.o printexc.c
#20 35.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 callback.n.o callback.c
#20 35.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 weak.n.o weak.c
#20 35.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 compact.n.o compact.c
#20 35.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 finalise.n.o finalise.c
#20 35.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 custom.n.o custom.c
#20 35.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 globroots.n.o globroots.c
#20 35.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 backtrace_nat.n.o backtrace_nat.c
#20 35.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 backtrace.n.o backtrace.c
#20 35.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 dynlink_nat.n.o dynlink_nat.c
#20 35.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 35.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 meta.n.o meta.c
#20 35.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 dynlink.n.o dynlink.c
#20 35.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 clambda_checks.n.o clambda_checks.c
#20 35.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 afl.n.o afl.c
#20 35.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 bigarray.n.o bigarray.c
#20 35.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 memprof.n.o memprof.c
#20 35.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 domain.n.o domain.c
#20 35.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 skiplist.n.o skiplist.c
#20 35.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 codefrag.n.o codefrag.c
#20 35.47 gcc -c -DSYS_linux -I../runtime -DMODEL_default -o arm64.o arm64.S || \
#20 35.47 { echo "If your assembler produced syntax errors, it is probably";\
#20 35.47           echo "unhappy with the preprocessor. Check your assembler, or";\
#20 35.47           echo "try producing arm64.o by hand.";\
#20 35.47           exit 2; }
#20 35.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 -DDEBUG  -o startup_aux.nd.o startup_aux.c
#20 35.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 -DDEBUG  -o startup_nat.nd.o startup_nat.c
#20 35.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 -DDEBUG  -o main.nd.o main.c
#20 35.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 -DDEBUG  -o fail_nat.nd.o fail_nat.c
#20 35.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 -DDEBUG  -o roots_nat.nd.o roots_nat.c
#20 35.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 -DDEBUG  -o signals.nd.o signals.c
#20 35.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 -DDEBUG  -o signals_nat.nd.o signals_nat.c
#20 35.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 -DDEBUG  -o misc.nd.o misc.c
#20 35.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 -DDEBUG  -o freelist.nd.o freelist.c
#20 35.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 -DDEBUG  -o major_gc.nd.o major_gc.c
#20 35.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 -DDEBUG  -o minor_gc.nd.o minor_gc.c
#20 35.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 -DDEBUG  -o memory.nd.o memory.c
#20 35.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 -DDEBUG  -o alloc.nd.o alloc.c
#20 35.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 -DDEBUG  -o compare.nd.o compare.c
#20 35.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 -DDEBUG  -o ints.nd.o ints.c
#20 35.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 -DDEBUG  -o floats.nd.o floats.c
#20 35.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 -DDEBUG  -o str.nd.o str.c
#20 35.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 -DDEBUG  -o array.nd.o array.c
#20 35.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 -DDEBUG  -o io.nd.o io.c
#20 35.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 -DDEBUG  -o extern.nd.o extern.c
#20 35.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 -DDEBUG  -o intern.nd.o intern.c
#20 35.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 -DDEBUG  -o hash.nd.o hash.c
#20 35.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 -DDEBUG  -o sys.nd.o sys.c
#20 35.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 -DDEBUG  -o parsing.nd.o parsing.c
#20 35.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 -DDEBUG  -o gc_ctrl.nd.o gc_ctrl.c
#20 35.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 -DDEBUG  -o eventlog.nd.o eventlog.c
#20 35.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 -DDEBUG  -o md5.nd.o md5.c
#20 35.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 -DDEBUG  -o obj.nd.o obj.c
#20 35.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 -DDEBUG  -o lexing.nd.o lexing.c
#20 35.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 -DDEBUG  -o unix.nd.o unix.c
#20 35.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 -DDEBUG  -o printexc.nd.o printexc.c
#20 35.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 -DDEBUG  -o callback.nd.o callback.c
#20 35.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 -DDEBUG  -o weak.nd.o weak.c
#20 35.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 -DDEBUG  -o compact.nd.o compact.c
#20 35.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 -DDEBUG  -o finalise.nd.o finalise.c
#20 35.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 -DDEBUG  -o custom.nd.o custom.c
#20 35.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 -DDEBUG  -o globroots.nd.o globroots.c
#20 35.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 -DDEBUG  -o backtrace_nat.nd.o backtrace_nat.c
#20 35.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 -DDEBUG  -o backtrace.nd.o backtrace.c
#20 35.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 -DDEBUG  -o dynlink_nat.nd.o dynlink_nat.c
#20 35.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 -DDEBUG  -o debugger.nd.o debugger.c
#20 35.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 -DDEBUG  -o meta.nd.o meta.c
#20 35.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 -DDEBUG  -o dynlink.nd.o dynlink.c
#20 35.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 -DDEBUG  -o clambda_checks.nd.o clambda_checks.c
#20 35.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 -DDEBUG  -o afl.nd.o afl.c
#20 35.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 -DDEBUG  -o bigarray.nd.o bigarray.c
#20 35.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 -DDEBUG  -o memprof.nd.o memprof.c
#20 35.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 -DDEBUG  -o domain.nd.o domain.c
#20 35.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 -DDEBUG  -o skiplist.nd.o skiplist.c
#20 35.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 -DDEBUG  -o codefrag.nd.o codefrag.c
#20 35.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 startup_aux.ni.o startup_aux.c
#20 35.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 startup_nat.ni.o startup_nat.c
#20 35.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 main.ni.o main.c
#20 35.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 fail_nat.ni.o fail_nat.c
#20 35.59 gcc -c -O2 -fno-strict-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 35.59 gcc -c -O2 -fno-strict-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 35.59 gcc -c -O2 -fno-strict-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 35.59 gcc -c -O2 -fno-strict-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 35.59 gcc -c -O2 -fno-strict-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 35.59 gcc -c -O2 -fno-strict-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 35.59 gcc -c -O2 -fno-strict-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 35.59 gcc -c -O2 -fno-strict-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 35.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 -DCAML_INSTR  -o alloc.ni.o alloc.c
#20 35.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 -DCAML_INSTR  -o compare.ni.o compare.c
#20 35.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 -DCAML_INSTR  -o ints.ni.o ints.c
#20 35.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 -DCAML_INSTR  -o floats.ni.o floats.c
#20 35.61 gcc -c -O2 -fno-strict-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 35.61 gcc -c -O2 -fno-strict-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 35.61 gcc -c -O2 -fno-strict-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 35.61 gcc -c -O2 -fno-strict-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 35.61 gcc -c -O2 -fno-strict-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 35.61 gcc -c -O2 -fno-strict-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 35.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 -DCAML_INSTR  -o sys.ni.o sys.c
#20 35.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 -DCAML_INSTR  -o parsing.ni.o parsing.c
#20 35.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 -DCAML_INSTR  -o gc_ctrl.ni.o gc_ctrl.c
#20 35.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 -DCAML_INSTR  -o eventlog.ni.o eventlog.c
#20 35.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 -DCAML_INSTR  -o md5.ni.o md5.c
#20 35.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 -DCAML_INSTR  -o obj.ni.o obj.c
#20 35.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 lexing.ni.o lexing.c
#20 35.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 unix.ni.o unix.c
#20 35.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 printexc.ni.o printexc.c
#20 35.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 callback.ni.o callback.c
#20 35.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 weak.ni.o weak.c
#20 35.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 -DCAML_INSTR  -o compact.ni.o compact.c
#20 35.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 -DCAML_INSTR  -o finalise.ni.o finalise.c
#20 35.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 -DCAML_INSTR  -o custom.ni.o custom.c
#20 35.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 globroots.ni.o globroots.c
#20 35.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_nat.ni.o backtrace_nat.c
#20 35.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 35.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 dynlink_nat.ni.o dynlink_nat.c
#20 35.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 debugger.ni.o debugger.c
#20 35.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 meta.ni.o meta.c
#20 35.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 dynlink.ni.o dynlink.c
#20 35.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 clambda_checks.ni.o clambda_checks.c
#20 35.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 afl.ni.o afl.c
#20 35.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 bigarray.ni.o bigarray.c
#20 35.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 -DCAML_INSTR  -o memprof.ni.o memprof.c
#20 35.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 -DCAML_INSTR  -o domain.ni.o domain.c
#20 35.68 gcc -c -O2 -fno-strict-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 35.68 gcc -c -O2 -fno-strict-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 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_aux.npic.o startup_aux.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_nat.npic.o startup_nat.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o main.npic.o main.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o fail_nat.npic.o fail_nat.c
#20 35.70 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 35.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 signals.npic.o signals.c
#20 35.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 signals_nat.npic.o signals_nat.c
#20 35.72 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 35.72 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 35.72 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 35.72 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 35.72 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 35.72 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 35.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 compare.npic.o compare.c
#20 35.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 ints.npic.o ints.c
#20 35.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 floats.npic.o floats.c
#20 35.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 str.npic.o str.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o array.npic.o array.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o io.npic.o io.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o extern.npic.o extern.c
#20 35.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 intern.npic.o intern.c
#20 35.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 hash.npic.o hash.c
#20 35.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 sys.npic.o sys.c
#20 35.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 parsing.npic.o parsing.c
#20 35.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 gc_ctrl.npic.o gc_ctrl.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o eventlog.npic.o eventlog.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o md5.npic.o md5.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o obj.npic.o obj.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o lexing.npic.o lexing.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o unix.npic.o unix.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o printexc.npic.o printexc.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o callback.npic.o callback.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o weak.npic.o weak.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compact.npic.o compact.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o finalise.npic.o finalise.c
#20 35.78 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 35.78 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 35.78 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 35.78 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 35.78 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 35.78 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 35.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 meta.npic.o meta.c
#20 35.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.npic.o dynlink.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o clambda_checks.npic.o clambda_checks.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o afl.npic.o afl.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o bigarray.npic.o bigarray.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memprof.npic.o memprof.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o domain.npic.o domain.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o skiplist.npic.o skiplist.c
#20 35.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o codefrag.npic.o codefrag.c
#20 35.82 gcc -c -DSYS_linux -I../runtime -DMODEL_default -fPIC -o arm64_libasmrunpic.o arm64.S
#20 36.09 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 36.16 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 36.27 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 36.33 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 36.33 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 36.38 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 36.38 cp runtime/libasmrun.a stdlib/libasmrun.a
#20 36.39 make -j ocamlopt
#20 36.39 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 36.41 cd asmcomp; ln -sf arm64/arch.ml .
#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 asmcomp/cmm.mli
#20 36.42 cd asmcomp; ln -sf arm64/proc.ml .
#20 36.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 asmcomp/x86_ast.mli
#20 36.42 cd asmcomp; ln -sf arm64/selection.ml .
#20 36.42 cd asmcomp; ln -sf arm64/CSE.ml .
#20 36.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 asmcomp/coloring.mli
#20 36.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 asmcomp/linscan.mli
#20 36.42 cd asmcomp; ln -sf arm64/reload.ml .
#20 36.42 cd asmcomp; ln -sf arm64/scheduling.ml .
#20 36.42 make -j -C tools cvt_emit
#20 36.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 asmcomp/asmlink.mli
#20 36.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 asmcomp/asmlibrarian.mli
#20 36.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 asmcomp/asmpackager.mli
#20 36.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 driver/opterrors.mli
#20 36.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 driver/optcompile.mli
#20 36.42 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 36.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 driver/optmaindriver.mli
#20 36.43 ../boot/ocamlrun ../boot/ocamllex -q cvt_emit.mll
#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 asmcomp/arch.ml -I asmcomp
#20 36.45 ../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 36.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 asmcomp/x86_proc.mli
#20 36.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 asmcomp/x86_masm.mli
#20 36.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 asmcomp/x86_gas.mli
#20 36.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 asmcomp/x86_dsl.mli
#20 36.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.ml -I driver
#20 36.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 asmcomp/asmlibrarian.ml -I asmcomp
#20 36.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/optmain.ml -I driver
#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 asmcomp/printcmm.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 asmcomp/reg.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 asmcomp/afl_instrument.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 asmcomp/strmatch.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 asmcomp/cmmgen_state.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 asmcomp/cmmgen.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 asmcomp/cmm_invariants.mli
#20 36.49 ../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 36.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/afl_instrument.ml -I asmcomp
#20 36.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.ml -I asmcomp
#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 asmcomp/cmmgen_state.ml -I asmcomp
#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 asmcomp/cmm_helpers.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 asmcomp/cmm_invariants.ml -I asmcomp
#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 asmcomp/reg.ml -I asmcomp
#20 36.54 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 36.54 echo \# 1 \"arm64/emit.mlp\" > asmcomp/emit.ml
#20 36.54 ./boot/ocamlrun tools/cvt_emit < asmcomp/arm64/emit.mlp >> asmcomp/emit.ml \
#20 36.54 || { rm -f asmcomp/emit.ml; exit 2; }
#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 asmcomp/cmm.ml -I asmcomp
#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 asmcomp/mach.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 asmcomp/strmatch.ml -I asmcomp
#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 asmcomp/cmmgen.ml -I asmcomp
#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 asmcomp/mach.ml -I asmcomp
#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 asmcomp/proc.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 asmcomp/interval.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 asmcomp/printmach.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 asmcomp/dataflow.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 asmcomp/polling.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 asmcomp/selectgen.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 asmcomp/selection.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 asmcomp/comballoc.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 asmcomp/CSEgen.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 asmcomp/liveness.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 asmcomp/spill.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 asmcomp/split.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 asmcomp/interf.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 asmcomp/reloadgen.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 asmcomp/reload.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 asmcomp/deadcode.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 asmcomp/linear.mli
#20 36.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 asmcomp/split.ml -I asmcomp
#20 36.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 asmcomp/dataflow.ml -I asmcomp
#20 36.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 asmcomp/CSE.ml -I asmcomp
#20 36.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 asmcomp/proc.ml -I asmcomp
#20 36.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 asmcomp/cmm_helpers.ml -I asmcomp
#20 36.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 asmcomp/interval.ml -I asmcomp
#20 36.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 asmcomp/CSEgen.ml -I asmcomp
#20 36.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 asmcomp/coloring.ml -I asmcomp
#20 36.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 asmcomp/linscan.ml -I asmcomp
#20 36.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 driver/optmaindriver.ml -I driver
#20 36.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 asmcomp/comballoc.ml -I asmcomp
#20 36.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 asmcomp/spill.ml -I asmcomp
#20 36.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 asmcomp/interf.ml -I asmcomp
#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 asmcomp/deadcode.ml -I asmcomp
#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 asmcomp/printmach.ml -I asmcomp
#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 asmcomp/polling.ml -I asmcomp
#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 asmcomp/liveness.ml -I asmcomp
#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 asmcomp/reloadgen.ml -I asmcomp
#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 asmcomp/reload.ml -I asmcomp
#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 asmcomp/linear.ml -I asmcomp
#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 asmcomp/printlinear.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 asmcomp/linearize.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 file_formats/linear_format.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 asmcomp/schedgen.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 asmcomp/scheduling.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 asmcomp/branch_relaxation_intf.ml -I asmcomp
#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 asmcomp/emitenv.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 asmcomp/emit.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 asmcomp/selectgen.ml -I asmcomp
#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 asmcomp/selection.ml -I asmcomp
#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 asmcomp/printlinear.ml -I asmcomp
#20 36.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 asmcomp/linearize.ml -I asmcomp
#20 36.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 file_formats/linear_format.ml -I file_formats
#20 36.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 asmcomp/schedgen.ml -I asmcomp
#20 36.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 asmcomp/scheduling.ml -I asmcomp
#20 36.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 asmcomp/emitaux.mli
#20 36.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 asmcomp/branch_relaxation.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 asmcomp/branch_relaxation.ml -I asmcomp
#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 asmcomp/emitaux.ml -I asmcomp
#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 asmcomp/emit.ml -I asmcomp
#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 asmcomp/asmgen.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 asmcomp/asmgen.ml -I asmcomp
#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 asmcomp/asmlink.ml -I asmcomp
#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 asmcomp/asmpackager.ml -I asmcomp
#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 driver/optcompile.ml -I driver
#20 38.08 ./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 38.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -o ocamlopt compilerlibs/ocamlcommon.cma compilerlibs/ocamloptcomp.cma driver/optmain.cmo
#20 38.90 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 38.90 make -j libraryopt
#20 38.90 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 38.91 make -j -C stdlib  allopt
#20 38.92 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 38.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  -nopervasives -c camlinternalFormatBasics.ml
#20 38.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  -nopervasives -c camlinternalAtomic.ml
#20 39.21 ../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 39.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 39.40            -o stdlib__Pervasives.cmx -c pervasives.ml
#20 39.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 39.40            -o stdlib__Either.cmx -c either.ml
#20 39.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 39.40            -o stdlib__Sys.cmx -c sys.ml
#20 39.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 39.40            -o stdlib__Bool.cmx -c bool.ml
#20 39.41 ../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 39.41            -o stdlib__Char.cmx -c char.ml
#20 39.41 ../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 39.41            -o stdlib__Int.cmx -c int.ml
#20 39.41 ../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 39.41            -o stdlib__Unit.cmx -c unit.ml
#20 39.41 ../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 39.41            -o stdlib__Int64.cmx -c int64.ml
#20 39.41 ../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 39.41            -o stdlib__Atomic.cmx -c atomic.ml
#20 39.41 ../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 39.41            -o stdlib__Complex.cmx -c complex.ml
#20 39.41 ../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 39.47 ../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 39.47            -o stdlib__Nativeint.cmx -c nativeint.ml
#20 39.47 ../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 39.47            -o stdlib__Int32.cmx -c int32.ml
#20 39.48 ../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 39.48            -o stdlib__Uchar.cmx -c uchar.ml
#20 39.54 ../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 39.54            -o stdlib__Obj.cmx -c obj.ml
#20 39.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  -afl-inst-ratio 0 -c camlinternalLazy.ml
#20 39.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 39.62            -o stdlib__Callback.cmx -c callback.ml
#20 39.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 39.68            -o stdlib__Lazy.cmx -c lazy.ml
#20 39.73 ../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 39.73            -o stdlib__Seq.cmx -c seq.ml
#20 40.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 40.01            -o stdlib__Option.cmx -c option.ml
#20 40.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 40.01            -o stdlib__Result.cmx -c result.ml
#20 40.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 40.01            -o stdlib__List.cmx -c list.ml
#20 40.02 ../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 40.02            -o stdlib__Bytes.cmx -c bytes.ml
#20 40.02 ../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 40.02            -o stdlib__Array.cmx -c array.ml
#20 40.02 ../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 40.02            -o stdlib__Map.cmx -c map.ml
#20 40.02 ../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 40.02            -o stdlib__Queue.cmx -c queue.ml
#20 40.29 ../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 40.29            -o stdlib__ArrayLabels.cmx -c arrayLabels.ml
#20 40.29 ../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 40.29            -o stdlib__Bigarray.cmx -c bigarray.ml
#20 40.36 ../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 40.36            -o stdlib__Float.cmx -c float.ml
#20 40.36 ../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 40.36            -o stdlib__Set.cmx -c set.ml
#20 40.36 ../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 40.36            -o stdlib__Stack.cmx -c stack.ml
#20 40.36 ../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 40.36            -o stdlib__ListLabels.cmx -c listLabels.ml
#20 40.51 ../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 40.51            -o stdlib__String.cmx -c string.ml
#20 40.51 ../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 40.51            -o stdlib__Marshal.cmx -c marshal.ml
#20 40.51 ../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 40.51            -o stdlib__BytesLabels.cmx -c bytesLabels.ml
#20 40.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 40.72            -o stdlib__Lexing.cmx -c lexing.ml
#20 40.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 40.72            -o stdlib__Stream.cmx -c stream.ml
#20 40.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 3 \
#20 40.72            -o stdlib__Buffer.cmx -c buffer.ml
#20 40.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 40.72            -o stdlib__Digest.cmx -c digest.ml
#20 40.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 0 -afl-inst-ratio 0 -c camlinternalOO.ml
#20 40.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  -nolabels -no-alias-deps \
#20 40.72            -o stdlib__StringLabels.cmx -c stringLabels.ml
#20 40.78 ../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 40.78            -o stdlib__StdLabels.cmx -c stdLabels.ml
#20 40.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 40.79            -o stdlib__Random.cmx -c random.ml
#20 40.82 ../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 40.82            -o stdlib__Parsing.cmx -c parsing.ml
#20 40.92 ../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 40.92 ../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 40.92            -o stdlib__Hashtbl.cmx -c hashtbl.ml
#20 41.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   \
#20 41.06            -o stdlib__Oo.cmx -c oo.ml
#20 41.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   -c camlinternalMod.ml
#20 41.26 ../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 41.26            -o stdlib__Weak.cmx -c weak.ml
#20 41.26 ../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 41.26            -o stdlib__Genlex.cmx -c genlex.ml
#20 41.26 ../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 41.26            -o stdlib__Ephemeron.cmx -c ephemeron.ml
#20 41.26 ../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 41.26            -o stdlib__MoreLabels.cmx -c moreLabels.ml
#20 43.38 ../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 43.38            -o stdlib__Printf.cmx -c printf.ml
#20 43.38 ../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 43.38            -o stdlib__Format.cmx -c format.ml
#20 43.45 ../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 43.45            -o stdlib__Arg.cmx -c arg.ml
#20 43.45 ../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 43.45            -o stdlib__Printexc.cmx -c printexc.ml
#20 43.45 ../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 43.45            -o stdlib__Scanf.cmx -c scanf.ml
#20 43.45 ../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 43.45            -o stdlib__Filename.cmx -c filename.ml
#20 43.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 43.63            -o stdlib__Fun.cmx -c fun.ml
#20 43.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 43.63            -o stdlib__Gc.cmx -c gc.ml
#20 43.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 43.68            -o stdlib__In_channel.cmx -c in_channel.ml
#20 43.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 43.68            -o stdlib__Out_channel.cmx -c out_channel.ml
#20 44.35 ../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 44.41 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 44.41 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.42 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.42 make -j ocamlc.opt
#20 44.42 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.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 utils/config.ml -I utils
#20 44.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 utils/build_path_prefix_map.ml -I utils
#20 44.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 utils/arg_helper.ml -I utils
#20 44.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 utils/local_store.ml -I utils
#20 44.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 utils/terminfo.ml -I utils
#20 44.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 utils/int_replace_polymorphic_compare.ml -I utils
#20 44.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 utils/domainstate.ml -I utils
#20 44.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 utils/binutils.ml -I utils
#20 44.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 utils/lazy_backtrack.ml -I utils
#20 44.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 parsing/camlinternalMenhirLib.ml -I parsing
#20 44.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 lambda/switch.ml -I lambda
#20 44.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 lambda/runtimedef.ml -I lambda
#20 44.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/opcodes.ml -I bytecomp
#20 44.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 utils/misc.ml -I utils
#20 44.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 bytecomp/bytesections.ml -I bytecomp
#20 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.50 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.60 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 45.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 utils/clflags.ml -I utils
#20 45.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 utils/strongly_connected_components.ml -I utils
#20 46.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 utils/ccomp.ml -I utils
#20 46.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 parsing/location.ml -I parsing
#20 46.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/ident.ml -I typing
#20 46.50 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.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 typing/shape.ml -I typing
#20 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.82 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 46.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 parsing/ast_helper.ml -I parsing
#20 46.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 parsing/depend.ml -I parsing
#20 46.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/type_immediacy.ml -I typing
#20 47.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 typing/types.ml -I typing
#20 47.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 driver/main_args.ml -I driver
#20 47.21 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 47.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/btype.ml -I typing
#20 47.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 file_formats/cmi_format.ml -I file_formats
#20 47.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/errortrace.ml -I typing
#20 47.51 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 47.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 parsing/pprintast.ml -I parsing
#20 47.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 parsing/parser.ml -I parsing
#20 47.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 parsing/ast_mapper.ml -I parsing
#20 47.89 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 47.89 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 47.89 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 48.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 typing/subst.ml -I typing
#20 49.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 typing/env.ml -I typing
#20 50.51 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 50.51 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 51.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 typing/typedtree.ml -I typing
#20 51.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 typing/ctype.ml -I typing
#20 51.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 typing/typedecl_properties.ml -I typing
#20 51.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 lambda/lambda.ml -I lambda
#20 51.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 typing/tast_iterator.ml -I typing
#20 51.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 typing/tast_mapper.ml -I typing
#20 51.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/untypeast.ml -I typing
#20 51.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/printpat.ml -I typing
#20 51.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 lambda/translobj.ml -I lambda
#20 51.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 lambda/translattribute.ml -I lambda
#20 51.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 lambda/tmc.ml -I lambda
#20 51.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/instruct.ml -I bytecomp
#20 51.69 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 51.69 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 51.75 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 52.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 lambda/simplif.ml -I lambda
#20 54.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/printtyp.ml -I typing
#20 54.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/mtype.ml -I typing
#20 54.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/patterns.ml -I typing
#20 54.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_variance.ml -I typing
#20 54.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_unboxed.ml -I typing
#20 54.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_separability.ml -I typing
#20 54.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 typing/typedecl_immediacy.ml -I typing
#20 54.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 typing/typeopt.ml -I typing
#20 54.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 typing/parmatch.ml -I typing
#20 54.50 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.06 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.06 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.06 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.06 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.06 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.06 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.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 parsing/lexer.ml -I parsing
#20 56.65 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.65 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.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 typing/typedecl.ml -I typing
#20 56.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 driver/pparse.ml -I driver
#20 56.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 typing/cmt2annot.ml -I typing
#20 56.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 typing/includemod.ml -I typing
#20 56.87 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.87 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 56.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 driver/makedepend.ml -I driver
#20 57.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 typing/includemod_errorprinter.ml -I typing
#20 57.99 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 58.87 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 58.87 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.96 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.96 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 62.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 lambda/translclass.ml -I lambda
#20 63.35 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 63.71 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 64.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 bytecomp/emitcode.ml -I bytecomp
#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/bytelink.ml -I bytecomp
#20 65.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 driver/compmisc.ml -I driver
#20 65.52 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 65.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 bytecomp/bytelibrarian.ml -I bytecomp
#20 65.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 bytecomp/bytepackager.ml -I bytecomp
#20 65.67 ./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 65.67 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 65.85 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 65.97 ./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 65.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 driver/main.ml -I driver
#20 66.03 ./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 66.83 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 66.83 make -j otherlibraries ocamldebugger ocamldoc \
#20 66.83   
#20 66.83 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 66.85 make -j -C yacc  all
#20 66.85 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 66.86 make[3]: Nothing to be done for 'all'.
#20 66.86 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 66.86 make -j -C lex all
#20 66.86 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 66.87 make[3]: Nothing to be done for 'all'.
#20 66.87 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 66.87 make -j -C tools all
#20 66.87 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 66.90 make[3]: Nothing to be done for 'all'.
#20 66.90 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 66.90 make -j -C otherlibs all
#20 66.90 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 66.90 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 66.91 cp -f dynlink_compilerlibs/Makefile.copy-sources dynlink_compilerlibs/Makefile
#20 66.91 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 66.91           echo "dynlink_compilerlibs/$(basename $ml): ../../$ml" \
#20 66.91             >> dynlink_compilerlibs/Makefile; \
#20 66.91           echo "dynlink_compilerlibs/$(basename $ml)i: ../../${ml}i" \
#20 66.91             >> dynlink_compilerlibs/Makefile; \
#20 66.91         done;
#20 67.00 for mli in parsing/asttypes.mli parsing/parsetree.mli typing/outcometree.mli file_formats/cmo_format.mli file_formats/cmxs_format.mli; do \
#20 67.00           echo "dynlink_compilerlibs/$(basename $mli): ../../$mli" \
#20 67.00             >> dynlink_compilerlibs/Makefile; \
#20 67.00           echo \
#20 67.00             "dynlink_compilerlibs/$(basename $mli .mli).ml: ../../$mli"\
#20 67.00             >> dynlink_compilerlibs/Makefile; \
#20 67.00         done
#20 67.03 cp ../../utils/binutils.ml dynlink_compilerlibs/binutils.ml
#20 67.03 cp ../../utils/config.ml dynlink_compilerlibs/config.ml
#20 67.03 cp ../../utils/build_path_prefix_map.ml dynlink_compilerlibs/build_path_prefix_map.ml
#20 67.03 cp ../../utils/misc.ml dynlink_compilerlibs/misc.ml
#20 67.03 cp ../../utils/identifiable.ml dynlink_compilerlibs/identifiable.ml
#20 67.03 cp ../../utils/numbers.ml dynlink_compilerlibs/numbers.ml
#20 67.03 cp ../../utils/arg_helper.ml dynlink_compilerlibs/arg_helper.ml
#20 67.03 cp ../../utils/clflags.ml dynlink_compilerlibs/clflags.ml
#20 67.03 cp ../../utils/profile.ml dynlink_compilerlibs/profile.ml
#20 67.03 cp ../../utils/consistbl.ml dynlink_compilerlibs/consistbl.ml
#20 67.03 cp ../../utils/terminfo.ml dynlink_compilerlibs/terminfo.ml
#20 67.03 cp ../../utils/warnings.ml dynlink_compilerlibs/warnings.ml
#20 67.03 cp ../../utils/local_store.ml dynlink_compilerlibs/local_store.ml
#20 67.03 cp ../../utils/load_path.ml dynlink_compilerlibs/load_path.ml
#20 67.03 cp ../../utils/int_replace_polymorphic_compare.ml dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 67.03 cp ../../utils/lazy_backtrack.ml dynlink_compilerlibs/lazy_backtrack.ml
#20 67.03 cp ../../parsing/location.ml dynlink_compilerlibs/location.ml
#20 67.03 cp ../../parsing/longident.ml dynlink_compilerlibs/longident.ml
#20 67.03 cp ../../parsing/docstrings.ml dynlink_compilerlibs/docstrings.ml
#20 67.03 cp ../../parsing/syntaxerr.ml dynlink_compilerlibs/syntaxerr.ml
#20 67.03 cp ../../parsing/ast_helper.ml dynlink_compilerlibs/ast_helper.ml
#20 67.03 cp ../../parsing/ast_mapper.ml dynlink_compilerlibs/ast_mapper.ml
#20 67.03 cp ../../parsing/attr_helper.ml dynlink_compilerlibs/attr_helper.ml
#20 67.03 cp ../../parsing/builtin_attributes.ml dynlink_compilerlibs/builtin_attributes.ml
#20 67.03 cp ../../typing/ident.ml dynlink_compilerlibs/ident.ml
#20 67.04 cp ../../typing/path.ml dynlink_compilerlibs/path.ml
#20 67.04 cp ../../typing/primitive.ml dynlink_compilerlibs/primitive.ml
#20 67.04 cp ../../typing/type_immediacy.ml dynlink_compilerlibs/type_immediacy.ml
#20 67.04 cp ../../typing/shape.ml dynlink_compilerlibs/shape.ml
#20 67.04 cp ../../typing/types.ml dynlink_compilerlibs/types.ml
#20 67.04 cp ../../typing/btype.ml dynlink_compilerlibs/btype.ml
#20 67.04 cp ../../typing/subst.ml dynlink_compilerlibs/subst.ml
#20 67.04 cp ../../typing/predef.ml dynlink_compilerlibs/predef.ml
#20 67.04 cp ../../typing/datarepr.ml dynlink_compilerlibs/datarepr.ml
#20 67.04 cp ../../file_formats/cmi_format.ml dynlink_compilerlibs/cmi_format.ml
#20 67.04 cp ../../typing/persistent_env.ml dynlink_compilerlibs/persistent_env.ml
#20 67.04 cp ../../typing/env.ml dynlink_compilerlibs/env.ml
#20 67.04 cp ../../lambda/debuginfo.ml dynlink_compilerlibs/debuginfo.ml
#20 67.04 cp ../../lambda/lambda.ml dynlink_compilerlibs/lambda.ml
#20 67.04 cp ../../lambda/runtimedef.ml dynlink_compilerlibs/runtimedef.ml
#20 67.04 cp ../../bytecomp/instruct.ml dynlink_compilerlibs/instruct.ml
#20 67.04 cp ../../bytecomp/opcodes.ml dynlink_compilerlibs/opcodes.ml
#20 67.04 cp ../../bytecomp/bytesections.ml dynlink_compilerlibs/bytesections.ml
#20 67.04 cp ../../bytecomp/dll.ml dynlink_compilerlibs/dll.ml
#20 67.04 cp ../../bytecomp/meta.ml dynlink_compilerlibs/meta.ml
#20 67.04 cp ../../bytecomp/symtable.ml dynlink_compilerlibs/symtable.ml
#20 67.04 cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.ml
#20 67.04 cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.ml
#20 67.04 cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.ml
#20 67.04 cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.ml
#20 67.04 cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.ml
#20 67.04 cp ../../utils/binutils.mli dynlink_compilerlibs/binutils.mli
#20 67.04 cp ../../utils/config.mli dynlink_compilerlibs/config.mli
#20 67.04 cp ../../utils/build_path_prefix_map.mli dynlink_compilerlibs/build_path_prefix_map.mli
#20 67.05 cp ../../utils/misc.mli dynlink_compilerlibs/misc.mli
#20 67.05 cp ../../utils/identifiable.mli dynlink_compilerlibs/identifiable.mli
#20 67.05 cp ../../utils/numbers.mli dynlink_compilerlibs/numbers.mli
#20 67.05 cp ../../utils/arg_helper.mli dynlink_compilerlibs/arg_helper.mli
#20 67.05 cp ../../utils/clflags.mli dynlink_compilerlibs/clflags.mli
#20 67.05 cp ../../utils/profile.mli dynlink_compilerlibs/profile.mli
#20 67.05 cp ../../utils/consistbl.mli dynlink_compilerlibs/consistbl.mli
#20 67.05 cp ../../utils/terminfo.mli dynlink_compilerlibs/terminfo.mli
#20 67.05 cp ../../utils/warnings.mli dynlink_compilerlibs/warnings.mli
#20 67.05 cp ../../utils/local_store.mli dynlink_compilerlibs/local_store.mli
#20 67.05 cp ../../utils/load_path.mli dynlink_compilerlibs/load_path.mli
#20 67.05 cp ../../utils/int_replace_polymorphic_compare.mli dynlink_compilerlibs/int_replace_polymorphic_compare.mli
#20 67.05 cp ../../utils/lazy_backtrack.mli dynlink_compilerlibs/lazy_backtrack.mli
#20 67.05 cp ../../parsing/location.mli dynlink_compilerlibs/location.mli
#20 67.05 cp ../../parsing/longident.mli dynlink_compilerlibs/longident.mli
#20 67.05 cp ../../parsing/docstrings.mli dynlink_compilerlibs/docstrings.mli
#20 67.05 cp ../../parsing/syntaxerr.mli dynlink_compilerlibs/syntaxerr.mli
#20 67.05 cp ../../parsing/ast_helper.mli dynlink_compilerlibs/ast_helper.mli
#20 67.05 cp ../../parsing/ast_mapper.mli dynlink_compilerlibs/ast_mapper.mli
#20 67.05 cp ../../parsing/attr_helper.mli dynlink_compilerlibs/attr_helper.mli
#20 67.05 cp ../../parsing/builtin_attributes.mli dynlink_compilerlibs/builtin_attributes.mli
#20 67.05 cp ../../typing/ident.mli dynlink_compilerlibs/ident.mli
#20 67.05 cp ../../typing/path.mli dynlink_compilerlibs/path.mli
#20 67.05 cp ../../typing/primitive.mli dynlink_compilerlibs/primitive.mli
#20 67.05 cp ../../typing/type_immediacy.mli dynlink_compilerlibs/type_immediacy.mli
#20 67.05 cp ../../typing/shape.mli dynlink_compilerlibs/shape.mli
#20 67.05 cp ../../typing/types.mli dynlink_compilerlibs/types.mli
#20 67.05 cp ../../typing/btype.mli dynlink_compilerlibs/btype.mli
#20 67.05 cp ../../typing/subst.mli dynlink_compilerlibs/subst.mli
#20 67.05 cp ../../typing/predef.mli dynlink_compilerlibs/predef.mli
#20 67.05 cp ../../typing/datarepr.mli dynlink_compilerlibs/datarepr.mli
#20 67.06 cp ../../file_formats/cmi_format.mli dynlink_compilerlibs/cmi_format.mli
#20 67.06 cp ../../typing/persistent_env.mli dynlink_compilerlibs/persistent_env.mli
#20 67.06 cp ../../typing/env.mli dynlink_compilerlibs/env.mli
#20 67.06 cp ../../lambda/debuginfo.mli dynlink_compilerlibs/debuginfo.mli
#20 67.06 cp ../../lambda/lambda.mli dynlink_compilerlibs/lambda.mli
#20 67.06 cp ../../lambda/runtimedef.mli dynlink_compilerlibs/runtimedef.mli
#20 67.06 cp ../../bytecomp/instruct.mli dynlink_compilerlibs/instruct.mli
#20 67.06 cp ../../bytecomp/opcodes.mli dynlink_compilerlibs/opcodes.mli
#20 67.06 cp ../../bytecomp/bytesections.mli dynlink_compilerlibs/bytesections.mli
#20 67.06 cp ../../bytecomp/dll.mli dynlink_compilerlibs/dll.mli
#20 67.06 cp ../../bytecomp/meta.mli dynlink_compilerlibs/meta.mli
#20 67.06 cp ../../bytecomp/symtable.mli dynlink_compilerlibs/symtable.mli
#20 67.06 cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.mli
#20 67.06 cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.mli
#20 67.06 cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.mli
#20 67.06 cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.mli
#20 67.06 cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.mli
#20 67.06 ../../ocamlc.opt -depend -slash -I dynlink_compilerlibs \
#20 67.06 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 67.06 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 67.06         > dynlink_compilerlibs/.depend
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmi dynlink_compilerlibs/binutils.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmi dynlink_compilerlibs/config.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmi dynlink_compilerlibs/build_path_prefix_map.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmi dynlink_compilerlibs/identifiable.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmi dynlink_compilerlibs/arg_helper.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmi dynlink_compilerlibs/profile.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmi dynlink_compilerlibs/terminfo.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmi dynlink_compilerlibs/warnings.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmi dynlink_compilerlibs/local_store.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmi dynlink_compilerlibs/load_path.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmi dynlink_compilerlibs/int_replace_polymorphic_compare.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmi dynlink_compilerlibs/lazy_backtrack.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmi dynlink_compilerlibs/longident.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmi dynlink_compilerlibs/runtimedef.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmi dynlink_compilerlibs/opcodes.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmi dynlink_compilerlibs/bytesections.mli
#20 67.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 67.24           -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmi dynlink_compilerlibs/dll.mli
#20 67.24 ../../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 67.24 cp dynlink_platform_intf.ml dynlink_platform_intf.mli
#20 67.24 ../../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 67.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 67.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmo dynlink_compilerlibs/binutils.ml
#20 67.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 67.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmo dynlink_compilerlibs/config.ml
#20 67.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 67.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmo dynlink_compilerlibs/terminfo.ml
#20 67.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 67.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmo dynlink_compilerlibs/build_path_prefix_map.ml
#20 67.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 67.25           -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmi dynlink_compilerlibs/misc.mli
#20 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmo dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmo dynlink_compilerlibs/lazy_backtrack.ml
#20 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmo dynlink_compilerlibs/runtimedef.ml
#20 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmi dynlink_compilerlibs/location.mli
#20 67.26 cp dynlink.cmi dynlink.mli byte/
#20 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmo dynlink_compilerlibs/arg_helper.ml
#20 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmo dynlink_compilerlibs/local_store.ml
#20 67.26 ../../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 67.26 ../../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 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmo dynlink_compilerlibs/bytesections.ml
#20 67.26 ../../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 67.26           -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmo dynlink_compilerlibs/opcodes.ml
#20 67.27 ../../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 67.27 ../../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 67.28 ../../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 67.28           -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmi dynlink_compilerlibs/asttypes.mli
#20 67.28 ../../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 67.28           -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmi dynlink_compilerlibs/syntaxerr.mli
#20 67.28 ../../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 67.28           -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmo dynlink_compilerlibs/syntaxerr.ml
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmi dynlink_compilerlibs/parsetree.mli
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmo dynlink_compilerlibs/asttypes.ml
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmi dynlink_compilerlibs/numbers.mli
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmi dynlink_compilerlibs/ident.mli
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmo dynlink_compilerlibs/misc.ml
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmo dynlink_compilerlibs/identifiable.ml
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmi dynlink_compilerlibs/clflags.mli
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmo dynlink_compilerlibs/profile.ml
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmi dynlink_compilerlibs/consistbl.mli
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmo dynlink_compilerlibs/warnings.ml
#20 67.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 67.29           -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmo dynlink_compilerlibs/load_path.ml
#20 67.30 ../../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 67.30           -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmo dynlink_compilerlibs/longident.ml
#20 67.30 ../../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 67.30           -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmo dynlink_compilerlibs/dll.ml
#20 67.30 ../../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 67.30           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmi dynlink_compilerlibs/cmxs_format.mli
#20 67.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 67.31           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmo dynlink_compilerlibs/cmxs_format.ml
#20 67.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 67.31           -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmo dynlink_compilerlibs/location.ml
#20 67.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 67.31           -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmo dynlink_compilerlibs/consistbl.ml
#20 67.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 67.31           -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmo dynlink_compilerlibs/ident.ml
#20 67.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 67.31           -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmi dynlink_compilerlibs/path.mli
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmi dynlink_compilerlibs/debuginfo.mli
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmi dynlink_compilerlibs/docstrings.mli
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmi dynlink_compilerlibs/ast_mapper.mli
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmi dynlink_compilerlibs/attr_helper.mli
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmi dynlink_compilerlibs/builtin_attributes.mli
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmi dynlink_compilerlibs/type_immediacy.mli
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmo dynlink_compilerlibs/parsetree.ml
#20 67.32 ../../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 67.32           -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmo dynlink_compilerlibs/numbers.ml
#20 67.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 67.33           -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmo dynlink_compilerlibs/clflags.ml
#20 67.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 67.33           -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmo dynlink_compilerlibs/debuginfo.ml
#20 67.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 67.33           -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmi dynlink_compilerlibs/outcometree.mli
#20 67.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 67.33           -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmo dynlink_compilerlibs/path.ml
#20 67.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 67.33           -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmi dynlink_compilerlibs/shape.mli
#20 67.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 67.34           -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmo dynlink_compilerlibs/builtin_attributes.ml
#20 67.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 67.34           -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmo dynlink_compilerlibs/type_immediacy.ml
#20 67.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 67.34           -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmo dynlink_compilerlibs/attr_helper.ml
#20 67.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 67.34           -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmo dynlink_compilerlibs/docstrings.ml
#20 67.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 67.34           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmi dynlink_compilerlibs/ast_helper.mli
#20 67.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 67.35           -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmi dynlink_compilerlibs/primitive.mli
#20 67.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 67.35           -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmo dynlink_compilerlibs/outcometree.ml
#20 67.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 67.37           -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmo dynlink_compilerlibs/primitive.ml
#20 67.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 67.37           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmo dynlink_compilerlibs/ast_helper.ml
#20 67.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 67.37           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmo dynlink_compilerlibs/ast_mapper.ml
#20 67.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 67.37           -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmo dynlink_compilerlibs/shape.ml
#20 67.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 67.37           -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmi dynlink_compilerlibs/types.mli
#20 67.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 67.41           -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmo dynlink_compilerlibs/types.ml
#20 67.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 67.41           -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmi dynlink_compilerlibs/btype.mli
#20 67.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 67.41           -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmi dynlink_compilerlibs/subst.mli
#20 67.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 67.41           -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmi dynlink_compilerlibs/predef.mli
#20 67.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 67.41           -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmi dynlink_compilerlibs/datarepr.mli
#20 67.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 67.41           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmi dynlink_compilerlibs/cmi_format.mli
#20 67.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 67.44           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmo dynlink_compilerlibs/cmi_format.ml
#20 67.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 67.44           -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmi dynlink_compilerlibs/persistent_env.mli
#20 67.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 67.44           -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmi dynlink_compilerlibs/env.mli
#20 67.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 67.45           -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmo dynlink_compilerlibs/btype.ml
#20 67.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 67.45           -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmo dynlink_compilerlibs/subst.ml
#20 67.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 67.45           -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmo dynlink_compilerlibs/predef.ml
#20 67.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 67.45           -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmo dynlink_compilerlibs/datarepr.ml
#20 67.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 67.46           -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmo dynlink_compilerlibs/persistent_env.ml
#20 67.47 ../../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 67.47           -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmo dynlink_compilerlibs/env.ml
#20 67.47 ../../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 67.47           -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmi dynlink_compilerlibs/lambda.mli
#20 67.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 67.51           -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmo dynlink_compilerlibs/lambda.ml
#20 67.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 67.51           -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmi dynlink_compilerlibs/instruct.mli
#20 67.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 67.51           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmi dynlink_compilerlibs/cmo_format.mli
#20 67.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 67.53           -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmi dynlink_compilerlibs/symtable.mli
#20 67.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 67.53           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmo dynlink_compilerlibs/cmo_format.ml
#20 67.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 67.53           -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmo dynlink_compilerlibs/instruct.ml
#20 67.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 67.53           -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmi dynlink_compilerlibs/meta.mli
#20 67.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 67.54           -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmo dynlink_compilerlibs/meta.ml
#20 67.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 67.55           -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmo dynlink_compilerlibs/symtable.ml
#20 67.82 ../../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 68.05 ../../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 68.05 ../../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 68.05 ../../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 68.11 ../../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 68.12 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -o extract_crc dynlink.cma byte/dynlink_compilerlibs.cmo extract_crc.cmo
#20 68.24 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 68.24 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 68.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 68.25   -o accept.o accept.c
#20 68.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 68.25   -o access.o access.c
#20 68.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 68.25   -o addrofstr.o addrofstr.c
#20 68.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 68.25   -o alarm.o alarm.c
#20 68.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 68.25   -o bind.o bind.c
#20 68.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 68.25   -o channels.o channels.c
#20 68.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 68.25   -o chdir.o chdir.c
#20 68.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 68.25   -o chmod.o chmod.c
#20 68.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 68.25   -o chown.o chown.c
#20 68.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 68.25   -o chroot.o chroot.c
#20 68.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 68.25   -o close.o close.c
#20 68.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 68.25   -o fsync.o fsync.c
#20 68.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 68.25   -o closedir.o closedir.c
#20 68.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 68.25   -o connect.o connect.c
#20 68.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 68.26   -o cst2constr.o cst2constr.c
#20 68.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 68.26   -o cstringv.o cstringv.c
#20 68.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 68.26   -o dup.o dup.c
#20 68.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 68.26   -o dup2.o dup2.c
#20 68.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 68.26   -o envir.o envir.c
#20 68.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 68.26   -o errmsg.o errmsg.c
#20 68.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 68.26   -o execv.o execv.c
#20 68.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 68.26   -o execve.o execve.c
#20 68.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 68.26   -o execvp.o execvp.c
#20 68.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 68.26   -o exit.o exit.c
#20 68.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 68.26   -o fchmod.o fchmod.c
#20 68.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 68.26   -o fchown.o fchown.c
#20 68.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 68.26   -o fcntl.o fcntl.c
#20 68.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 68.26   -o fork.o fork.c
#20 68.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 68.26   -o ftruncate.o ftruncate.c
#20 68.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 68.26   -o getaddrinfo.o getaddrinfo.c
#20 68.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 68.26   -o getcwd.o getcwd.c
#20 68.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 68.26   -o getegid.o getegid.c
#20 68.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 68.26   -o geteuid.o geteuid.c
#20 68.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 68.26   -o getgid.o getgid.c
#20 68.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 68.26   -o getgr.o getgr.c
#20 68.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 68.26   -o getgroups.o getgroups.c
#20 68.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 68.26   -o gethost.o gethost.c
#20 68.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 68.27   -o gethostname.o gethostname.c
#20 68.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 68.27   -o getlogin.o getlogin.c
#20 68.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 68.27   -o getnameinfo.o getnameinfo.c
#20 68.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 68.27   -o getpeername.o getpeername.c
#20 68.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 68.27   -o getpid.o getpid.c
#20 68.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 68.27   -o getppid.o getppid.c
#20 68.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 68.27   -o getproto.o getproto.c
#20 68.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 68.27   -o getpw.o getpw.c
#20 68.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 68.27   -o gettimeofday.o gettimeofday.c
#20 68.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 68.27   -o getserv.o getserv.c
#20 68.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 68.27   -o getsockname.o getsockname.c
#20 68.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 68.27   -o getuid.o getuid.c
#20 68.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 68.27   -o gmtime.o gmtime.c
#20 68.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 68.27   -o initgroups.o initgroups.c
#20 68.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 68.27   -o isatty.o isatty.c
#20 68.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 68.27   -o itimer.o itimer.c
#20 68.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 68.27   -o kill.o kill.c
#20 68.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 68.27   -o link.o link.c
#20 68.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 68.27   -o listen.o listen.c
#20 68.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 68.27   -o lockf.o lockf.c
#20 68.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 68.28   -o lseek.o lseek.c
#20 68.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 68.28   -o mkdir.o mkdir.c
#20 68.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 68.28   -o mkfifo.o mkfifo.c
#20 68.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 68.28   -o mmap.o mmap.c
#20 68.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 68.28   -o mmap_ba.o mmap_ba.c
#20 68.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 68.28   -o nice.o nice.c
#20 68.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 68.28   -o open.o open.c
#20 68.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 68.28   -o opendir.o opendir.c
#20 68.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 68.28   -o pipe.o pipe.c
#20 68.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 68.28   -o putenv.o putenv.c
#20 68.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 68.28   -o read.o read.c
#20 68.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 68.28   -o realpath.o realpath.c
#20 68.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 68.28   -o readdir.o readdir.c
#20 68.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 68.28   -o readlink.o readlink.c
#20 68.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 68.28   -o rename.o rename.c
#20 68.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 68.28   -o rewinddir.o rewinddir.c
#20 68.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 68.28   -o rmdir.o rmdir.c
#20 68.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 68.28   -o select.o select.c
#20 68.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 68.28   -o sendrecv.o sendrecv.c
#20 68.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 68.29   -o setgid.o setgid.c
#20 68.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 68.29   -o setgroups.o setgroups.c
#20 68.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 68.29   -o setsid.o setsid.c
#20 68.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 68.29   -o setuid.o setuid.c
#20 68.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 68.29   -o shutdown.o shutdown.c
#20 68.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 68.29   -o signals.o signals.c
#20 68.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 68.30   -o sleep.o sleep.c
#20 68.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 68.30   -o socket.o socket.c
#20 68.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 68.30   -o socketaddr.o socketaddr.c
#20 68.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 68.31   -o socketpair.o socketpair.c
#20 68.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 68.31   -o sockopt.o sockopt.c
#20 68.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 68.31   -o spawn.o spawn.c
#20 68.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 68.31   -o stat.o stat.c
#20 68.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 68.31   -o strofaddr.o strofaddr.c
#20 68.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 68.31   -o symlink.o symlink.c
#20 68.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 68.31   -o termios.o termios.c
#20 68.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 68.32   -o time.o time.c
#20 68.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 68.32   -o times.o times.c
#20 68.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 68.32   -o truncate.o truncate.c
#20 68.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 68.32   -o umask.o umask.c
#20 68.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 68.32   -o unixsupport.o unixsupport.c
#20 68.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 68.32   -o unlink.o unlink.c
#20 68.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 68.32   -o utimes.o utimes.c
#20 68.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 68.32   -o wait.o wait.c
#20 68.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 68.32   -o write.o write.c
#20 68.32 ../../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 68.36 ../../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 68.36 ../../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 68.40 ../../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 68.43 ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib' -linkall \
#20 68.43          unix.cmo unixLabels.cmo 
#20 68.45 ../../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 68.54 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 68.54 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 68.54 ../../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 68.56 ../../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 68.58 ../../ocamlc.opt -nostdlib -I ../../stdlib -o bigarray.cma -a -linkall bigarray.cmo 
#20 68.59 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 68.59 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 68.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 68.59   -o strstubs.o strstubs.c
#20 68.59 ../../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 68.61 ../../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 68.67 ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib' -linkall \
#20 68.67          str.cmo 
#20 68.79 ../../boot/ocamlrun ../../tools/ocamlmklib -oc camlstr strstubs.o 
#20 68.82 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 68.82 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 68.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 68.83   -o st_stubs.b.o st_stubs.c
#20 68.83 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string thread.mli
#20 68.84 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string mutex.mli
#20 68.84 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string event.mli
#20 68.84 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string threadUnix.mli
#20 68.84 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string semaphore.mli
#20 68.85 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string thread.ml
#20 68.85 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string threadUnix.ml
#20 68.85 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string mutex.ml
#20 68.86 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string condition.mli
#20 68.87 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string condition.ml
#20 68.87 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string event.ml
#20 68.87 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string semaphore.ml
#20 68.90 ../../boot/ocamlrun ../../tools/ocamlmklib -o threads -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -cclib -lunix -linkall \
#20 68.90   -cclib -lpthread thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo semaphore.cmo
#20 69.18 ../../boot/ocamlrun ../../tools/ocamlmklib -o threads st_stubs.b.o -lpthread
#20 69.22 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 69.22 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 69.22 make -j -C debugger all
#20 69.22 make -j -C ocamldoc all
#20 69.22 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 69.22 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 69.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 int64ops.mli
#20 69.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 primitives.mli
#20 69.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_config.mli
#20 69.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_messages.ml
#20 69.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 unix_tools.mli
#20 69.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 debugger_config.mli
#20 69.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_types.mli
#20 69.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 parameters.mli
#20 69.23 ../boot/ocamlrun ../lex/ocamllex -q debugger_lexer.mll
#20 69.23 ../yacc/ocamlyacc --strict -v odoc_text_parser.mly
#20 69.23 ../yacc/ocamlyacc  debugger_parser.mly
#20 69.23 ../boot/ocamlrun ../lex/ocamllex -q odoc_text_lexer.mll
#20 69.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 question.mli
#20 69.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_name.mli
#20 69.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 exec.mli
#20 69.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.mli
#20 69.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_print.mli
#20 69.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 events.mli
#20 69.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_comments_global.mli
#20 69.24 ../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 69.24 ../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 69.24 ../yacc/ocamlyacc --strict -v odoc_parser.mly
#20 69.24 ../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 69.24 ../boot/ocamlrun ../lex/ocamllex -q odoc_lexer.mll
#20 69.24 ../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 69.24 ../boot/ocamlrun ../lex/ocamllex -q odoc_see_lexer.mll
#20 69.24 ../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 69.24 ../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 69.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_control.ml
#20 69.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_inherit.ml
#20 69.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_latex_style.ml
#20 69.24 ../boot/ocamlrun ../lex/ocamllex -q odoc_ocamlhtml.mll
#20 69.24 ../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 69.25 ../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 69.25 ../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 69.25 ../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 69.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_config.ml
#20 69.25 ../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 69.25 ../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 69.25 ../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 69.25 ../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 69.25 ../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 69.25 ../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 69.26 ../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 69.26 ../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 69.26 ../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 69.26 ../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 69.26 ../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 69.26 ../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 69.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_global.mli
#20 69.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_misc.mli
#20 69.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_text_parser.mli
#20 69.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_text.mli
#20 69.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_parameter.ml
#20 69.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_comments_global.ml
#20 69.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_parser.mli
#20 69.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_print.ml
#20 69.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_type.ml
#20 69.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.mli
#20 69.27 ../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 69.27 ../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 69.27 ../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 69.27 ../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 69.27 ../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 69.27 ../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 69.27 ../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 69.27 ../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 69.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_parser.ml
#20 69.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_see_lexer.ml
#20 69.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 debugger_parser.mli
#20 69.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 printval.mli
#20 69.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 eval.mli
#20 69.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_extension.ml
#20 69.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_exception.ml
#20 69.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_text_parser.ml
#20 69.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_name.ml
#20 69.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_value.ml
#20 69.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_env.ml
#20 69.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 69.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_types.ml
#20 69.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_misc.ml
#20 69.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_lexer.ml
#20 69.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_ocamlhtml.ml
#20 69.29 ../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 69.29 ../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 69.29 ../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 69.29 ../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 69.29 ../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 69.29 ../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 69.29 ../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 69.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 symbols.ml
#20 69.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 breakpoints.ml
#20 69.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 debugger_lexer.mli
#20 69.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 debugger_parser.ml
#20 69.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 printval.ml
#20 69.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 show_information.ml
#20 69.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 loadprinter.ml
#20 69.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 eval.ml
#20 69.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_text_lexer.ml
#20 69.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_class.ml
#20 69.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 debugger_lexer.ml
#20 69.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 question.ml
#20 69.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 command_line.ml
#20 69.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_module.ml
#20 69.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_str.mli
#20 69.35 ../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 69.36 ../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 69.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_merge.mli
#20 69.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_sig.mli
#20 69.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_search.mli
#20 69.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_scan.ml
#20 69.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_cross.mli
#20 69.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_comments.mli
#20 69.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_dep.ml
#20 69.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_analyse.mli
#20 69.40 ../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 69.40 ../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 69.40 ../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 69.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_comments.ml
#20 69.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_sig.ml
#20 69.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_ast.mli
#20 69.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_cross.ml
#20 69.43 ../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 69.43 ../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 69.45 ../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 69.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_info.ml
#20 69.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_to_text.ml
#20 69.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_man.ml
#20 69.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_dag2html.mli
#20 69.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_dot.ml
#20 69.47 ../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 69.47 ../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 69.50 ../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 69.51 ../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 69.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_texi.ml
#20 69.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_latex.ml
#20 69.62 ../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 69.82 ../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 69.84 ../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 69.84 ../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 69.86 ../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 69.86 ../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 69.86 ../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 69.86 ../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 69.86 ../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 70.02 ../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 70.07 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 70.16 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 70.16 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 70.16 make -j ocamlopt.opt
#20 70.16 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 70.19 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.19 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.19 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.19 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.19 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.19 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.19 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.20 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.20 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.20 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.20 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.20 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.27 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.27 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.27 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.31 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.32 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.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 asmcomp/x86_masm.ml -I asmcomp
#20 70.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 asmcomp/x86_gas.ml -I asmcomp
#20 70.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 asmcomp/x86_dsl.ml -I asmcomp
#20 70.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 asmcomp/cmm.ml -I asmcomp
#20 70.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 middle_end/variable.ml -I middle_end
#20 70.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 middle_end/flambda/base_types/export_id.ml -I middle_end/flambda/base_types
#20 70.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 middle_end/flambda/base_types/set_of_closures_id.ml -I middle_end/flambda/base_types
#20 70.53 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.54 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.65 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.65 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.65 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.65 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.73 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 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 middle_end/flambda/base_types/closure_id.ml -I middle_end/flambda/base_types
#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 middle_end/flambda/base_types/var_within_closure.ml -I middle_end/flambda/base_types
#20 70.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 middle_end/flambda/closure_conversion_aux.ml -I middle_end/flambda
#20 70.82 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.82 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.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 asmcomp/proc.ml -I asmcomp
#20 70.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 asmcomp/dataflow.ml -I asmcomp
#20 70.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 asmcomp/comballoc.ml -I asmcomp
#20 70.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 asmcomp/split.ml -I asmcomp
#20 70.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 asmcomp/reloadgen.ml -I asmcomp
#20 70.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 asmcomp/linear.ml -I asmcomp
#20 70.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 file_formats/linear_format.ml -I file_formats
#20 70.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 asmcomp/branch_relaxation_intf.ml -I asmcomp
#20 70.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 asmcomp/polling.ml -I asmcomp
#20 70.96 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 70.99 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.01 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.02 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 71.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 asmcomp/printmach.ml -I asmcomp
#20 71.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 asmcomp/linscan.ml -I asmcomp
#20 71.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 asmcomp/selectgen.ml -I asmcomp
#20 71.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 asmcomp/CSE.ml -I asmcomp
#20 71.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 asmcomp/scheduling.ml -I asmcomp
#20 71.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 asmcomp/liveness.ml -I asmcomp
#20 71.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 asmcomp/printlinear.ml -I asmcomp
#20 71.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 middle_end/flambda/flambda_iterators.ml -I middle_end/flambda
#20 71.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 middle_end/flambda/effect_analysis.ml -I middle_end/flambda
#20 71.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 middle_end/flambda/initialize_symbol_to_let_symbol.ml -I middle_end/flambda
#20 71.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 middle_end/flambda/alias_analysis.ml -I middle_end/flambda
#20 72.00 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 72.23 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 72.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 middle_end/flambda/flambda_utils.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/inlining_cost.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/lift_code.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/share_constants.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/ref_to_variables.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/flambda_invariants.ml -I middle_end/flambda
#20 72.70 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 72.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 middle_end/flambda/inlining_stats.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/freshening.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/closure_conversion.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/lift_let_to_initialize_symbol.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/find_recursive_functions.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/invariant_params.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/inconstant_idents.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/remove_unused_closure_vars.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/remove_free_vars_equal_to_args.ml -I middle_end/flambda
#20 72.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 middle_end/flambda/closure_offsets.ml -I middle_end/flambda
#20 73.20 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 73.31 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 73.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 middle_end/flambda/export_info.ml -I middle_end/flambda
#20 73.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 middle_end/flambda/lift_constants.ml -I middle_end/flambda
#20 73.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 middle_end/flambda/simplify_common.ml -I middle_end/flambda
#20 73.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 middle_end/flambda/inline_and_simplify_aux.ml -I middle_end/flambda
#20 73.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 middle_end/flambda/simplify_boxed_integer_ops.ml -I middle_end/flambda
#20 74.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 middle_end/flambda/simplify_primitives.ml -I middle_end/flambda
#20 74.31 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.31 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.31 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.35 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.35 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.35 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.52 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.58 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.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 asmcomp/cmm_helpers.ml -I asmcomp
#20 74.71 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 74.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 middle_end/flambda/unbox_specialised_args.ml -I middle_end/flambda
#20 74.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 middle_end/flambda/unbox_closures.ml -I middle_end/flambda
#20 75.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 middle_end/flambda/inline_and_simplify.ml -I middle_end/flambda
#20 75.69 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 76.08 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 76.49 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 77.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 asmcomp/asmgen.ml -I asmcomp
#20 77.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 asmcomp/asmlink.ml -I asmcomp
#20 77.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/optcompile.ml -I driver
#20 78.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 asmcomp/asmlibrarian.ml -I asmcomp
#20 78.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 asmcomp/asmpackager.ml -I asmcomp
#20 78.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/optmaindriver.ml -I driver
#20 78.52 ./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 78.52 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 78.60 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink  -o ocamlopt.opt compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa driver/optmain.cmx
#20 79.79 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 79.79 make -j otherlibrariesopt
#20 79.79 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 79.81 make -j -C otherlibs allopt
#20 79.81 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 79.82 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 79.83 ../../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 79.83           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmx dynlink_compilerlibs/binutils.ml
#20 79.83 ../../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 79.83           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmx dynlink_compilerlibs/config.ml
#20 79.83 ../../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 79.83           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmx dynlink_compilerlibs/build_path_prefix_map.ml
#20 79.83 ../../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 79.83           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmx dynlink_compilerlibs/arg_helper.ml
#20 79.83 ../../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 79.83           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmx dynlink_compilerlibs/terminfo.ml
#20 79.83 ../../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 79.83           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmx dynlink_compilerlibs/local_store.ml
#20 79.83 ../../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 79.83           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmx dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 79.84 ../../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 79.84           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmx dynlink_compilerlibs/lazy_backtrack.ml
#20 79.84 ../../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 79.84           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmx dynlink_compilerlibs/runtimedef.ml
#20 79.84 ../../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 79.84           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmx dynlink_compilerlibs/opcodes.ml
#20 79.84 ../../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 79.84 cp dynlink.cmi dynlink.mli native/
#20 79.88 ../../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 79.89 ../../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 79.89           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmx dynlink_compilerlibs/misc.ml
#20 79.89 ../../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 79.89           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmx dynlink_compilerlibs/bytesections.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmx dynlink_compilerlibs/identifiable.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmx dynlink_compilerlibs/profile.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmx dynlink_compilerlibs/consistbl.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmx dynlink_compilerlibs/warnings.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmx dynlink_compilerlibs/load_path.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmx dynlink_compilerlibs/longident.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmx dynlink_compilerlibs/dll.ml
#20 80.09 ../../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 80.09           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmx dynlink_compilerlibs/cmxs_format.ml
#20 80.21 ../../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 80.21           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmx dynlink_compilerlibs/numbers.ml
#20 80.28 ../../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 80.28           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmx dynlink_compilerlibs/clflags.ml
#20 80.40 ../../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 80.40           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmx dynlink_compilerlibs/location.ml
#20 80.40 ../../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 80.40           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmx dynlink_compilerlibs/ident.ml
#20 80.50 ../../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 80.50           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmx dynlink_compilerlibs/path.ml
#20 80.55 ../../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 80.55           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmx dynlink_compilerlibs/shape.ml
#20 80.55 ../../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 80.55           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmx dynlink_compilerlibs/asttypes.ml
#20 80.55 ../../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 80.55           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmx dynlink_compilerlibs/syntaxerr.ml
#20 80.57 ../../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 80.57           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmx dynlink_compilerlibs/parsetree.ml
#20 80.57 ../../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 80.57           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmx dynlink_compilerlibs/debuginfo.ml
#20 80.61 ../../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 80.61           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmx dynlink_compilerlibs/docstrings.ml
#20 80.61 ../../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 80.61           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmx dynlink_compilerlibs/attr_helper.ml
#20 80.61 ../../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 80.61           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmx dynlink_compilerlibs/builtin_attributes.ml
#20 80.69 ../../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 80.69           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmx dynlink_compilerlibs/type_immediacy.ml
#20 80.69 ../../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 80.69           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmx dynlink_compilerlibs/ast_helper.ml
#20 80.71 ../../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 80.71           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmx dynlink_compilerlibs/outcometree.ml
#20 80.74 ../../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 80.74           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmx dynlink_compilerlibs/primitive.ml
#20 80.80 ../../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 80.80           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmx dynlink_compilerlibs/types.ml
#20 80.89 ../../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 80.89           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmx dynlink_compilerlibs/ast_mapper.ml
#20 80.92 ../../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 80.92           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmx dynlink_compilerlibs/btype.ml
#20 80.92 ../../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 80.92           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmx dynlink_compilerlibs/cmi_format.ml
#20 80.96 ../../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 80.96           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmx dynlink_compilerlibs/persistent_env.ml
#20 81.08 ../../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 81.08           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmx dynlink_compilerlibs/predef.ml
#20 81.08 ../../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 81.08           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmx dynlink_compilerlibs/datarepr.ml
#20 81.16 ../../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 81.16           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmx dynlink_compilerlibs/subst.ml
#20 81.31 ../../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 81.31           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmx dynlink_compilerlibs/env.ml
#20 81.86 ../../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 81.86           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmx dynlink_compilerlibs/lambda.ml
#20 82.01 ../../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 82.01           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmx dynlink_compilerlibs/instruct.ml
#20 82.01 ../../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 82.01           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmx dynlink_compilerlibs/cmo_format.ml
#20 82.04 ../../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 82.04           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmx dynlink_compilerlibs/meta.ml
#20 82.06 ../../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 82.06           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmx dynlink_compilerlibs/symtable.ml
#20 82.17 ../../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 82.39 ../../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 82.50 ../../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 82.54 ../../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 82.54             -o dynlink.cmxa native/dynlink_compilerlibs.cmx dynlink_types.cmx dynlink_platform_intf.cmx dynlink_common.cmx native/dynlink.cmx
#20 82.58 cp native/dynlink.cmx dynlink.cmx
#20 82.58 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 82.58 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 82.60 ../../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 82.72 ../../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 82.77 ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlopt '../../ocamlopt.opt -nostdlib -I ../../stdlib' -linkall \
#20 82.77          unix.cmx unixLabels.cmx 
#20 82.79 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o unix.cmxs -I . unix.cmxa
#20 82.88 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 82.88 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 82.89 ../../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 82.92 ../../ocamlopt.opt -nostdlib -I ../../stdlib -o bigarray.cmxa -a -linkall bigarray.cmx 
#20 82.93 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o bigarray.cmxs -I . bigarray.cmxa
#20 82.97 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 82.97 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 82.98 ../../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 83.10 ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlopt '../../ocamlopt.opt -nostdlib -I ../../stdlib' -linkall \
#20 83.10          str.cmx 
#20 83.12 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o str.cmxs -I . str.cmxa
#20 83.17 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 83.18 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 83.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 -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  \
#20 83.19   -o st_stubs.n.o st_stubs.c
#20 83.19 ../../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 83.19 ../../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 83.21 ../../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 83.22 ../../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 83.24 ../../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 83.24 ../../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 83.29 ../../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 83.53 ../../boot/ocamlrun ../../tools/ocamlmklib -o threadsnat st_stubs.n.o
#20 83.57 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 83.57 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 83.57 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 83.57 make -j ocamllex.opt ocamltoolsopt ocamltoolsopt.opt ocamldoc.opt \
#20 83.57    ocamlnat
#20 83.57 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 83.60 make -j -C lex allopt
#20 83.60 make -j -C tools opt
#20 83.60 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 83.60 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 83.60 ./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 83.60 make -j -C yacc  all
#20 83.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 toplevel/native/tophooks.mli
#20 83.61 cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/native
#20 83.61 cp toplevel/trace.cmi toplevel/trace.mli toplevel/native
#20 83.61 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 83.61 cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/native
#20 83.61 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 83.61 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 83.61 ../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 83.61 ../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 83.61 make[3]: Nothing to be done for 'all'.
#20 83.61 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 83.62 make -j -C lex all
#20 83.62 ../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 83.62 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 83.62 make[3]: Nothing to be done for 'all'.
#20 83.62 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 83.62 make -j -C ocamldoc opt.opt
#20 83.62 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 83.63 ../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 83.63 ../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 83.64 ../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 83.64 ../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 83.64 ../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 83.64 ../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 83.64 ../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 83.64 ../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 83.68 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 83.68 ../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 83.73 ../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 83.73 ../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 83.73 ../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 83.76 ../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 83.76 ../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 83.76 ../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 83.76 ../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 83.82 ../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 83.82 ../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 83.87 ../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 83.88 ../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 83.88 ../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 83.94 ../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 83.94 ../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 83.94 ../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 83.94 ../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 83.96 ../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 83.96 ../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 83.98 ../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 84.02 ../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 84.02 ../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 84.04 ../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 84.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 toplevel/topcommon.ml -I toplevel
#20 84.09 ../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 84.09 ../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 84.09 ../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 84.09 ../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 84.20 ../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 84.20 ../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 84.22 ../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 84.24 ../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 84.33 ../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 84.34 ../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 84.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 toplevel/native/tophooks.ml -I toplevel/native
#20 84.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 toplevel/native/topeval.ml -I toplevel/native
#20 84.44 ../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 84.55 ../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 84.65 ../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 84.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 -I toplevel/native -c toplevel/toploop.ml
#20 84.75 ../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 84.83 ../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 84.89 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 84.89 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 84.94 ../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 85.02 ../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 85.02 ../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 85.02 ../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 85.02 ../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 85.02 ../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 85.02 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 85.04 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 85.04 make -j -C tools opt.opt
#20 85.05 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 85.06 ../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 85.07 ../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 85.07 ../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 85.07 ../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 85.07 ../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 85.07 ../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 85.07 ../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 85.07 ../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 85.08 ../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 85.08 ../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 85.08 ../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 85.08 ../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 85.08 ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib \
#20 85.08   -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 85.11 ../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 85.13 ../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 85.14 ../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 85.15 ../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 85.17 ../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 85.18 ../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 85.18 ../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 85.20 ../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 85.20 ../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 85.20 ../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 85.29 ../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 85.32 ../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 85.33 ./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 85.36 ./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 85.39 ../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 85.41 ../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 85.44 ../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 85.48 ../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 86.23 ../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 86.28 ../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 86.34 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 86.48 ../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 86.48 ../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 86.48 ../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 86.52 ../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 87.37 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 87.37 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 87.37 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 87.39 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 87.39 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.39 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"
#20 87.40 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 87.40 mkdir -p "/tmp/opam/bootstrap/ocaml/share/doc/ocaml"
#20 87.40 make -j -C runtime install
#20 87.40 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 87.47 /usr/bin/install -c -p ocamlrun ocamlrund ocamlruni "/tmp/opam/bootstrap/ocaml/bin"
#20 87.47 /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 87.49 /usr/bin/install -c -p libcamlrun_shared.so "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.50 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 87.50 /usr/bin/install -c -p -m 644 caml/domain_state.tbl caml/*.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 87.51 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 87.51 /usr/bin/install -c -p ocaml "/tmp/opam/bootstrap/ocaml/bin"
#20 87.54 /usr/bin/install -c -p ocamlc "/tmp/opam/bootstrap/ocaml/bin/ocamlc.byte"
#20 87.56 make -j -C stdlib install
#20 87.56 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 87.57 stale=""; \
#20 87.57   if test -n "$stale" ; then \
#20 87.57     echo "/tmp/opam/bootstrap/ocaml/lib/ocaml contains stale stdlib artefacts"; \
#20 87.57     echo "Please rm /tmp/opam/bootstrap/ocaml/lib/ocaml/stdlib__*.cm* and re-run make install"; \
#20 87.57     exit 1; \
#20 87.57   fi
#20 87.57 /usr/bin/install -c -p -m 644 \
#20 87.57   stdlib.cma std_exit.cmo *.cmi camlheader_ur \
#20 87.57   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.58 /usr/bin/install -c -p -m 644 \
#20 87.58   *.cmt *.cmti *.mli *.ml \
#20 87.58   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.61 /usr/bin/install -c -p -m 644 target_camlheader "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheader"
#20 87.62 /usr/bin/install -c -p -m 644 target_camlheaderd "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheaderd"
#20 87.62 /usr/bin/install -c -p -m 644 target_camlheaderi "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheaderi"
#20 87.62 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 87.62 /usr/bin/install -c -p lex/ocamllex \
#20 87.62   "/tmp/opam/bootstrap/ocaml/bin/ocamllex.byte"
#20 87.62 /usr/bin/install -c -p yacc/ocamlyacc "/tmp/opam/bootstrap/ocaml/bin"
#20 87.63 /usr/bin/install -c -p -m 644 \
#20 87.63    utils/*.cmi \
#20 87.63    parsing/*.cmi \
#20 87.63    typing/*.cmi \
#20 87.63    bytecomp/*.cmi \
#20 87.63    file_formats/*.cmi \
#20 87.63    lambda/*.cmi \
#20 87.63    driver/*.cmi \
#20 87.63    toplevel/*.cmi \
#20 87.63    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 87.65 /usr/bin/install -c -p -m 644 \
#20 87.65    toplevel/byte/*.cmi \
#20 87.65    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 87.65 /usr/bin/install -c -p -m 644 \
#20 87.65    utils/*.cmt utils/*.cmti utils/*.mli \
#20 87.65    parsing/*.cmt parsing/*.cmti parsing/*.mli \
#20 87.65    typing/*.cmt typing/*.cmti typing/*.mli \
#20 87.65    file_formats/*.cmt file_formats/*.cmti file_formats/*.mli \
#20 87.65    lambda/*.cmt lambda/*.cmti lambda/*.mli \
#20 87.65    bytecomp/*.cmt bytecomp/*.cmti bytecomp/*.mli \
#20 87.65    driver/*.cmt driver/*.cmti driver/*.mli \
#20 87.65    toplevel/*.cmt toplevel/*.cmti toplevel/*.mli \
#20 87.65    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 87.72 /usr/bin/install -c -p -m 644 \
#20 87.72    toplevel/byte/*.cmt \
#20 87.72    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 87.73 /usr/bin/install -c -p -m 644 \
#20 87.73   compilerlibs/*.cma \
#20 87.73   "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 87.76 /usr/bin/install -c -p -m 644 \
#20 87.76    driver/main.cmo toplevel/topstart.cmo \
#20 87.76    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 87.76 /usr/bin/install -c -p expunge "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.79 /usr/bin/install -c -p -m 644 \
#20 87.79    toplevel/topdirs.cmi \
#20 87.79    "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.79 /usr/bin/install -c -p -m 644 \
#20 87.79    toplevel/topdirs.cmt \
#20 87.79    toplevel/topdirs.cmti toplevel/topdirs.mli \
#20 87.79    "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.80 make -j -C tools install
#20 87.80 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 87.81 /usr/bin/install -c -p -m 644 \
#20 87.81   profiling.cmi profiling.cmo \
#20 87.81   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.81 /usr/bin/install -c -p -m 644 \
#20 87.81   profiling.cmt profiling.cmti \
#20 87.81   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 87.82 for i in ocamldep ocamlprof ocamlcp ocamloptp ocamlmklib ocamlmktop ocamlobjinfo; \
#20 87.82 do \
#20 87.82   /usr/bin/install -c -p "$i" "/tmp/opam/bootstrap/ocaml/bin/$i.byte"; \
#20 87.82   if test -f "$i".opt; then \
#20 87.82     /usr/bin/install -c -p "$i.opt" "/tmp/opam/bootstrap/ocaml/bin" && \
#20 87.82     (cd "/tmp/opam/bootstrap/ocaml/bin" && ln -sf "$i.opt" "$i"); \
#20 87.82   else \
#20 87.82     (cd "/tmp/opam/bootstrap/ocaml/bin" && ln -sf "$i.byte" "$i"); \
#20 87.82   fi; \
#20 87.82 done
#20 88.03 if test -f ocamlcmt.opt; then \
#20 88.03   /usr/bin/install -c -p\
#20 88.03     ocamlcmt.opt "/tmp/opam/bootstrap/ocaml/bin/ocamlcmt"; \
#20 88.03 else \
#20 88.03   /usr/bin/install -c -p ocamlcmt "/tmp/opam/bootstrap/ocaml/bin"; \
#20 88.03 fi
#20 88.07 /usr/bin/install -c -p -m 644 \
#20 88.07   eventlog_metadata \
#20 88.07   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.07 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 88.07 make -j -C man install
#20 88.08 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/man'
#20 88.08 mkdir -p /tmp/opam/bootstrap/ocaml/man/man1
#20 88.08 /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 88.09 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/man'
#20 88.09 for i in dynlink unix bigarray str systhreads; do \
#20 88.09   make -j -C otherlibs/$i install || exit $?; \
#20 88.09 done
#20 88.09 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 88.11 /usr/bin/install -c -p -m 644 \
#20 88.11   dynlink.cmi dynlink.cma \
#20 88.11   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.12 /usr/bin/install -c -p -m 644 \
#20 88.12   dynlink.cmti dynlink.mli \
#20 88.12   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.12 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 88.12 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 88.13 if test -f dllunix.so; then \
#20 88.13   /usr/bin/install -c -p \
#20 88.13     dllunix.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 88.13 fi
#20 88.13 /usr/bin/install -c -p -m 644 libunix.a "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.14 /usr/bin/install -c -p -m 644 \
#20 88.14   unix.cma unix.cmi unixLabels.cmi \
#20 88.14   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.14 /usr/bin/install -c -p -m 644 \
#20 88.14   unix.mli unixLabels.mli \
#20 88.14           unix.cmti unixLabels.cmti \
#20 88.14   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.15 if test -n "unixsupport.h socketaddr.h"; then \
#20 88.15   /usr/bin/install -c -p -m 644 unixsupport.h socketaddr.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 88.15 fi
#20 88.15 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 88.15 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 88.16 if test -f dllbigarray.so; then \
#20 88.16   /usr/bin/install -c -p \
#20 88.16     dllbigarray.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 88.16 fi
#20 88.16 /usr/bin/install -c -p -m 644 \
#20 88.16   bigarray.cma bigarray.cmi \
#20 88.16   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.17 /usr/bin/install -c -p -m 644 \
#20 88.17   bigarray.mli \
#20 88.17           bigarray.cmti \
#20 88.17   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.17 if test -n ""; then \
#20 88.17   /usr/bin/install -c -p -m 644  "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 88.17 fi
#20 88.17 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 88.17 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 88.18 if test -f dllcamlstr.so; then \
#20 88.18   /usr/bin/install -c -p \
#20 88.18     dllcamlstr.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 88.18 fi
#20 88.18 /usr/bin/install -c -p -m 644 libcamlstr.a "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.19 /usr/bin/install -c -p -m 644 \
#20 88.19   str.cma str.cmi \
#20 88.19   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.19 /usr/bin/install -c -p -m 644 \
#20 88.19   str.mli \
#20 88.19           str.cmti \
#20 88.19   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.19 if test -n ""; then \
#20 88.19   /usr/bin/install -c -p -m 644  "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 88.19 fi
#20 88.19 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 88.20 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 88.20 if test -f dllthreads.so; then \
#20 88.20   /usr/bin/install -c -p dllthreads.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 88.20 fi
#20 88.21 /usr/bin/install -c -p -m 644 libthreads.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.21 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 88.21 /usr/bin/install -c -p -m 644 \
#20 88.21   thread.cmi mutex.cmi condition.cmi event.cmi threadUnix.cmi semaphore.cmi threads.cma \
#20 88.21   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 88.21 /usr/bin/install -c -p -m 644 \
#20 88.21   thread.cmti mutex.cmti condition.cmti event.cmti threadUnix.cmti semaphore.cmti \
#20 88.21   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 88.22 /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 88.22 /usr/bin/install -c -p -m 644 threads.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 88.22 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 88.22 make -j -C ocamldoc install
#20 88.23 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 88.24 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 88.24 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.24 /usr/bin/install -c -p ../ocamldoc/ocamldoc "/tmp/opam/bootstrap/ocaml/bin"
#20 88.25 /usr/bin/install -c -p -m 644 \
#20 88.25   ocamldoc.hva *.cmi odoc_info.cma \
#20 88.25   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.26 /usr/bin/install -c -p -m 644 \
#20 88.26   odoc_info.cmi \
#20 88.26   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.26 /usr/bin/install -c -p -m 644 \
#20 88.26   odoc_info.mli odoc_info.cmt odoc_info.cmti \
#20 88.26   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.26 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 88.26 if test -n "ocamldebugger"; then \
#20 88.26   make -j -C debugger install; \
#20 88.26 fi
#20 88.27 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 88.28 /usr/bin/install -c -p ocamldebug "/tmp/opam/bootstrap/ocaml/bin"
#20 88.31 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 88.31 /usr/bin/install -c -p -m 644 Makefile.config "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.31 /usr/bin/install -c -p -m 644 Changes README.adoc README.win32.adoc LICENSE "/tmp/opam/bootstrap/ocaml/share/doc/ocaml"
#20 88.31 if test -f ocamlopt; then make -j installopt; else \
#20 88.31    cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 88.31    ln -sf ocamlc.byte ocamlc; \
#20 88.31    ln -sf ocamllex.byte ocamllex; \
#20 88.31    (test -f flexlink.byte && \
#20 88.31       ln -sf flexlink.byte flexlink) || true; \
#20 88.31 fi
#20 88.32 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 88.33 make -j -C runtime installopt
#20 88.34 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 88.40 /usr/bin/install -c -p -m 644 libasmrun.a libasmrund.a libasmruni.a libasmrun_pic.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.42 /usr/bin/install -c -p libasmrun_shared.so "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.42 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 88.43 /usr/bin/install -c -p ocamlopt "/tmp/opam/bootstrap/ocaml/bin/ocamlopt.byte"
#20 88.46 make -j -C stdlib installopt
#20 88.46 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 88.47 stale=""; \
#20 88.47   if test -n "$stale" ; then \
#20 88.47     echo "/tmp/opam/bootstrap/ocaml/lib/ocaml contains stale stdlib artefacts"; \
#20 88.47     echo "Please rm /tmp/opam/bootstrap/ocaml/lib/ocaml/stdlib__*.cmx and re-run make install"; \
#20 88.47     exit 1; \
#20 88.47   fi
#20 88.47 /usr/bin/install -c -p -m 644 \
#20 88.47   stdlib.cmxa stdlib.a std_exit.o *.cmx \
#20 88.47   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.48 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 88.48 /usr/bin/install -c -p -m 644 \
#20 88.48     middle_end/*.cmi \
#20 88.48     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.49 /usr/bin/install -c -p -m 644 \
#20 88.49     middle_end/closure/*.cmi \
#20 88.49     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.49 /usr/bin/install -c -p -m 644 \
#20 88.49     middle_end/flambda/*.cmi \
#20 88.49     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.50 /usr/bin/install -c -p -m 644 \
#20 88.50     middle_end/flambda/base_types/*.cmi \
#20 88.50     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.51 /usr/bin/install -c -p -m 644 \
#20 88.51     asmcomp/*.cmi \
#20 88.51     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.52 /usr/bin/install -c -p -m 644 \
#20 88.52     middle_end/*.cmt middle_end/*.cmti \
#20 88.52     middle_end/*.mli \
#20 88.52     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.53 /usr/bin/install -c -p -m 644 \
#20 88.53     middle_end/closure/*.cmt middle_end/closure/*.cmti \
#20 88.53     middle_end/closure/*.mli \
#20 88.53     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.53 /usr/bin/install -c -p -m 644 \
#20 88.53     middle_end/flambda/*.cmt middle_end/flambda/*.cmti \
#20 88.53     middle_end/flambda/*.mli \
#20 88.53     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.56 /usr/bin/install -c -p -m 644 \
#20 88.56     middle_end/flambda/base_types/*.cmt \
#20 88.56             middle_end/flambda/base_types/*.cmti \
#20 88.56     middle_end/flambda/base_types/*.mli \
#20 88.56     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.56 /usr/bin/install -c -p -m 644 \
#20 88.56     asmcomp/*.cmt asmcomp/*.cmti \
#20 88.56     asmcomp/*.mli \
#20 88.56     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.59 /usr/bin/install -c -p -m 644 \
#20 88.59     driver/optmain.cmo \
#20 88.59     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.59 make -j -C ocamldoc installopt
#20 88.60 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 88.60 if test -f ../ocamldoc/ocamldoc.opt; then make -j installopt_really ; fi
#20 88.61 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 88.62 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 88.62 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.62 /usr/bin/install -c -p ../ocamldoc/ocamldoc.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 88.66 /usr/bin/install -c -p -m 644 \
#20 88.66   odoc_info.cmi \
#20 88.66   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.67 /usr/bin/install -c -p -m 644 \
#20 88.67   odoc_info.mli odoc_info.cmt odoc_info.cmti \
#20 88.67   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.67 /usr/bin/install -c -p -m 644 \
#20 88.67   ocamldoc.hva *.cmx odoc_info.a odoc_info.cmxa \
#20 88.67   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 88.68 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 88.68 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 88.68 for i in dynlink unix bigarray str systhreads; do \
#20 88.68   make -j -C otherlibs/$i installopt || exit $?; \
#20 88.68 done
#20 88.68 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 88.70 /usr/bin/install -c -p -m 644 \
#20 88.70   native/dynlink_compilerlibs.cmx dynlink_types.cmx dynlink_platform_intf.cmx dynlink_common.cmx native/dynlink.cmx dynlink.cmxa dynlink.a \
#20 88.70   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.71 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 88.71 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 88.72 /usr/bin/install -c -p -m 644 \
#20 88.72    unix.cmx unixLabels.cmx unix.cmxa unix.a \
#20 88.72    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.72 if test -f unix.cmxs; then \
#20 88.72   /usr/bin/install -c -p unix.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 88.72 fi
#20 88.73 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 88.73 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 88.74 /usr/bin/install -c -p -m 644 \
#20 88.74    bigarray.cmx bigarray.cmxa bigarray.a \
#20 88.74    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.74 if test -f bigarray.cmxs; then \
#20 88.74   /usr/bin/install -c -p bigarray.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 88.74 fi
#20 88.75 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 88.75 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 88.76 /usr/bin/install -c -p -m 644 \
#20 88.76    str.cmx str.cmxa str.a \
#20 88.76    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 88.76 if test -f str.cmxs; then \
#20 88.76   /usr/bin/install -c -p str.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 88.76 fi
#20 88.76 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 88.76 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 88.77 /usr/bin/install -c -p -m 644 libthreadsnat.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.78 /usr/bin/install -c -p -m 644 \
#20 88.78   thread.cmx mutex.cmx condition.cmx event.cmx threadUnix.cmx semaphore.cmx threads.cmxa threads.a \
#20 88.78   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 88.78 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 88.78 if test -f ocamlopt.opt; then make -j installoptopt; else \
#20 88.78    cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 88.78    ln -sf ocamlc.byte ocamlc; \
#20 88.78    ln -sf ocamlopt.byte ocamlopt; \
#20 88.78    ln -sf ocamllex.byte ocamllex; \
#20 88.78    (test -f flexlink.byte && \
#20 88.78      ln -sf flexlink.byte flexlink) || true; \
#20 88.78 fi
#20 88.78 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 88.80 /usr/bin/install -c -p ocamlc.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 88.84 /usr/bin/install -c -p ocamlopt.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 88.88 /usr/bin/install -c -p lex/ocamllex.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 88.89 cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 88.89    ln -sf ocamlc.opt ocamlc; \
#20 88.89    ln -sf ocamlopt.opt ocamlopt; \
#20 88.89    ln -sf ocamllex.opt ocamllex
#20 88.89 /usr/bin/install -c -p -m 644 \
#20 88.89    utils/*.cmx parsing/*.cmx typing/*.cmx bytecomp/*.cmx \
#20 88.89    toplevel/*.cmx toplevel/native/*.cmx \
#20 88.89    toplevel/native/tophooks.cmi \
#20 88.89    file_formats/*.cmx \
#20 88.89    lambda/*.cmx \
#20 88.89    driver/*.cmx asmcomp/*.cmx middle_end/*.cmx \
#20 88.89            middle_end/closure/*.cmx \
#20 88.89            middle_end/flambda/*.cmx \
#20 88.89            middle_end/flambda/base_types/*.cmx \
#20 88.89           "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.92 /usr/bin/install -c -p -m 644 \
#20 88.92    compilerlibs/*.cmxa compilerlibs/*.a \
#20 88.92    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.95 /usr/bin/install -c -p -m 644 \
#20 88.95    driver/main.cmx driver/main.o \
#20 88.95    driver/optmain.cmx driver/optmain.o \
#20 88.95    toplevel/topstart.o \
#20 88.95    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 88.95 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 88.96 make -j -C tools installopt
#20 88.96 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 88.97 /usr/bin/install -c -p -m 644 \
#20 88.97           profiling.cmx profiling.o \
#20 88.97   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 88.97 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 88.97 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 88.98 make: Entering directory '/tmp/opam/src_ext'
#20 89.02  * Downloading cppo...
#20 89.60 cppo.tar.gz has the expected MD5.
#20 89.61  * Downloading base64...
#20 89.94 base64.tbz has the expected MD5.
#20 89.95  * Downloading extlib...
#20 90.49 extlib.tar.gz has the expected MD5.
#20 90.50  * Downloading re...
#20 90.83 re.tbz has the expected MD5.
#20 90.84  * Downloading cmdliner...
#20 91.04 cmdliner.tbz has the expected MD5.
#20 91.05  * Downloading ocamlgraph...
#20 91.35 ocamlgraph.tbz has the expected MD5.
#20 91.35  * Downloading cudf...
#20 91.76 cudf.tar.gz has the expected MD5.
#20 91.77  * Downloading dose3...
#20 92.27 dose3.tar.gz has the expected MD5.
#20 92.27  * Downloading opam-file-format...
#20 92.88 opam-file-format.tar.gz has the expected MD5.
#20 92.89  * Downloading seq...
#20 93.53 seq.tar.gz has the expected MD5.
#20 93.54  * Downloading stdlib-shims...
#20 93.87 stdlib-shims.tbz has the expected MD5.
#20 93.88  * Downloading spdx_licenses...
#20 94.38 spdx_licenses.tar.gz has the expected MD5.
#20 94.39  * Downloading opam-0install-cudf...
#20 94.91 opam-0install-cudf.tbz has the expected MD5.
#20 94.92  * Downloading 0install-solver...
#20 95.50 0install-solver.tbz has the expected MD5.
#20 95.50  * Downloading uutf...
#20 95.63 uutf.tbz has the expected MD5.
#20 95.64  * Downloading jsonm...
#20 95.75 jsonm.tbz has the expected MD5.
#20 95.76  * Downloading sha...
#20 96.26 sha.tbz has the expected MD5.
#20 96.27  * Downloading swhid_core...
#20 96.99 swhid_core.tar.gz has the expected MD5.
#20 97.08  * Downloading dune-local...
#20 97.67 dune-local.tbz has the expected MD5.
#20 97.68  * Downloading findlib...
#20 98.14 findlib.tar.gz has the expected MD5.
#20 98.15  * Downloading ocamlbuild...
#20 98.60 ocamlbuild.tar.gz has the expected MD5.
#20 98.60  * Downloading topkg...
#20 98.75 topkg.tbz has the expected MD5.
#20 98.76  * Downloading mccs...
#20 99.51 mccs.tar.gz has the expected MD5.
#20 99.51  * Downloading ocaml...
#20 99.86 ocaml.tar.gz has the expected MD5.
#20 99.87  * Downloading flexdll...
#20 100.5 flexdll.tar.gz has the expected MD5.
#20 100.5 make: Leaving directory '/tmp/opam/src_ext'
#20 DONE 101.1s

#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:9307b69236617c7ee9b59f182d09564275d408da7099b3965c364f6874683a7a
#21 0.474 Note: switching to '7d4a0f2e0fefe748efbd7358775b1a0bd8267544'.
#21 0.474 
#21 0.474 You are in 'detached HEAD' state. You can look around, make experimental
#21 0.474 changes and commit them, and you can discard any commits you make in this
#21 0.474 state without impacting any branches by switching back to a branch.
#21 0.474 
#21 0.474 If you want to create a new branch to retain commits you create, you may
#21 0.474 do so (now or later) by using -c with the switch command. Example:
#21 0.474 
#21 0.474   git switch -c <new-branch-name>
#21 0.474 
#21 0.474 Or undo this operation with:
#21 0.474 
#21 0.474   git switch -
#21 0.474 
#21 0.474 Turn off this advice by setting config variable advice.detachedHead to false
#21 0.474 
#21 0.474 HEAD is now at 7d4a0f2e Merge pull request #4874 from rjbou/2010
#21 0.604 checking for ocamlc... ocamlc
#21 0.613 OCaml version is 4.14.1
#21 0.621 OCaml library path is /tmp/opam/bootstrap/ocaml/lib/ocaml
#21 0.621 checking for ocamlopt... ocamlopt
#21 0.641 checking for ocamlc.opt... ocamlc.opt
#21 0.649 checking for ocamlopt.opt... ocamlopt.opt
#21 0.662 checking for ocaml... ocaml
#21 0.662 checking for ocamldep... ocamldep
#21 0.663 checking for ocamldep.opt... ocamldep.opt
#21 0.679 checking for ocamlmktop... ocamlmktop
#21 0.679 checking for ocamlmklib... ocamlmklib
#21 0.680 checking for ocamldoc... ocamldoc
#21 0.680 checking for ocamldoc.opt... ocamldoc.opt
#21 0.698 checking for ocamlbuild... no
#21 0.699 checking OCaml Sys.os_type... Unix
#21 0.730 checking for gawk... no
#21 0.731 checking for mawk... mawk
#21 0.742 checking for compiler type... cc
#21 1.012 checking for compiler architecture... arm64
#21 1.279 checking for compiler system... linux
#21 1.544 checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
#21 1.578 checking whether the C compiler works... yes
#21 1.630 checking for C compiler default output file name... a.out
#21 1.631 checking for suffix of executables... 
#21 1.685 checking whether we are cross compiling... no
#21 1.750 checking for suffix of object files... o
#21 1.781 checking whether we are using the GNU C compiler... yes
#21 1.805 checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
#21 1.837 checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to accept ISO C89... none needed
#21 1.887 checking for ocamlobjinfo... ocamlobjinfo
#21 1.888 checking for ocamlfind... no
#21 1.889 checking for curl... curl
#21 1.889 checking for dune... no
#21 1.890 checking for cppo... no
#21 1.891 checking for patch... patch
#21 1.892 checking for bunzip2... bunzip2
#21 1.892 
#21 1.892 checking for OCaml findlib package unix... not found
#21 1.894 checking for OCaml findlib package bigarray... not found
#21 1.895 checking for OCaml findlib package extlib... not found
#21 1.896 checking for OCaml findlib package re... not found
#21 1.897 checking for OCaml findlib package re.glob... not found
#21 1.898 checking for OCaml findlib package cmdliner... not found
#21 1.898 checking for OCaml findlib package ocamlgraph... not found
#21 1.900 checking for OCaml findlib package cudf... not found
#21 1.900 checking for OCaml findlib package dose3.common... not found
#21 1.902 checking for OCaml findlib package dose3.algo... not found
#21 1.905 checking for OCaml findlib package opam-file-format... not found
#21 1.906 checking for OCaml findlib package mccs... not found
#21 1.907 checking for g++... g++
#21 1.939 checking whether we are using the GNU C++ compiler... yes
#21 1.984 checking whether g++ accepts -g... yes
#21 2.017 
#21 2.017 ============================================================================
#21 2.017 Some dependencies are missing. If you are just interested in the stand-alone
#21 2.017 'opam' binary, run 'make lib-ext' to download and include them.
#21 2.017 ============================================================================
#21 2.017 
#21 2.046 configure: creating ./config.status
#21 2.154 config.status: creating Makefile.config
#21 2.171 config.status: creating src/client/opamManifest.inc
#21 2.195 
#21 2.199 Opam will be built WITH a built-in solver
#21 2.199 
#21 2.199 Executables will be installed in /usr/local/bin
#21 2.199 Manual pages will be installed in /usr/local/share/man
#21 2.237 make -j -C src_ext lib-ext
#21 2.239 make[1]: Entering directory '/tmp/opam-build-2.0/src_ext'
#21 2.280 [ -e dune-local.tbz ] || \
#21 2.280 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 2.283 [ -e cppo.tbz ] || \
#21 2.283 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 2.286 [ -e extlib.tar.gz ] || \
#21 2.286 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 2.289 [ -e re.tbz ] || \
#21 2.289 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 2.292 [ -e cmdliner.tbz ] || \
#21 2.292 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 2.295 [ -e ocamlgraph.tar.gz ] || \
#21 2.295 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 2.295 [ -e cudf.tar.gz ] || \
#21 2.295 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 2.301 [ -e dose3.tar.gz ] || \
#21 2.301 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 2.304 [ -e opam-file-format.tar.gz ] || \
#21 2.304 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 2.308 [ -e result.tar.gz ] || \
#21 2.308 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 2.309 [ -e seq.tar.gz ] || \
#21 2.309 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 2.312 [ -e mccs.tar.gz ] || \
#21 2.312 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 2.489 cmdliner.tbz has the expected MD5.
#21 2.490 mkdir -p tmp-cmdliner
#21 2.491 cd tmp-cmdliner && bunzip2 -c ../cmdliner.tbz | tar xf -
#21 2.506 rm -rf cmdliner
#21 2.516 ocamlgraph.tar.gz has the expected MD5.
#21 2.517 mkdir -p tmp-ocamlgraph
#21 2.518 cd tmp-ocamlgraph && gunzip -c ../ocamlgraph.tar.gz | tar xf -
#21 2.542 rm -rf ocamlgraph
#21 2.548 patching file src/imperative.ml
#21 2.549 patching file src/persistent.ml
#21 2.701 dose3.tar.gz has the expected MD5.
#21 2.702 mkdir -p tmp-dose3
#21 2.704 cd tmp-dose3 && gunzip -c ../dose3.tar.gz | tar xf -
#21 2.726 rm -rf dose3
#21 2.732 patching file common/criteria_lexer.mll
#21 2.733 patching file common/input.ml
#21 2.843 cudf.tar.gz has the expected MD5.
#21 2.844 mkdir -p tmp-cudf
#21 2.845 cd tmp-cudf && gunzip -c ../cudf.tar.gz | tar xf -
#21 2.849 re.tbz has the expected MD5.
#21 2.850 mkdir -p tmp-re
#21 2.852 cd tmp-re && bunzip2 -c ../re.tbz | tar xf -
#21 2.857 rm -rf cudf
#21 2.857 cppo.tbz has the expected MD5.
#21 2.858 mkdir -p tmp-cppo
#21 2.860 cd tmp-cppo && bunzip2 -c ../cppo.tbz | tar xf -
#21 2.870 rm -rf cppo
#21 2.876 patching file src/compat.ml
#21 2.876 patching file src/dune
#21 2.877 patching file Changes
#21 2.877 patching file src/cppo_main.ml
#21 2.877 rm -rf re
#21 2.898 result.tar.gz has the expected MD5.
#21 2.899 mkdir -p tmp-result
#21 2.900 cd tmp-result && gunzip -c ../result.tar.gz | tar xf -
#21 2.905 rm -rf result
#21 2.921 seq.tar.gz has the expected MD5.
#21 2.922 mkdir -p tmp-seq
#21 2.923 cd tmp-seq && gunzip -c ../seq.tar.gz | tar xf -
#21 2.928 rm -rf seq
#21 2.935 patching file .gitignore
#21 2.935 patching file Makefile
#21 2.935 patching file select_version.ml
#21 2.935 patching file seq.opam
#21 2.936 patching file src/seq.ml
#21 2.936 patching file src/seq.mli
#21 2.936 patching file src/seq_alias.ml
#21 2.936 patching file src/seq_alias.mli
#21 2.936 patching file src/seq_redef.ml
#21 2.936 patching file src/seq_redef.mli
#21 2.938 opam-file-format.tar.gz has the expected MD5.
#21 2.939 mkdir -p tmp-opam-file-format
#21 2.941 cd tmp-opam-file-format && gunzip -c ../opam-file-format.tar.gz | tar xf -
#21 2.947 rm -f seq/src/seq.ml seq/src/seq.mli
#21 2.948 rm -rf opam-file-format
#21 2.972 dune-local.tbz has the expected MD5.
#21 2.973 mkdir -p tmp-dune-local
#21 2.974 cd tmp-dune-local && bunzip2 -c ../dune-local.tbz | tar xf -
#21 3.097 mccs.tar.gz has the expected MD5.
#21 3.098 mkdir -p tmp-mccs
#21 3.100 cd tmp-mccs && gunzip -c ../mccs.tar.gz | tar xf -
#21 3.117 rm -rf dune-local
#21 3.137 rm -rf mccs
#21 6.337 extlib.tar.gz has the expected MD5.
#21 6.338 mkdir -p tmp-extlib
#21 6.340 cd tmp-extlib && gunzip -c ../extlib.tar.gz | tar xf -
#21 6.351 rm -rf extlib
#21 6.357 patching file src/extList.ml
#21 6.358 patching file src/extHashtbl.ml
#21 6.361 patching file src/configure.ml
#21 6.373 rm dune-local.download
#21 6.373 make[1]: Leaving directory '/tmp/opam-build-2.0/src_ext'
#21 6.373 cd src_ext/dune-local && ocaml bootstrap.ml && ./boot.exe --release
#21 6.473 File "./bootstrap.ml", line 186, characters 29-41:
#21 6.473 186 |              let base, ext = String.break base i in
#21 6.473                                    ^^^^^^^^^^^^
#21 6.473 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 6.474 File "./bootstrap.ml", line 191, characters 28-40:
#21 6.474 191 |                  let a, b = String.break ext i in
#21 6.474                                   ^^^^^^^^^^^^
#21 6.474 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 6.487 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/meta_lexer.mll
#21 6.492 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/dune_lexer.mll
#21 6.500 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/dune_lang/dune_lexer.mll
#21 6.530 '/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 6.647 '/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 6.657 '/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 6.678 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/fiber/fiber.ml > boot-depends.txt
#21 6.686 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/ocaml-config/ocaml_config.ml > boot-depends.txt
#21 6.700 '/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 6.729 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/which_program/which_program.boot.ml > boot-depends.txt
#21 6.738 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/xdg/xdg.ml > boot-depends.txt
#21 6.756 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/let-syntax/lexer.mll
#21 7.107 '/tmp/opam/bootstrap/ocaml/bin/ocamlc.opt' -g -w -40 -o boot.exe unix.cma threads.cma -I +threads boot.ml
#21 7.340 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 7.340 Alert deprecated: module Stdlib.Pervasives
#21 7.340 Use Stdlib instead.
#21 7.340 
#21 7.340 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.340 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 7.341 File "src/stdune/caml/result.mli", line 6, characters 7-17:
#21 7.341 Alert deprecated: module Stdlib.Pervasives
#21 7.341 Use Stdlib instead.
#21 7.341 
#21 7.341 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.341 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 7.346 File "src/stdune/list.ml", line 129, characters 23-38:
#21 7.346 Alert deprecated: module Stdlib.Pervasives
#21 7.346 Use Stdlib instead.
#21 7.346 
#21 7.346 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.346 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 7.440 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 7.440 Alert deprecated: Stdlib.Format.pp_open_tag
#21 7.440 Use Format.pp_open_stag.
#21 7.440 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 7.440 Alert deprecated: Stdlib.Format.pp_close_tag
#21 7.440 Use Format.pp_close_stag.
#21 7.441 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 7.441 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 7.441 Use Format.pp_get_formatter_stag_functions.
#21 7.441 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 7.441 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 7.441 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 7.489 File "src/stdune/io.ml", line 1, characters 11-21:
#21 7.489 Alert deprecated: module Stdlib.Pervasives
#21 7.489 Use Stdlib instead.
#21 7.489 
#21 7.489 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.489 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 7.561 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 7.561 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 7.561 Use Format.pp_get_formatter_stag_functions.
#21 7.561 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 7.561 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 7.561 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 7.728 File "src/colors.ml", line 105, characters 18-48:
#21 7.728 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 7.728 Use Format.pp_get_formatter_stag_functions.
#21 7.728 File "src/colors.ml", line 107, characters 6-36:
#21 7.728 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 7.728 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 8.313 File "src/super_context.ml", line 251, characters 7-11:
#21 8.313 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 10.55       ocamlc src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmi,cmti}
#21 10.55 File "src/stdune/caml/result.mli", line 6, characters 7-17:
#21 10.55 6 |   open Pervasives
#21 10.55            ^^^^^^^^^^
#21 10.55 Alert deprecated: module Stdlib.Pervasives
#21 10.55 Use Stdlib instead.
#21 10.55 
#21 10.55 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 10.55 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 10.60       ocamlc src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmo,cmt}
#21 10.60 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 10.60 4 |   open Pervasives
#21 10.60            ^^^^^^^^^^
#21 10.60 Alert deprecated: module Stdlib.Pervasives
#21 10.60 Use Stdlib instead.
#21 10.60 
#21 10.60 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 10.60 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 10.62     ocamlopt src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmx,o}
#21 10.62 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 10.62 4 |   open Pervasives
#21 10.62            ^^^^^^^^^^
#21 10.62 Alert deprecated: module Stdlib.Pervasives
#21 10.62 Use Stdlib instead.
#21 10.62 
#21 10.62 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 10.62 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 10.80       ocamlc src/stdune/.stdune.objs/stdune__List.{cmo,cmt}
#21 10.80 File "src/stdune/list.ml", line 129, characters 23-38:
#21 10.80 129 | let physically_equal = Pervasives.(==)
#21 10.80                              ^^^^^^^^^^^^^^^
#21 10.80 Alert deprecated: module Stdlib.Pervasives
#21 10.80 Use Stdlib instead.
#21 10.80 
#21 10.80 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 10.80 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 10.82     ocamlopt src/stdune/.stdune.objs/stdune__List.{cmx,o}
#21 10.82 File "src/stdune/list.ml", line 129, characters 23-38:
#21 10.82 129 | let physically_equal = Pervasives.(==)
#21 10.82                              ^^^^^^^^^^^^^^^
#21 10.82 Alert deprecated: module Stdlib.Pervasives
#21 10.82 Use Stdlib instead.
#21 10.82 
#21 10.82 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 10.82 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 10.96       ocamlc src/stdune/.stdune.objs/stdune__Pp.{cmo,cmt}
#21 10.96 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 10.96 114 |         pp_open_tag ppf (embed_tag ~opening ~closing);
#21 10.96               ^^^^^^^^^^^
#21 10.96 Alert deprecated: Stdlib.Format.pp_open_tag
#21 10.96 Use Format.pp_open_stag.
#21 10.96 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 10.96 116 |         pp_close_tag ppf ()
#21 10.96               ^^^^^^^^^^^^
#21 10.96 Alert deprecated: Stdlib.Format.pp_close_tag
#21 10.96 Use Format.pp_close_stag.
#21 10.96 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 10.96 119 |       let funcs = pp_get_formatter_tag_functions ppf () in
#21 10.96                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 10.96 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 10.96 Use Format.pp_get_formatter_stag_functions.
#21 10.96 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 10.96 121 |       pp_set_formatter_tag_functions ppf
#21 10.96             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 10.96 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 10.96 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 12.12       ocamlc src/stdune/.stdune.objs/stdune__Io.{cmo,cmt}
#21 12.12 File "src/stdune/io.ml", line 1, characters 11-21:
#21 12.12 1 | module P = Pervasives
#21 12.12                ^^^^^^^^^^
#21 12.12 Alert deprecated: module Stdlib.Pervasives
#21 12.12 Use Stdlib instead.
#21 12.12 
#21 12.12 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 12.12 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 12.21     ocamlopt src/stdune/.stdune.objs/stdune__Pp.{cmx,o}
#21 12.21 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 12.21 114 |         pp_open_tag ppf (embed_tag ~opening ~closing);
#21 12.21               ^^^^^^^^^^^
#21 12.21 Alert deprecated: Stdlib.Format.pp_open_tag
#21 12.21 Use Format.pp_open_stag.
#21 12.21 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 12.21 116 |         pp_close_tag ppf ()
#21 12.21               ^^^^^^^^^^^^
#21 12.21 Alert deprecated: Stdlib.Format.pp_close_tag
#21 12.21 Use Format.pp_close_stag.
#21 12.21 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 12.21 119 |       let funcs = pp_get_formatter_tag_functions ppf () in
#21 12.21                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 12.21 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 12.21 Use Format.pp_get_formatter_stag_functions.
#21 12.21 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 12.21 121 |       pp_set_formatter_tag_functions ppf
#21 12.21             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 12.21 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 12.21 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 12.32       ocamlc src/dune_lang/.dune_lang.objs/dune_lang.{cmo,cmt}
#21 12.32 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 12.32 107 |   let tfuncs = Format.pp_get_formatter_tag_functions ppf () in
#21 12.32                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 12.32 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 12.32 Use Format.pp_get_formatter_stag_functions.
#21 12.32 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 12.32 108 |   Format.pp_set_formatter_tag_functions ppf
#21 12.32         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 12.32 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 12.32 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 12.47     ocamlopt src/stdune/.stdune.objs/stdune__Io.{cmx,o}
#21 12.47 File "src/stdune/io.ml", line 1, characters 11-21:
#21 12.47 1 | module P = Pervasives
#21 12.47                ^^^^^^^^^^
#21 12.47 Alert deprecated: module Stdlib.Pervasives
#21 12.47 Use Stdlib instead.
#21 12.47 
#21 12.47 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 12.47 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 12.99     ocamlopt src/dune_lang/.dune_lang.objs/dune_lang.{cmx,o}
#21 12.99 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 12.99 107 |   let tfuncs = Format.pp_get_formatter_tag_functions ppf () in
#21 12.99                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 12.99 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 12.99 Use Format.pp_get_formatter_stag_functions.
#21 12.99 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 12.99 108 |   Format.pp_set_formatter_tag_functions ppf
#21 12.99         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 12.99 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 12.99 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 13.17     ocamlopt src/.dune.objs/dune__Colors.{cmx,o}
#21 13.17 File "src/colors.ml", line 105, characters 18-48:
#21 13.17 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 13.17 Use Format.pp_get_formatter_stag_functions.
#21 13.17 File "src/colors.ml", line 107, characters 6-36:
#21 13.17 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 13.17 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 15.10     ocamlopt src/.dune.objs/dune__Super_context.{cmx,o}
#21 15.10 File "src/super_context.ml", line 251, characters 7-11:
#21 15.10 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 17.55 src_ext/dune-local/_build_bootstrap/install/default/bin/dune build --profile=release  opam-installer.install opam.install
#21 18.61        ocaml src_ext/extlib/src/compat-level
#21 18.61 sh: 1: ocamlfind: not found
#21 19.28       ocamlc src_ext/ocamlgraph/src/.graph.objs/graph__Dot_lexer.{cmi,cmo,cmt}
#21 19.28 File "src/dot_lexer.mll", line 38, characters 21-37:
#21 19.28 Alert deprecated: Stdlib.String.lowercase
#21 19.28 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 19.33     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Graphviz.{cmx,o}
#21 19.33 File "src_ext/ocamlgraph/src/graphviz.ml", line 27, characters 5-15:
#21 19.33 27 | open Pervasives (* for compatibility with ocaml 3.12.0+dev17
#21 19.33           ^^^^^^^^^^
#21 19.33 Alert deprecated: module Stdlib.Pervasives
#21 19.33 Use Stdlib instead.
#21 19.33 
#21 19.33 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 19.33 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.33     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Dot_lexer.{cmx,o}
#21 19.33 File "src/dot_lexer.mll", line 38, characters 21-37:
#21 19.33 Alert deprecated: Stdlib.String.lowercase
#21 19.33 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 19.39     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_base.{cmx,o}
#21 19.39 File "src_ext/cmdliner/src/cmdliner_base.ml", line 14, characters 16-32:
#21 19.39 14 | let lowercase = String.lowercase
#21 19.39                      ^^^^^^^^^^^^^^^^
#21 19.39 Alert deprecated: Stdlib.String.lowercase
#21 19.39 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 19.39 File "src_ext/cmdliner/src/cmdliner_base.ml", line 15, characters 16-32:
#21 19.39 15 | let uppercase = String.lowercase
#21 19.39                      ^^^^^^^^^^^^^^^^
#21 19.39 Alert deprecated: Stdlib.String.lowercase
#21 19.39 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 19.39 File "src_ext/cmdliner/src/cmdliner_base.ml", line 16, characters 17-34:
#21 19.39 16 | let capitalize = String.capitalize
#21 19.39                       ^^^^^^^^^^^^^^^^^
#21 19.39 Alert deprecated: Stdlib.String.capitalize
#21 19.39 Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
#21 19.39 File "src_ext/cmdliner/src/cmdliner_base.ml", line 158, characters 14-27:
#21 19.39 158 |       `Error (err_ambiguous "enum value" s ambs)
#21 19.39                     ^^^^^^^^^^^^^
#21 19.39 Warning 6 [labels-omitted]: labels kind, ambs were omitted in the application of this function.
#21 19.40     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Dot.{cmx,o}
#21 19.40 File "src_ext/ocamlgraph/src/dot.ml", line 61, characters 40-58:
#21 19.40 61 |           let compare : t -> t -> int = Pervasives.compare
#21 19.40                                              ^^^^^^^^^^^^^^^^^^
#21 19.40 Alert deprecated: module Stdlib.Pervasives
#21 19.40 Use Stdlib instead.
#21 19.40 
#21 19.40 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 19.40 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.56       ocamlc src/core/.opam_core.objs/opamStubsTypes.{cmi,cmo,cmt}
#21 19.56 File "src/core/opamStubsTypes.ml", line 1:
#21 19.56 Warning 70 [missing-mli]: Cannot find interface file.
#21 19.70     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_docgen.{cmx,o}
#21 19.70 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 278, characters 23-39:
#21 19.70 278 |   if Cmdliner_manpage.(smap_has_section sm s_name) then sm else
#21 19.70                              ^^^^^^^^^^^^^^^^
#21 19.70 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 19.70 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 293, characters 22-56:
#21 19.70 293 |   let ins sm (s, b) = Cmdliner_manpage.smap_append_block sm s b in
#21 19.70                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 19.70 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 19.70 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 294, characters 35-51:
#21 19.70 294 |   let has_senv = Cmdliner_manpage.(smap_has_section sm s_environment) in
#21 19.70                                          ^^^^^^^^^^^^^^^^
#21 19.70 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 19.70 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 295, characters 36-52:
#21 19.70 295 |   let has_sexit = Cmdliner_manpage.(smap_has_section sm s_exit_status) in
#21 19.70                                           ^^^^^^^^^^^^^^^^
#21 19.70 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 19.82     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_cline.{cmx,o}
#21 19.82 File "src_ext/cmdliner/src/cmdliner_cline.ml", line 118, characters 20-47:
#21 19.82 118 |           let err = Cmdliner_base.err_ambiguous "option" name ambs in
#21 19.82                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 19.82 Warning 6 [labels-omitted]: labels kind, ambs were omitted in the application of this function.
#21 19.94     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_arg.{cmx,o}
#21 19.94 File "src_ext/cmdliner/src/cmdliner_arg.ml", line 166, characters 24-50:
#21 19.94 166 | | `Error e -> failwith (Cmdliner_msg.err_opt_parse f e)
#21 19.94                               ^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 19.94 Warning 6 [labels-omitted]: label err was omitted in the application of this function.
#21 19.94 File "src_ext/cmdliner/src/cmdliner_arg.ml", line 216, characters 24-50:
#21 19.94 216 | | `Error e -> failwith (Cmdliner_msg.err_pos_parse a e)
#21 19.94                               ^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 19.94 Warning 6 [labels-omitted]: label err was omitted in the application of this function.
#21 19.94 File "src_ext/cmdliner/src/cmdliner_arg.ml", line 233, characters 10-36:
#21 19.94 233 |   let a = Cmdliner_info.arg_make_pos pos a in
#21 19.94                 ^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 19.94 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 20.15     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner.{cmx,o}
#21 20.15 File "src_ext/cmdliner/src/cmdliner.ml", line 184, characters 25-47:
#21 20.15 184 |       | `Std_help fmt -> Cmdliner_docgen.pp_man err_ppf fmt help_ppf ei; `Help
#21 20.15                                ^^^^^^^^^^^^^^^^^^^^^^
#21 20.15 Warning 6 [labels-omitted]: label errs was omitted in the application of this function.
#21 20.15 File "src_ext/cmdliner/src/cmdliner.ml", line 274, characters 25-40:
#21 20.15 274 |   let exit ?term_err r = Pervasives.exit (exit_status_of_result ?term_err r)
#21 20.15                                ^^^^^^^^^^^^^^^
#21 20.15 Alert deprecated: module Stdlib.Pervasives
#21 20.15 Use Stdlib instead.
#21 20.15 
#21 20.15 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.15 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.15 File "src_ext/cmdliner/src/cmdliner.ml", line 276, characters 4-19:
#21 20.15 276 |     Pervasives.exit (exit_status_of_status_result ?term_err r)
#21 20.15           ^^^^^^^^^^^^^^^
#21 20.15 Alert deprecated: module Stdlib.Pervasives
#21 20.15 Use Stdlib instead.
#21 20.15 
#21 20.15 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.15 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.22          gcc src_ext/mccs/src/lp_solver.o
#21 20.22 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#21 20.22 lp_solver.cpp:144:53: warning: '%s' directive writing up to 255 bytes into a region of size between 239 and 1004 [-Wformat-overflow=]
#21 20.22   144 |       sprintf(command, "cat %s >> %s && %s %s | tee %s",
#21 20.22       |                                                     ^~
#21 20.22 In file included from /usr/include/stdio.h:906,
#21 20.22                  from ./cudf.h:21,
#21 20.22                  from ./abstract_solver.h:14,
#21 20.22                  from ./lp_solver.h:13,
#21 20.22                  from lp_solver.cpp:8:
#21 20.22 In function 'int sprintf(char*, const char*, ...)',
#21 20.22     inlined from 'virtual int lp_solver::solve()' at lp_solver.cpp:144:14:
#21 20.22 /usr/include/aarch64-linux-gnu/bits/stdio2.h:30:34: note: '__builtin___sprintf_chk' output 21 or more bytes (assuming 1041) into a destination of size 1024
#21 20.22    30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#21 20.22       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 20.22    31 |                                   __glibc_objsize (__s), __fmt,
#21 20.22       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 20.22    32 |                                   __va_arg_pack ());
#21 20.22       |                                   ~~~~~~~~~~~~~~~~~
#21 20.22 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#21 20.22 lp_solver.cpp:140:47: warning: '%s' directive writing up to 255 bytes into a region of size between 245 and 1010 [-Wformat-overflow=]
#21 20.22   140 |       sprintf(command, "cat %s >> %s; %s %s > %s 2> /dev/null",
#21 20.22       |                                               ^~
#21 20.22 In function 'int sprintf(char*, const char*, ...)',
#21 20.22     inlined from 'virtual int lp_solver::solve()' at lp_solver.cpp:140:14:
#21 20.22 /usr/include/aarch64-linux-gnu/bits/stdio2.h:30:34: note: '__builtin___sprintf_chk' output 28 or more bytes (assuming 1048) into a destination of size 1024
#21 20.22    30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#21 20.22       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 20.22    31 |                                   __glibc_objsize (__s), __fmt,
#21 20.22       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 20.22    32 |                                   __va_arg_pack ());
#21 20.22       |                                   ~~~~~~~~~~~~~~~~~
#21 20.26     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Persistent.{cmx,o}
#21 20.26 File "src_ext/ocamlgraph/src/persistent.ml", line 51, characters 20-38:
#21 20.26 51 |   let compare x y = Pervasives.compare x.tag y.tag
#21 20.26                          ^^^^^^^^^^^^^^^^^^
#21 20.26 Alert deprecated: module Stdlib.Pervasives
#21 20.26 Use Stdlib instead.
#21 20.26 
#21 20.26 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.26 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.26 File "src_ext/ocamlgraph/src/persistent.ml", line 144, characters 17-32:
#21 20.26 144 |           size = Pervasives.succ g.size }
#21 20.26                        ^^^^^^^^^^^^^^^
#21 20.26 Alert deprecated: module Stdlib.Pervasives
#21 20.26 Use Stdlib instead.
#21 20.26 
#21 20.26 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.26 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.26 File "src_ext/ocamlgraph/src/persistent.ml", line 157, characters 28-43:
#21 20.26 157 |         { edges = e; size = Pervasives.pred g.size }
#21 20.26                                   ^^^^^^^^^^^^^^^
#21 20.26 Alert deprecated: module Stdlib.Pervasives
#21 20.26 Use Stdlib instead.
#21 20.26 
#21 20.26 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.26 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.26 File "src_ext/ocamlgraph/src/persistent.ml", line 177, characters 17-32:
#21 20.26 177 |           size = Pervasives.succ g.size }
#21 20.26                        ^^^^^^^^^^^^^^^
#21 20.26 Alert deprecated: module Stdlib.Pervasives
#21 20.26 Use Stdlib instead.
#21 20.26 
#21 20.26 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.26 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.26 File "src_ext/ocamlgraph/src/persistent.ml", line 196, characters 17-32:
#21 20.26 196 |           size = Pervasives.pred g.size }
#21 20.26                        ^^^^^^^^^^^^^^^
#21 20.26 Alert deprecated: module Stdlib.Pervasives
#21 20.26 Use Stdlib instead.
#21 20.26 
#21 20.26 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.26 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.30     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Imperative.{cmx,o}
#21 20.30 File "src_ext/ocamlgraph/src/imperative.ml", line 68, characters 20-38:
#21 20.30 68 |   let compare x y = Pervasives.compare x.tag y.tag
#21 20.30                          ^^^^^^^^^^^^^^^^^^
#21 20.30 Alert deprecated: module Stdlib.Pervasives
#21 20.30 Use Stdlib instead.
#21 20.30 
#21 20.30 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.30 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.30 File "src_ext/ocamlgraph/src/imperative.ml", line 156, characters 18-33:
#21 20.30 156 |         g.size <- Pervasives.succ g.size;
#21 20.30                         ^^^^^^^^^^^^^^^
#21 20.30 Alert deprecated: module Stdlib.Pervasives
#21 20.30 Use Stdlib instead.
#21 20.30 
#21 20.30 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.30 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.30 File "src_ext/ocamlgraph/src/imperative.ml", line 172, characters 18-33:
#21 20.30 172 |         g.size <- Pervasives.pred g.size
#21 20.30                         ^^^^^^^^^^^^^^^
#21 20.30 Alert deprecated: module Stdlib.Pervasives
#21 20.30 Use Stdlib instead.
#21 20.30 
#21 20.30 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.30 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.30 File "src_ext/ocamlgraph/src/imperative.ml", line 193, characters 18-33:
#21 20.30 193 |         g.size <- Pervasives.succ g.size;
#21 20.30                         ^^^^^^^^^^^^^^^
#21 20.30 Alert deprecated: module Stdlib.Pervasives
#21 20.30 Use Stdlib instead.
#21 20.30 
#21 20.30 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.30 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.30 File "src_ext/ocamlgraph/src/imperative.ml", line 214, characters 18-33:
#21 20.30 214 |         g.size <- Pervasives.pred g.size
#21 20.30                         ^^^^^^^^^^^^^^^
#21 20.30 Alert deprecated: module Stdlib.Pervasives
#21 20.30 Use Stdlib instead.
#21 20.30 
#21 20.30 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.30 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.30 File "src_ext/ocamlgraph/src/imperative.ml", line 362, characters 36-54:
#21 20.30 362 |       let compare : t -> t -> int = Pervasives.compare
#21 20.30                                           ^^^^^^^^^^^^^^^^^^
#21 20.30 Alert deprecated: module Stdlib.Pervasives
#21 20.30 Use Stdlib instead.
#21 20.30 
#21 20.30 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.30 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.30 File "src_ext/ocamlgraph/src/imperative.ml", line 372, characters 36-54:
#21 20.30 372 |       let compare : t -> t -> int = Pervasives.compare
#21 20.30                                           ^^^^^^^^^^^^^^^^^^
#21 20.30 Alert deprecated: module Stdlib.Pervasives
#21 20.30 Use Stdlib instead.
#21 20.30 
#21 20.30 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.30 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.36     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Cliquetree.{cmx,o}
#21 20.36 File "src_ext/ocamlgraph/src/cliquetree.ml", line 106, characters 38-56:
#21 20.36 106 |         let compare : t -> t -> int = Pervasives.compare
#21 20.36                                             ^^^^^^^^^^^^^^^^^^
#21 20.36 Alert deprecated: module Stdlib.Pervasives
#21 20.36 Use Stdlib instead.
#21 20.36 
#21 20.36 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.36 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.36 File "src_ext/ocamlgraph/src/cliquetree.ml", line 114, characters 40-58:
#21 20.36 114 |     let compare (x, _ : t) (y, _ : t) = Pervasives.compare x y
#21 20.36                                               ^^^^^^^^^^^^^^^^^^
#21 20.36 Alert deprecated: module Stdlib.Pervasives
#21 20.36 Use Stdlib instead.
#21 20.36 
#21 20.36 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.36 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.42     ocamlopt src_ext/extlib/src/.extlib.objs/extString.{cmx,o}
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: set
#21 20.42 Use Bytes.set/BytesLabels.set instead.
#21 20.42 File "string.mli", lines 412-413, characters 0-63:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 179, characters 2-42:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: create
#21 20.42 Use Bytes.create/BytesLabels.create instead.
#21 20.42 File "string.mli", lines 403-404, characters 0-69:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 180, characters 2-29:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: copy
#21 20.42 Strings now immutable: no need to copy
#21 20.42 File "string.mli", lines 432-433, characters 0-63:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 182, characters 2-29:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: fill
#21 20.42 Use Bytes.fill/BytesLabels.fill instead.
#21 20.42 File "string.mli", lines 439-440, characters 0-65:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 184, characters 2-50:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: uppercase
#21 20.42 Use String.uppercase_ascii/StringLabels.uppercase_ascii instead.
#21 20.42 File "string.mli", lines 449-451, characters 0-71:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 200, characters 2-34:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: lowercase
#21 20.42 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 20.42 File "string.mli", lines 458-460, characters 0-71:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 201, characters 2-34:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: capitalize
#21 20.42 Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
#21 20.42 File "string.mli", lines 467-469, characters 0-73:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 202, characters 2-35:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: uncapitalize
#21 20.42 Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
#21 20.42 File "string.mli", lines 475-477, characters 0-77:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 203, characters 2-37:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: unsafe_set
#21 20.42 File "string.mli", lines 608-609, characters 0-22:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 219, characters 2-49:
#21 20.42   Expected signature
#21 20.42 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 20.42 Alert deprecated: unsafe_fill
#21 20.42 File "string.mli", lines 613-615, characters 0-22:
#21 20.42   Definition
#21 20.42 File "src_ext/extlib/src/extString.mli", line 221, characters 2-57:
#21 20.42   Expected signature
#21 20.45     ocamlopt src_ext/extlib/src/.extlib.objs/extList.{cmx,o}
#21 20.45 File "src_ext/extlib/src/extList.ml", line 383, characters 15-33:
#21 20.45 Alert deprecated: module Stdlib.Pervasives
#21 20.45 Use Stdlib instead.
#21 20.45 
#21 20.45 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.45 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.45     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Pack.{cmx,o}
#21 20.45 File "src_ext/ocamlgraph/src/pack.ml", line 52, characters 34-52:
#21 20.45 52 |     let compare : t -> t -> int = Pervasives.compare
#21 20.45                                        ^^^^^^^^^^^^^^^^^^
#21 20.45 Alert deprecated: module Stdlib.Pervasives
#21 20.45 Use Stdlib instead.
#21 20.45 
#21 20.45 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.45 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.45 File "src_ext/ocamlgraph/src/pack.ml", line 69, characters 34-52:
#21 20.45 69 |     let compare : t -> t -> int = Pervasives.compare
#21 20.45                                        ^^^^^^^^^^^^^^^^^^
#21 20.45 Alert deprecated: module Stdlib.Pervasives
#21 20.45 Use Stdlib instead.
#21 20.45 
#21 20.45 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.45 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.45 File "src_ext/ocamlgraph/src/pack.ml", line 97, characters 34-52:
#21 20.45 97 |     let compare : t -> t -> int = Pervasives.compare
#21 20.45                                        ^^^^^^^^^^^^^^^^^^
#21 20.45 Alert deprecated: module Stdlib.Pervasives
#21 20.45 Use Stdlib instead.
#21 20.45 
#21 20.45 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.45 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.45 File "src_ext/ocamlgraph/src/pack.ml", line 200, characters 32-50:
#21 20.45 200 |   let compare : t -> t -> int = Pervasives.compare
#21 20.45                                       ^^^^^^^^^^^^^^^^^^
#21 20.45 Alert deprecated: module Stdlib.Pervasives
#21 20.45 Use Stdlib instead.
#21 20.45 
#21 20.45 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.45 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.47     ocamlopt src_ext/extlib/src/.extlib.objs/extArray.{cmx,o}
#21 20.47 File "src_ext/extlib/src/extArray.pp.ml", line 1:
#21 20.47 Alert deprecated: make_float
#21 20.47 Use Array.create_float/ArrayLabels.create_float instead.
#21 20.47 File "array.mli", lines 75-77, characters 0-63:
#21 20.47   Definition
#21 20.47 File "src_ext/extlib/src/extArray.mli", line 121, characters 2-37:
#21 20.47   Expected signature
#21 20.47 File "src_ext/extlib/src/extArray.pp.ml", line 1:
#21 20.47 Alert deprecated: create
#21 20.47 Use Array.make/ArrayLabels.make instead.
#21 20.47 File "array.mli", lines 66-67, characters 0-65:
#21 20.47   Definition
#21 20.47 File "src_ext/extlib/src/extArray.mli", line 145, characters 2-60:
#21 20.47   Expected signature
#21 20.47 File "src_ext/extlib/src/extArray.pp.ml", line 1:
#21 20.47 Alert deprecated: create_matrix
#21 20.47 Use Array.make_matrix/ArrayLabels.make_matrix instead.
#21 20.47 File "array.mli", lines 103-105, characters 0-61:
#21 20.47   Definition
#21 20.47 File "src_ext/extlib/src/extArray.mli", line 148, characters 2-56:
#21 20.47   Expected signature
#21 20.56     ocamlopt src_ext/extlib/src/.extlib.objs/IO.{cmx,o}
#21 20.56 File "src_ext/extlib/src/IO.ml", line 313, characters 14-30:
#21 20.56 Alert deprecated: module Stdlib.Pervasives
#21 20.56 Use Stdlib instead.
#21 20.56 
#21 20.56 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.56 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.56 File "src_ext/extlib/src/IO.ml", line 317, characters 26-45:
#21 20.56 Alert deprecated: module Stdlib.Pervasives
#21 20.56 Use Stdlib instead.
#21 20.56 
#21 20.56 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.56 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.56 File "src_ext/extlib/src/IO.ml", line 323, characters 31-48:
#21 20.56 Alert deprecated: module Stdlib.Pervasives
#21 20.56 Use Stdlib instead.
#21 20.56 
#21 20.56 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.56 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.56 File "src_ext/extlib/src/IO.ml", line 324, characters 27-47:
#21 20.56 Alert deprecated: module Stdlib.Pervasives
#21 20.56 Use Stdlib instead.
#21 20.56 
#21 20.56 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.56 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.56 File "src_ext/extlib/src/IO.ml", line 325, characters 27-43:
#21 20.56 Alert deprecated: module Stdlib.Pervasives
#21 20.56 Use Stdlib instead.
#21 20.56 
#21 20.56 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.56 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.56 File "src_ext/extlib/src/IO.ml", line 792, characters 22-32:
#21 20.56 Warning 6 [labels-omitted]: label nbits was omitted in the application of this function.
#21 20.75       ocamlc src_ext/dose3/algo/.algo.objs/algo__Defaultgraphs.{cmi,cmo,cmt}
#21 20.75 File "src_ext/dose3/algo/defaultgraphs.ml", line 95, characters 15-33:
#21 20.75 Alert deprecated: module Stdlib.Pervasives
#21 20.75 Use Stdlib instead.
#21 20.75 
#21 20.75 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.75 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.75 File "src_ext/dose3/algo/defaultgraphs.ml", line 118, characters 22-40:
#21 20.75 Alert deprecated: module Stdlib.Pervasives
#21 20.75 Use Stdlib instead.
#21 20.75 
#21 20.75 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.75 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.75 File "src_ext/dose3/algo/defaultgraphs.ml", line 321, characters 14-32:
#21 20.75 Alert deprecated: module Stdlib.Pervasives
#21 20.75 Use Stdlib instead.
#21 20.75 
#21 20.75 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.75 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.75 File "src_ext/dose3/algo/defaultgraphs.ml", line 723, characters 18-36:
#21 20.75 Alert deprecated: module Stdlib.Pervasives
#21 20.75 Use Stdlib instead.
#21 20.75 
#21 20.75 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.75 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.81       ocamlc src_ext/dose3/algo/.algo.objs/algo__Strongconflicts_int.{cmi,cmo,cmt}
#21 20.81 File "src_ext/dose3/algo/strongconflicts_int.ml", line 29, characters 16-34:
#21 20.81 Alert deprecated: module Stdlib.Pervasives
#21 20.81 Use Stdlib instead.
#21 20.81 
#21 20.81 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.81 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.81 File "src_ext/dose3/algo/strongconflicts_int.ml", line 46, characters 55-73:
#21 20.81 Alert deprecated: module Stdlib.Pervasives
#21 20.81 Use Stdlib instead.
#21 20.81 
#21 20.81 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.81 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.84     ocamlopt src/core/.opam_core.objs/opamStd.{cmx,o}
#21 20.84 File "src/core/opamStd.ml", line 431, characters 32-46:
#21 20.84 431 |       let subs = Array.to_list (Re.get_all_ofs subs) in
#21 20.84                                       ^^^^^^^^^^^^^^
#21 20.84 Alert deprecated: Re.get_all_ofs
#21 20.84 Use Group.all_offset
#21 20.85       ocamlc src_ext/dose3/algo/.algo.objs/algo__Strongconflicts.{cmi,cmo,cmt}
#21 20.85 File "src_ext/dose3/algo/strongconflicts.ml", line 27, characters 16-34:
#21 20.85 Alert deprecated: module Stdlib.Pervasives
#21 20.85 Use Stdlib instead.
#21 20.85 
#21 20.85 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.85 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.86     ocamlopt src_ext/cudf/.cudf.objs/cudf_types_pp.{cmx,o}
#21 20.86 File "src_ext/cudf/cudf_types_pp.ml", line 92, characters 27-37:
#21 20.86 92 |     | `Enum l -> `Enum (l, parse_enum l s)
#21 20.86                                 ^^^^^^^^^^
#21 20.86 Warning 6 [labels-omitted]: label enums was omitted in the application of this function.
#21 20.86 File "src_ext/cudf/cudf_types_pp.ml", line 104, characters 20-44:
#21 20.86 104 | let string_of_int = Pervasives.string_of_int
#21 20.86                           ^^^^^^^^^^^^^^^^^^^^^^^^
#21 20.86 Alert deprecated: module Stdlib.Pervasives
#21 20.86 Use Stdlib instead.
#21 20.86 
#21 20.86 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.86 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.86 File "src_ext/cudf/cudf_types_pp.ml", line 107, characters 21-46:
#21 20.86 107 | let string_of_bool = Pervasives.string_of_bool
#21 20.86                            ^^^^^^^^^^^^^^^^^^^^^^^^^
#21 20.86 Alert deprecated: module Stdlib.Pervasives
#21 20.86 Use Stdlib instead.
#21 20.86 
#21 20.86 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.86 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.87       ocamlc src/solver/.opam_solver.objs/opamCudfSolverSig.{cmi,cmo,cmt}
#21 20.87 File "src/solver/opamCudfSolverSig.ml", line 1:
#21 20.87 Warning 70 [missing-mli]: Cannot find interface file.
#21 20.88       ocamlc src/tools/.opam_installer.eobjs/opam_installer.{cmi,cmo,cmt}
#21 20.88 File "src/tools/opam_installer.ml", line 1:
#21 20.88 Warning 70 [missing-mli]: Cannot find interface file.
#21 20.93     ocamlopt src_ext/cudf/.cudf.objs/cudf.{cmx,o}
#21 20.93 File "src_ext/cudf/cudf.ml", line 76, characters 2-20:
#21 20.93 76 |   Pervasives.compare (pkg1.package, pkg1.version) (pkg2.package, pkg2.version)
#21 20.93        ^^^^^^^^^^^^^^^^^^
#21 20.93 Alert deprecated: module Stdlib.Pervasives
#21 20.93 Use Stdlib instead.
#21 20.93 
#21 20.93 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.93 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 20.93 File "src_ext/cudf/cudf.ml", line 79, characters 2-20:
#21 20.93 79 |   Pervasives.compare (pkg2.package, pkg2.version) (pkg1.package, pkg1.version)
#21 20.93        ^^^^^^^^^^^^^^^^^^
#21 20.93 Alert deprecated: module Stdlib.Pervasives
#21 20.93 Use Stdlib instead.
#21 20.93 
#21 20.93 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 20.93 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.13     ocamlopt src/core/.opam_core.objs/opamProcess.{cmx,o}
#21 21.13 File "src/core/opamProcess.ml", line 382, characters 9-24:
#21 21.13 382 |     (let open OpamCompat in
#21 21.13                ^^^^^^^^^^^^^^^
#21 21.13 Warning 33 [unused-open]: unused open OpamCompat.
#21 21.14     ocamlopt src_ext/dose3/common/.common.objs/common__Util.{cmx,o}
#21 21.14 File "src_ext/dose3/common/util.ml", line 90, characters 6-23:
#21 21.14 Alert deprecated: Stdlib.String.capitalize
#21 21.14 Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
#21 21.14 File "src_ext/dose3/common/util.ml", line 96, characters 6-21:
#21 21.14 Alert deprecated: module Stdlib.Pervasives
#21 21.14 Use Stdlib instead.
#21 21.14 
#21 21.14 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.14 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.14 File "src_ext/dose3/common/util.ml", line 103, characters 6-21:
#21 21.14 Alert deprecated: module Stdlib.Pervasives
#21 21.14 Use Stdlib instead.
#21 21.14 
#21 21.14 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.14 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.14 File "src_ext/dose3/common/util.ml", line 163, characters 6-21:
#21 21.14 Alert deprecated: module Stdlib.Pervasives
#21 21.14 Use Stdlib instead.
#21 21.14 
#21 21.14 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.14 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.51     ocamlopt src/core/.opam_core.objs/opamFilename.{cmx,o}
#21 21.51 File "src/core/opamFilename.ml", line 349, characters 11-25:
#21 21.51 349 | let link ?(relative=false) ~target ~link =
#21 21.51                  ^^^^^^^^^^^^^^
#21 21.51 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 21.59     ocamlopt src/core/.opam_core.objs/opamUrl.{cmx,o}
#21 21.59 File "src/core/opamUrl.ml", line 56, characters 10-20:
#21 21.59 56 |     match Re.get_all (Re.exec re u) with
#21 21.59                ^^^^^^^^^^
#21 21.59 Alert deprecated: Re.get_all
#21 21.59 Use Group.all
#21 21.59 File "src/core/opamUrl.ml", line 109, characters 12-18:
#21 21.59 109 |       Some (Re.get sub 1 ^ try "/" ^ Re.get sub 2 with Not_found -> "")
#21 21.59                   ^^^^^^
#21 21.59 Alert deprecated: Re.get
#21 21.59 Use Group.get
#21 21.59 File "src/core/opamUrl.ml", line 109, characters 37-43:
#21 21.59 109 |       Some (Re.get sub 1 ^ try "/" ^ Re.get sub 2 with Not_found -> "")
#21 21.59                                            ^^^^^^
#21 21.59 Alert deprecated: Re.get
#21 21.59 Use Group.get
#21 21.59 File "src/core/opamUrl.ml", line 219, characters 6-12:
#21 21.59 219 |       Re.get (Re.exec re t.path) 1
#21 21.59             ^^^^^^
#21 21.59 Alert deprecated: Re.get
#21 21.59 Use Group.get
#21 21.67     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Defaultgraphs.{cmx,o}
#21 21.67 File "src_ext/dose3/algo/defaultgraphs.ml", line 95, characters 15-33:
#21 21.67 Alert deprecated: module Stdlib.Pervasives
#21 21.67 Use Stdlib instead.
#21 21.67 
#21 21.67 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.67 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.67 File "src_ext/dose3/algo/defaultgraphs.ml", line 118, characters 22-40:
#21 21.67 Alert deprecated: module Stdlib.Pervasives
#21 21.67 Use Stdlib instead.
#21 21.67 
#21 21.67 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.67 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.67 File "src_ext/dose3/algo/defaultgraphs.ml", line 321, characters 14-32:
#21 21.67 Alert deprecated: module Stdlib.Pervasives
#21 21.67 Use Stdlib instead.
#21 21.67 
#21 21.67 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.67 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.67 File "src_ext/dose3/algo/defaultgraphs.ml", line 723, characters 18-36:
#21 21.67 Alert deprecated: module Stdlib.Pervasives
#21 21.67 Use Stdlib instead.
#21 21.67 
#21 21.67 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.67 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.82     ocamlopt src/format/.opam_format.objs/opamFormula.{cmx,o}
#21 21.82 File "src/format/opamFormula.ml", line 31, characters 7-24:
#21 21.82 31 |       (OpamPrinter.relop r)
#21 21.82             ^^^^^^^^^^^^^^^^^
#21 21.82 Alert deprecated: OpamPrinter.relop
#21 21.82 Use OpamPrinter.FullPos.relop instead.
#21 21.82 File "src/format/opamFormula.ml", line 43, characters 7-24:
#21 21.82 43 |       (OpamPrinter.relop r)
#21 21.82             ^^^^^^^^^^^^^^^^^
#21 21.82 Alert deprecated: OpamPrinter.relop
#21 21.82 Use OpamPrinter.FullPos.relop instead.
#21 21.82 File "src/format/opamFormula.ml", line 234, characters 28-45:
#21 21.82 234 |     Printf.sprintf "%s %s" (OpamPrinter.relop relop)
#21 21.82                                   ^^^^^^^^^^^^^^^^^
#21 21.82 Alert deprecated: OpamPrinter.relop
#21 21.82 Use OpamPrinter.FullPos.relop instead.
#21 21.87     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Diagnostic.{cmx,o}
#21 21.87 File "src_ext/dose3/algo/diagnostic.ml", line 308, characters 12-30:
#21 21.87 Alert deprecated: module Stdlib.Pervasives
#21 21.87 Use Stdlib instead.
#21 21.87 
#21 21.87 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.87 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 21.87 File "src_ext/dose3/algo/diagnostic.ml", line 509, characters 20-38:
#21 21.87 Alert deprecated: module Stdlib.Pervasives
#21 21.87 Use Stdlib instead.
#21 21.87 
#21 21.87 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 21.87 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 22.01     ocamlopt src/format/.opam_format.objs/opamFilter.{cmx,o}
#21 22.01 File "src/format/opamFilter.ml", line 44, characters 36-53:
#21 22.01 44 |            (aux ~context:`Relop e) (OpamPrinter.relop s) (aux ~context:`Relop f))
#21 22.01                                          ^^^^^^^^^^^^^^^^^
#21 22.01 Alert deprecated: OpamPrinter.relop
#21 22.01 Use OpamPrinter.FullPos.relop instead.
#21 22.01 File "src/format/opamFilter.ml", line 109, characters 11-18:
#21 22.01 109 |         if Re.test ss 2 then
#21 22.01                  ^^^^^^^
#21 22.01 Alert deprecated: Re.test
#21 22.01 Use Group.test
#21 22.01 File "src/format/opamFilter.ml", line 110, characters 15-21:
#21 22.01 110 |           aux (Re.get ss 1 :: acc)
#21 22.01                      ^^^^^^
#21 22.01 Alert deprecated: Re.get
#21 22.01 Use Group.get
#21 22.01 File "src/format/opamFilter.ml", line 111, characters 18-28:
#21 22.01 111 |             (fst (Re.get_ofs ss 0) + String.length (Re.get ss 0))
#21 22.01                         ^^^^^^^^^^
#21 22.01 Alert deprecated: Re.get_ofs
#21 22.01 Use Group.offset
#21 22.01 File "src/format/opamFilter.ml", line 111, characters 52-58:
#21 22.01 111 |             (fst (Re.get_ofs ss 0) + String.length (Re.get ss 0))
#21 22.01                                                           ^^^^^^
#21 22.01 Alert deprecated: Re.get
#21 22.01 Use Group.get
#21 22.01 File "src/format/opamFilter.ml", line 524, characters 38-55:
#21 22.01 524 |           Printf.sprintf "%s \"%s\"" (OpamPrinter.relop op) s
#21 22.01                                             ^^^^^^^^^^^^^^^^^
#21 22.01 Alert deprecated: OpamPrinter.relop
#21 22.01 Use OpamPrinter.FullPos.relop instead.
#21 22.01 File "src/format/opamFilter.ml", line 526, characters 34-51:
#21 22.01 526 |           Printf.sprintf "%s %s" (OpamPrinter.relop op) (to_string v)
#21 22.01                                         ^^^^^^^^^^^^^^^^^
#21 22.01 Alert deprecated: OpamPrinter.relop
#21 22.01 Use OpamPrinter.FullPos.relop instead.
#21 22.01 File "src/format/opamFilter.ml", line 528, characters 36-53:
#21 22.01 528 |           Printf.sprintf "%s (%s)" (OpamPrinter.relop op) (to_string v)
#21 22.01                                           ^^^^^^^^^^^^^^^^^
#21 22.01 Alert deprecated: OpamPrinter.relop
#21 22.01 Use OpamPrinter.FullPos.relop instead.
#21 22.06     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Strongconflicts_int.{cmx,o}
#21 22.06 File "src_ext/dose3/algo/strongconflicts_int.ml", line 29, characters 16-34:
#21 22.06 Alert deprecated: module Stdlib.Pervasives
#21 22.06 Use Stdlib instead.
#21 22.06 
#21 22.06 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 22.06 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 22.06 File "src_ext/dose3/algo/strongconflicts_int.ml", line 46, characters 55-73:
#21 22.06 Alert deprecated: module Stdlib.Pervasives
#21 22.06 Use Stdlib instead.
#21 22.06 
#21 22.06 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 22.06 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 22.18     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Strongconflicts.{cmx,o}
#21 22.18 File "src_ext/dose3/algo/strongconflicts.ml", line 27, characters 16-34:
#21 22.18 Alert deprecated: module Stdlib.Pervasives
#21 22.18 Use Stdlib instead.
#21 22.18 
#21 22.18 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 22.18 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 22.19     ocamlopt src/format/.opam_format.objs/opamFormat.{cmx,o}
#21 22.19 File "src/format/opamFormat.ml", line 822, characters 21-48:
#21 22.19 822 |            let str = OpamPrinter.Normalise.items items in
#21 22.19                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 22.19 Alert deprecated: module OpamPrinter.Normalise
#21 22.19 Use OpamPrinter.FullPos.Normalise instead.
#21 22.19 File "src/format/opamFormat.ml", line 829, characters 28-55:
#21 22.19 829 |          assert (check sgs (OpamPrinter.Normalise.items items));
#21 22.19                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 22.19 Alert deprecated: module OpamPrinter.Normalise
#21 22.19 Use OpamPrinter.FullPos.Normalise instead.
#21 23.01     ocamlopt src/format/.opam_format.objs/opamFile.{cmx,o}
#21 23.01 File "src/format/opamFile.ml", line 545, characters 10-33:
#21 23.01 545 |          (OpamLexer.env_update_op, OpamPrinter.env_update_op) ^+
#21 23.01                 ^^^^^^^^^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamLexer.env_update_op
#21 23.01 Use OpamLexer.FullPos.env_update_op instead.
#21 23.01 File "src/format/opamFile.ml", line 545, characters 35-60:
#21 23.01 545 |          (OpamLexer.env_update_op, OpamPrinter.env_update_op) ^+
#21 23.01                                          ^^^^^^^^^^^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamPrinter.env_update_op
#21 23.01 Use OpamPrinter.FullPos.env_update_op instead.
#21 23.01 File "src/format/opamFile.ml", line 723, characters 8-23:
#21 23.01 723 |     try OpamParser.main OpamLexer.token lexbuf filename with
#21 23.01               ^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamParser.main
#21 23.01 Use OpamParser.FullPos.main instead.
#21 23.01 File "src/format/opamFile.ml", line 735, characters 9-36:
#21 23.01 735 |          OpamPrinter.format_opamfile fmt file)
#21 23.01                ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamPrinter.format_opamfile
#21 23.01 Use OpamPrinter.FullPos.format_opamfile instead.
#21 23.01 File "src/format/opamFile.ml", line 748, characters 4-24:
#21 23.01 748 |     OpamPrinter.opamfile t
#21 23.01           ^^^^^^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamPrinter.opamfile
#21 23.01 Use OpamPrinter.FullPos.opamfile instead.
#21 23.01 File "src/format/opamFile.ml", line 823, characters 19-36:
#21 23.01 823 |                    OpamPrinter.items [f] :: strs
#21 23.01                          ^^^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamPrinter.items
#21 23.01 Use OpamPrinter.FullPos.items instead.
#21 23.01 File "src/format/opamFile.ml", line 854, characters 17-34:
#21 23.01 854 |                  OpamPrinter.items f :: strs
#21 23.01                        ^^^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamPrinter.items
#21 23.01 Use OpamPrinter.FullPos.items instead.
#21 23.01 File "src/format/opamFile.ml", line 862, characters 38-55:
#21 23.01 862 |          (if rem = [] then [""] else [OpamPrinter.items rem;""]))
#21 23.01                                             ^^^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamPrinter.items
#21 23.01 Use OpamPrinter.FullPos.items instead.
#21 23.01 File "src/format/opamFile.ml", line 1277, characters 21-36:
#21 23.01 1277 |       let opamfile = OpamParser.file (OpamFilename.to_string (filename f)) in
#21 23.01                             ^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamParser.file
#21 23.01 Use OpamParser.FullPos.file instead.
#21 23.01 File "src/format/opamFile.ml", line 1648, characters 21-36:
#21 23.01 1648 |       let opamfile = OpamParser.file (OpamFilename.to_string (filename f)) in
#21 23.01                             ^^^^^^^^^^^^^^^
#21 23.01 Alert deprecated: OpamParser.file
#21 23.01 Use OpamParser.FullPos.file instead.
#21 23.21     ocamlopt src/repository/.opam_repository.objs/opamDownload.{cmx,o}
#21 23.21 File "src/repository/opamDownload.ml", line 44, characters 36-44:
#21 23.21 44 | let download_args ~url ~out ~retry ?checksum ~compress =
#21 23.21                                          ^^^^^^^^
#21 23.21 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 23.21 File "src/repository/opamDownload.ml", line 102, characters 32-40:
#21 23.21 102 | let download_command ~compress ?checksum ~url ~dst =
#21 23.21                                       ^^^^^^^^
#21 23.21 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 23.21 File "src/repository/opamDownload.ml", line 120, characters 60-73:
#21 23.21 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 23.21                                                                   ^^^^^^^^^^^^^
#21 23.21 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 23.21 File "src/repository/opamDownload.ml", line 120, characters 49-57:
#21 23.21 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 23.21                                                        ^^^^^^^^
#21 23.21 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 23.21 File "src/repository/opamDownload.ml", line 120, characters 32-46:
#21 23.21 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 23.21                                       ^^^^^^^^^^^^^^
#21 23.21 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 23.21 File "src/repository/opamDownload.ml", line 120, characters 6-17:
#21 23.21 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 23.21             ^^^^^^^^^^^
#21 23.21 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 23.56     ocamlopt src/solver/.opam_solver.objs/opamCudf.{cmx,o}
#21 23.56 File "src/solver/opamCudf.ml", line 219, characters 47-64:
#21 23.56 219 |     | Some (r,v) -> Printf.sprintf " (%s %d)" (OpamPrinter.relop r) v in
#21 23.56                                                      ^^^^^^^^^^^^^^^^^
#21 23.56 Alert deprecated: OpamPrinter.relop
#21 23.56 Use OpamPrinter.FullPos.relop instead.
#21 23.73     ocamlopt src/state/.opam_state.objs/opamPinned.{cmx,o}
#21 23.73 File "src/state/opamPinned.ml", line 126, characters 34-51:
#21 23.73 126 |                                  (OpamPrinter.relop op) (OpamPackage.Version.to_string vc))
#21 23.73                                         ^^^^^^^^^^^^^^^^^
#21 23.73 Alert deprecated: OpamPrinter.relop
#21 23.73 Use OpamPrinter.FullPos.relop instead.
#21 24.42     ocamlopt src/state/.opam_state.objs/opamSwitchState.{cmx,o}
#21 24.42 File "src/state/opamSwitchState.ml", line 668, characters 41-58:
#21 24.42 668 |       (match relop with `Eq -> "" | r -> OpamPrinter.relop r)
#21 24.42                                                ^^^^^^^^^^^^^^^^^
#21 24.42 Alert deprecated: OpamPrinter.relop
#21 24.42 Use OpamPrinter.FullPos.relop instead.
#21 24.79     ocamlopt src/client/.opam_client.objs/opamConfigCommand.{cmx,o}
#21 24.79 File "src/client/opamConfigCommand.ml", line 216, characters 42-62:
#21 24.79 216 | let env gt switch ?(set_opamroot=false) ?(set_opamswitch=false)
#21 24.79                                                 ^^^^^^^^^^^^^^^^^^^^
#21 24.79 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 24.79 File "src/client/opamConfigCommand.ml", line 216, characters 20-38:
#21 24.79 216 | let env gt switch ?(set_opamroot=false) ?(set_opamswitch=false)
#21 24.79                           ^^^^^^^^^^^^^^^^^^
#21 24.79 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 25.37     ocamlopt src/client/.opam_client.objs/opamListCommand.{cmx,o}
#21 25.37 File "src/client/opamListCommand.ml", line 471, characters 20-47:
#21 25.37 471 |   if normalise then OpamPrinter.Normalise.value else
#21 25.37                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 25.37 Alert deprecated: module OpamPrinter.Normalise
#21 25.37 Use OpamPrinter.FullPos.Normalise instead.
#21 25.37 File "src/client/opamListCommand.ml", line 477, characters 19-41:
#21 25.37 477 |   | List (_, l) -> OpamPrinter.value_list l
#21 25.37                          ^^^^^^^^^^^^^^^^^^^^^^
#21 25.37 Alert deprecated: OpamPrinter.value_list
#21 25.37 Use OpamPrinter.FullPos.value_list instead.
#21 25.37 File "src/client/opamListCommand.ml", line 478, characters 9-36:
#21 25.37 478 |   | f -> OpamPrinter.Normalise.value f
#21 25.37                ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 25.37 Alert deprecated: module OpamPrinter.Normalise
#21 25.37 Use OpamPrinter.FullPos.Normalise instead.
#21 25.62     ocamlopt src/client/.opam_client.objs/opamArg.{cmx,o}
#21 25.62 File "src/client/opamArg.ml", line 488, characters 45-51:
#21 25.62 488 |       let name = OpamPackage.Name.of_string (Re.get sub 1) in
#21 25.62                                                    ^^^^^^
#21 25.62 Alert deprecated: Re.get
#21 25.62 Use Group.get
#21 25.62 File "src/client/opamArg.ml", line 490, characters 49-55:
#21 25.62 490 |         try Some (OpamPackage.Version.of_string (Re.get sub 2))
#21 25.62                                                        ^^^^^^
#21 25.62 Alert deprecated: Re.get
#21 25.62 Use Group.get
#21 25.62 File "src/client/opamArg.ml", line 526, characters 18-24:
#21 25.62 526 |       let sname = Re.get sub 1 in
#21 25.62                         ^^^^^^
#21 25.62 Alert deprecated: Re.get
#21 25.62 Use Group.get
#21 25.62 File "src/client/opamArg.ml", line 527, characters 16-22:
#21 25.62 527 |       let sop = Re.get sub 2 in
#21 25.62                       ^^^^^^
#21 25.62 Alert deprecated: Re.get
#21 25.62 Use Group.get
#21 25.62 File "src/client/opamArg.ml", line 528, characters 21-27:
#21 25.62 528 |       let sversion = Re.get sub 3 in
#21 25.62                            ^^^^^^
#21 25.62 Alert deprecated: Re.get
#21 25.62 Use Group.get
#21 25.62 File "src/client/opamArg.ml", line 531, characters 15-30:
#21 25.62 531 |       let op = OpamLexer.relop sop in
#21 25.62                      ^^^^^^^^^^^^^^^
#21 25.62 Alert deprecated: OpamLexer.relop
#21 25.62 Use OpamLexer.FullPos.relop instead.
#21 27.27 sed -f process.sed opam.install > processed-opam.install
#21 27.27 ln -s -f _build/default/src/client/opamMain.exe opam
#21 27.27 src_ext/dune-local/_build_bootstrap/install/default/bin/dune build --profile=release  opam-installer.install
#21 27.39 sed -f process.sed opam-installer.install > processed-opam-installer.install
#21 27.39 ln -s -f _build/default/src/tools/opam_installer.exe opam-installer
#21 DONE 27.8s

#22 [stage-0  9/10] 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:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ./configure --enable-cold-check --with-0install-solver && 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.1/opam /usr/local/bin/opam-2.1 && chmod a+x /usr/local/bin/opam-2.1 && rm -rf /tmp/opam-build-2.1
#22 sha256:9a59720384a4ff8d528f95b489ac9c951f5acb546f5b703123f6742999a463b5
#22 0.510 Note: switching to '3dd624a69b1757279c0d04a3866d47facbb56771'.
#22 0.510 
#22 0.510 You are in 'detached HEAD' state. You can look around, make experimental
#22 0.510 changes and commit them, and you can discard any commits you make in this
#22 0.510 state without impacting any branches by switching back to a branch.
#22 0.510 
#22 0.510 If you want to create a new branch to retain commits you create, you may
#22 0.510 do so (now or later) by using -c with the switch command. Example:
#22 0.510 
#22 0.510   git switch -c <new-branch-name>
#22 0.510 
#22 0.510 Or undo this operation with:
#22 0.510 
#22 0.510   git switch -
#22 0.510 
#22 0.510 Turn off this advice by setting config variable advice.detachedHead to false
#22 0.510 
#22 0.510 HEAD is now at 3dd624a6 Merge pull request #5384 from kit-ty-kate/214
#22 0.643 checking for ocamlc... ocamlc
#22 0.654 OCaml version is 4.14.1
#22 0.662 OCaml library path is /tmp/opam/bootstrap/ocaml/lib/ocaml
#22 0.662 checking for ocamlopt... ocamlopt
#22 0.668 checking for ocamlc.opt... ocamlc.opt
#22 0.674 checking for ocamlopt.opt... ocamlopt.opt
#22 0.686 checking for ocaml... ocaml
#22 0.687 checking for ocamldep... ocamldep
#22 0.687 checking for ocamldep.opt... ocamldep.opt
#22 0.696 checking for ocamlmktop... ocamlmktop
#22 0.696 checking for ocamlmklib... ocamlmklib
#22 0.697 checking for ocamldoc... ocamldoc
#22 0.698 checking for ocamldoc.opt... ocamldoc.opt
#22 0.711 checking for ocamlbuild... no
#22 0.711 checking OCaml Sys.os_type... Unix
#22 0.745 checking for gawk... no
#22 0.745 checking for mawk... mawk
#22 0.753 checking for compiler type... cc
#22 1.025 checking for compiler architecture... arm64
#22 1.295 checking for compiler system... linux
#22 1.572 checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
#22 1.613 checking whether the C compiler works... yes
#22 1.670 checking for C compiler default output file name... a.out
#22 1.671 checking for suffix of executables... 
#22 1.733 checking whether we are cross compiling... no
#22 1.796 checking for suffix of object files... o
#22 1.831 checking whether the compiler supports GNU C... yes
#22 1.864 checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
#22 1.897 checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to enable C11 features... none needed
#22 1.969 checking for stdio.h... yes
#22 2.006 checking for stdlib.h... yes
#22 2.051 checking for string.h... yes
#22 2.093 checking for inttypes.h... yes
#22 2.136 checking for stdint.h... yes
#22 2.181 checking for strings.h... yes
#22 2.228 checking for sys/stat.h... yes
#22 2.268 checking for sys/types.h... yes
#22 2.305 checking for unistd.h... yes
#22 2.356 checking for acl/libacl.h... no
#22 2.406 checking for library containing acl_get_perm... no
#22 2.522 checking for ocamlobjinfo... ocamlobjinfo
#22 2.523 checking for ocamlfind... no
#22 2.523 checking for curl... curl
#22 2.524 checking for dune... no
#22 2.524 checking for cppo... no
#22 2.525 checking for patch... patch
#22 2.526 checking for bunzip2... bunzip2
#22 2.537 
#22 2.537 checking for OCaml findlib package unix... not found
#22 2.538 checking for OCaml findlib package bigarray... not found
#22 2.539 checking for OCaml findlib package extlib... not found
#22 2.540 checking for OCaml findlib package re... not found
#22 2.541 checking for OCaml findlib package re.glob... not found
#22 2.542 checking for OCaml findlib package cmdliner... not found
#22 2.543 checking for OCaml findlib package ocamlgraph... not found
#22 2.544 checking for OCaml findlib package cudf... not found
#22 2.545 checking for OCaml findlib package dose3.common... not found
#22 2.548 checking for OCaml findlib package dose3.algo... not found
#22 2.550 checking for OCaml findlib package opam-file-format... not found
#22 2.551 checking for OCaml findlib package mccs... not found
#22 2.552 checking for OCaml findlib package opam-0install-cudf... not found
#22 2.554 checking for g++... g++
#22 2.589 checking whether the compiler supports GNU C++... yes
#22 2.628 checking whether g++ accepts -g... yes
#22 2.660 checking for g++ option to enable C++11 features... none needed
#22 2.776 
#22 2.776 ============================================================================
#22 2.776 Some dependencies are missing. If you are just interested in the stand-alone
#22 2.776 'opam' binary, run 'make lib-ext' to download and include them.
#22 2.776 ============================================================================
#22 2.776 
#22 2.805 configure: creating ./config.status
#22 2.915 config.status: creating Makefile.config
#22 2.930 config.status: creating src/ocaml-flags-configure.sexp
#22 2.955 config.status: creating src/stubs/c-flags.sexp
#22 2.979 config.status: creating src/stubs/libacl/c-libraries.sexp
#22 3.004 
#22 3.008 Opam will be built WITH a built-in solver
#22 3.008 
#22 3.008 Executables will be installed in /usr/local/bin
#22 3.008 Manual pages will be installed in /usr/local/share/man
#22 3.043 make -j -C src_ext lib-ext
#22 3.045 make[1]: Entering directory '/tmp/opam-build-2.1/src_ext'
#22 3.079 [ -e dune-local.tbz ] || \
#22 3.079 cp archives/dune-3.5.0.tbz dune-local.tbz 2>/dev/null || { { { curl  -LSs -o dune-local.tbz https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz && ocaml ../shell/md5check.ml dune-local.tbz 46d1bde258ef60f60f053e88fe9d937b; } || { echo 'Failed to download https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz'; false; }; } || { { curl  -LSs -o dune-local.tbz https://opam.ocaml.org/cache/md5/46/46d1bde258ef60f60f053e88fe9d937b && ocaml ../shell/md5check.ml dune-local.tbz 46d1bde258ef60f60f053e88fe9d937b && echo 'Warning: downloaded https://github.com/ocaml/dune/releases/download/3.5.0/dune-3.5.0.tbz from opam cache'; } || { echo 'Failed to download dune-local from opam cache'; false; }; }; }
#22 3.082 [ -e cppo.tar.gz ] || \
#22 3.082 cp archives/v1.6.8.tar.gz cppo.tar.gz 2>/dev/null || { { { curl  -LSs -o cppo.tar.gz https://github.com/ocaml-community/cppo/archive/v1.6.8.tar.gz && ocaml ../shell/md5check.ml cppo.tar.gz fed401197d86f9089e89f6cbdf1d660d; } || { echo 'Failed to download https://github.com/ocaml-community/cppo/archive/v1.6.8.tar.gz'; false; }; } || { { curl  -LSs -o cppo.tar.gz https://opam.ocaml.org/cache/md5/fe/fed401197d86f9089e89f6cbdf1d660d && ocaml ../shell/md5check.ml cppo.tar.gz fed401197d86f9089e89f6cbdf1d660d && echo 'Warning: downloaded https://github.com/ocaml-community/cppo/archive/v1.6.8.tar.gz from opam cache'; } || { echo 'Failed to download cppo from opam cache'; false; }; }; }
#22 3.085 [ -e base64.tbz ] || \
#22 3.085 cp archives/base64-v3.5.0.tbz base64.tbz 2>/dev/null || { { { curl  -LSs -o base64.tbz https://github.com/mirage/ocaml-base64/releases/download/v3.5.0/base64-v3.5.0.tbz && ocaml ../shell/md5check.ml base64.tbz 0179af18d6c1cf13d77671ee23901433; } || { echo 'Failed to download https://github.com/mirage/ocaml-base64/releases/download/v3.5.0/base64-v3.5.0.tbz'; false; }; } || { { curl  -LSs -o base64.tbz https://opam.ocaml.org/cache/md5/01/0179af18d6c1cf13d77671ee23901433 && ocaml ../shell/md5check.ml base64.tbz 0179af18d6c1cf13d77671ee23901433 && echo 'Warning: downloaded https://github.com/mirage/ocaml-base64/releases/download/v3.5.0/base64-v3.5.0.tbz from opam cache'; } || { echo 'Failed to download base64 from opam cache'; false; }; }; }
#22 3.088 [ -e extlib.tar.gz ] || \
#22 3.088 cp archives/extlib-1.7.9.tar.gz extlib.tar.gz 2>/dev/null || { { { curl  -LSs -o extlib.tar.gz https://github.com/ygrek/ocaml-extlib/releases/download/1.7.9/extlib-1.7.9.tar.gz && ocaml ../shell/md5check.ml extlib.tar.gz f7ca7f1c82e15a99603b88f730fd7b8a; } || { echo 'Failed to download https://github.com/ygrek/ocaml-extlib/releases/download/1.7.9/extlib-1.7.9.tar.gz'; false; }; } || { { curl  -LSs -o extlib.tar.gz https://opam.ocaml.org/cache/md5/f7/f7ca7f1c82e15a99603b88f730fd7b8a && ocaml ../shell/md5check.ml extlib.tar.gz f7ca7f1c82e15a99603b88f730fd7b8a && echo 'Warning: downloaded https://github.com/ygrek/ocaml-extlib/releases/download/1.7.9/extlib-1.7.9.tar.gz from opam cache'; } || { echo 'Failed to download extlib from opam cache'; false; }; }; }
#22 3.092 [ -e re.tbz ] || \
#22 3.092 cp archives/re-1.10.3.tbz re.tbz 2>/dev/null || { { { curl  -LSs -o re.tbz https://github.com/ocaml/ocaml-re/releases/download/1.10.3/re-1.10.3.tbz && ocaml ../shell/md5check.ml re.tbz a36347dcfaf71c95916f96f72b0cf2ce; } || { echo 'Failed to download https://github.com/ocaml/ocaml-re/releases/download/1.10.3/re-1.10.3.tbz'; false; }; } || { { curl  -LSs -o re.tbz https://opam.ocaml.org/cache/md5/a3/a36347dcfaf71c95916f96f72b0cf2ce && ocaml ../shell/md5check.ml re.tbz a36347dcfaf71c95916f96f72b0cf2ce && echo 'Warning: downloaded https://github.com/ocaml/ocaml-re/releases/download/1.10.3/re-1.10.3.tbz from opam cache'; } || { echo 'Failed to download re from opam cache'; false; }; }; }
#22 3.094 [ -e cmdliner.tbz ] || \
#22 3.094 cp archives/cmdliner-1.0.4.tbz cmdliner.tbz 2>/dev/null || { { { curl  -LSs -o cmdliner.tbz http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.4.tbz && ocaml ../shell/md5check.ml cmdliner.tbz fe2213d0bc63b1e10a2d0aa66d2fc8d9; } || { echo 'Failed to download http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.4.tbz'; false; }; } || { { curl  -LSs -o cmdliner.tbz https://opam.ocaml.org/cache/md5/fe/fe2213d0bc63b1e10a2d0aa66d2fc8d9 && ocaml ../shell/md5check.ml cmdliner.tbz fe2213d0bc63b1e10a2d0aa66d2fc8d9 && echo 'Warning: downloaded http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.4.tbz from opam cache'; } || { echo 'Failed to download cmdliner from opam cache'; false; }; }; }
#22 3.097 [ -e ocamlgraph.tbz ] || \
#22 3.097 cp archives/ocamlgraph-2.0.0.tbz ocamlgraph.tbz 2>/dev/null || { { { curl  -LSs -o ocamlgraph.tbz https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz && ocaml ../shell/md5check.ml ocamlgraph.tbz 2d07fcf3501e1d4997c03fa94cea22f0; } || { echo 'Failed to download https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz'; false; }; } || { { curl  -LSs -o ocamlgraph.tbz https://opam.ocaml.org/cache/md5/2d/2d07fcf3501e1d4997c03fa94cea22f0 && ocaml ../shell/md5check.ml ocamlgraph.tbz 2d07fcf3501e1d4997c03fa94cea22f0 && echo 'Warning: downloaded https://github.com/backtracking/ocamlgraph/releases/download/2.0.0/ocamlgraph-2.0.0.tbz from opam cache'; } || { echo 'Failed to download ocamlgraph from opam cache'; false; }; }; }
#22 3.101 [ -e cudf.tar.gz ] || \
#22 3.101 cp archives/cudf-v0.10.tar.gz cudf.tar.gz 2>/dev/null || { { { curl  -LSs -o cudf.tar.gz https://gitlab.com/irill/cudf/-/archive/v0.10/cudf-v0.10.tar.gz && ocaml ../shell/md5check.ml cudf.tar.gz ed8fea314d0c6dc0d8811ccf860c53dd; } || { echo 'Failed to download https://gitlab.com/irill/cudf/-/archive/v0.10/cudf-v0.10.tar.gz'; false; }; } || { { curl  -LSs -o cudf.tar.gz https://opam.ocaml.org/cache/md5/ed/ed8fea314d0c6dc0d8811ccf860c53dd && ocaml ../shell/md5check.ml cudf.tar.gz ed8fea314d0c6dc0d8811ccf860c53dd && echo 'Warning: downloaded https://gitlab.com/irill/cudf/-/archive/v0.10/cudf-v0.10.tar.gz from opam cache'; } || { echo 'Failed to download cudf from opam cache'; false; }; }; }
#22 3.104 [ -e dose3.tar.gz ] || \
#22 3.104 cp archives/dose3-7.0.0.tar.gz dose3.tar.gz 2>/dev/null || { { { curl  -LSs -o dose3.tar.gz https://gitlab.com/irill/dose3/-/archive/7.0.0/dose3-7.0.0.tar.gz && ocaml ../shell/md5check.ml dose3.tar.gz bc99cbcea8fca29dca3ebbee54be45e1; } || { echo 'Failed to download https://gitlab.com/irill/dose3/-/archive/7.0.0/dose3-7.0.0.tar.gz'; false; }; } || { { curl  -LSs -o dose3.tar.gz https://opam.ocaml.org/cache/md5/bc/bc99cbcea8fca29dca3ebbee54be45e1 && ocaml ../shell/md5check.ml dose3.tar.gz bc99cbcea8fca29dca3ebbee54be45e1 && echo 'Warning: downloaded https://gitlab.com/irill/dose3/-/archive/7.0.0/dose3-7.0.0.tar.gz from opam cache'; } || { echo 'Failed to download dose3 from opam cache'; false; }; }; }
#22 3.107 [ -e opam-file-format.tar.gz ] || \
#22 3.107 cp archives/2.1.4.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.4.tar.gz && ocaml ../shell/md5check.ml opam-file-format.tar.gz cd9dac41c2153d07067c5f30cdcf77db; } || { echo 'Failed to download https://github.com/ocaml/opam-file-format/archive/2.1.4.tar.gz'; false; }; } || { { curl  -LSs -o opam-file-format.tar.gz https://opam.ocaml.org/cache/md5/cd/cd9dac41c2153d07067c5f30cdcf77db && ocaml ../shell/md5check.ml opam-file-format.tar.gz cd9dac41c2153d07067c5f30cdcf77db && echo 'Warning: downloaded https://github.com/ocaml/opam-file-format/archive/2.1.4.tar.gz from opam cache'; } || { echo 'Failed to download opam-file-format from opam cache'; false; }; }; }
#22 3.110 [ -e result.tbz ] || \
#22 3.110 cp archives/result-1.5.tbz result.tbz 2>/dev/null || { { { curl  -LSs -o result.tbz https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz && ocaml ../shell/md5check.ml result.tbz 1b82dec78849680b49ae9a8a365b831b; } || { echo 'Failed to download https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz'; false; }; } || { { curl  -LSs -o result.tbz https://opam.ocaml.org/cache/md5/1b/1b82dec78849680b49ae9a8a365b831b && ocaml ../shell/md5check.ml result.tbz 1b82dec78849680b49ae9a8a365b831b && echo 'Warning: downloaded https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz from opam cache'; } || { echo 'Failed to download result from opam cache'; false; }; }; }
#22 3.113 [ -e seq.tar.gz ] || \
#22 3.113 cp archives/0.2.2.tar.gz seq.tar.gz 2>/dev/null || { { { curl  -LSs -o seq.tar.gz https://github.com/c-cube/seq/archive/0.2.2.tar.gz && ocaml ../shell/md5check.ml seq.tar.gz 9033e02283aa3bde9f97f24e632902e3; } || { echo 'Failed to download https://github.com/c-cube/seq/archive/0.2.2.tar.gz'; false; }; } || { { curl  -LSs -o seq.tar.gz https://opam.ocaml.org/cache/md5/90/9033e02283aa3bde9f97f24e632902e3 && ocaml ../shell/md5check.ml seq.tar.gz 9033e02283aa3bde9f97f24e632902e3 && echo 'Warning: downloaded https://github.com/c-cube/seq/archive/0.2.2.tar.gz from opam cache'; } || { echo 'Failed to download seq from opam cache'; false; }; }; }
#22 3.116 [ -e stdlib-shims.tbz ] || \
#22 3.116 cp archives/stdlib-shims-0.3.0.tbz stdlib-shims.tbz 2>/dev/null || { { { curl  -LSs -o stdlib-shims.tbz https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz && ocaml ../shell/md5check.ml stdlib-shims.tbz 09db7af8b4a3a96048a61cb6ae2496ef; } || { echo 'Failed to download https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz'; false; }; } || { { curl  -LSs -o stdlib-shims.tbz https://opam.ocaml.org/cache/md5/09/09db7af8b4a3a96048a61cb6ae2496ef && ocaml ../shell/md5check.ml stdlib-shims.tbz 09db7af8b4a3a96048a61cb6ae2496ef && echo 'Warning: downloaded https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz from opam cache'; } || { echo 'Failed to download stdlib-shims from opam cache'; false; }; }; }
#22 3.119 [ -e mccs.tar.gz ] || \
#22 3.119 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; }; }; }
#22 3.120 [ -e opam-0install-cudf.tbz ] || \
#22 3.120 cp archives/opam-0install-cudf-v0.4.2.tbz opam-0install-cudf.tbz 2>/dev/null || { { { curl  -LSs -o opam-0install-cudf.tbz https://github.com/ocaml-opam/opam-0install-solver/releases/download/v0.4.2/opam-0install-cudf-v0.4.2.tbz && ocaml ../shell/md5check.ml opam-0install-cudf.tbz 8e1494e8b97fc6f9a463966c394e9bdd; } || { echo 'Failed to download https://github.com/ocaml-opam/opam-0install-solver/releases/download/v0.4.2/opam-0install-cudf-v0.4.2.tbz'; false; }; } || { { curl  -LSs -o opam-0install-cudf.tbz https://opam.ocaml.org/cache/md5/8e/8e1494e8b97fc6f9a463966c394e9bdd && ocaml ../shell/md5check.ml opam-0install-cudf.tbz 8e1494e8b97fc6f9a463966c394e9bdd && echo 'Warning: downloaded https://github.com/ocaml-opam/opam-0install-solver/releases/download/v0.4.2/opam-0install-cudf-v0.4.2.tbz from opam cache'; } || { echo 'Failed to download opam-0install-cudf from opam cache'; false; }; }; }
#22 3.123 [ -e 0install-solver.tbz ] || \
#22 3.123 cp archives/0install-v2.17.tbz 0install-solver.tbz 2>/dev/null || { { { curl  -LSs -o 0install-solver.tbz https://github.com/0install/0install/releases/download/v2.17/0install-v2.17.tbz && ocaml ../shell/md5check.ml 0install-solver.tbz 50daf035b04b29399a3c6e6f965ac447; } || { echo 'Failed to download https://github.com/0install/0install/releases/download/v2.17/0install-v2.17.tbz'; false; }; } || { { curl  -LSs -o 0install-solver.tbz https://opam.ocaml.org/cache/md5/50/50daf035b04b29399a3c6e6f965ac447 && ocaml ../shell/md5check.ml 0install-solver.tbz 50daf035b04b29399a3c6e6f965ac447 && echo 'Warning: downloaded https://github.com/0install/0install/releases/download/v2.17/0install-v2.17.tbz from opam cache'; } || { echo 'Failed to download 0install-solver from opam cache'; false; }; }; }
#22 3.301 cmdliner.tbz has the expected MD5.
#22 3.302 mkdir -p tmp-cmdliner
#22 3.303 cd tmp-cmdliner && bunzip2 -c ../cmdliner.tbz | tar xf -
#22 3.323 rm -rf cmdliner
#22 3.330 patching file src/cmdliner_docgen.ml
#22 3.332 patching file src/cmdliner.ml
#22 3.332 patching file src/cmdliner.mli
#22 3.333 patching file src/cmdliner_arg.ml
#22 3.333 patching file src/cmdliner_arg.mli
#22 3.333 patching file src/cmdliner_base.ml
#22 3.334 patching file src/cmdliner_cline.ml
#22 3.334 patching file src/cmdliner_cline.mli
#22 3.334 patching file src/cmdliner_docgen.ml
#22 3.335 patching file src/cmdliner_manpage.ml
#22 3.335 patching file src/cmdliner_term.ml
#22 3.335 patching file src/cmdliner_term.mli
#22 3.335 patching file src/dune
#22 3.423 stdlib-shims.tbz has the expected MD5.
#22 3.424 mkdir -p tmp-stdlib-shims
#22 3.425 cd tmp-stdlib-shims && bunzip2 -c ../stdlib-shims.tbz | tar xf -
#22 3.427 rm -rf stdlib-shims
#22 3.471 cudf.tar.gz has the expected MD5.
#22 3.472 mkdir -p tmp-cudf
#22 3.473 cd tmp-cudf && gunzip -c ../cudf.tar.gz | tar xf -
#22 3.486 rm -rf cudf
#22 3.491 patching file lib/dune
#22 3.566 dune-local.tbz has the expected MD5.
#22 3.568 mkdir -p tmp-dune-local
#22 3.569 cd tmp-dune-local && bunzip2 -c ../dune-local.tbz | tar xf -
#22 3.573 extlib.tar.gz has the expected MD5.
#22 3.574 mkdir -p tmp-extlib
#22 3.576 cd tmp-extlib && gunzip -c ../extlib.tar.gz | tar xf -
#22 3.578 result.tbz has the expected MD5.
#22 3.579 mkdir -p tmp-result
#22 3.580 cd tmp-result && bunzip2 -c ../result.tbz | tar xf -
#22 3.581 ocamlgraph.tbz has the expected MD5.
#22 3.582 mkdir -p tmp-ocamlgraph
#22 3.583 cd tmp-ocamlgraph && bunzip2 -c ../ocamlgraph.tbz | tar xf -
#22 3.584 rm -rf result
#22 3.586 rm -rf extlib
#22 3.646 rm -rf ocamlgraph
#22 3.655 patching file src/dot_lexer.mll
#22 3.656 patching file src/dune
#22 3.662 base64.tbz has the expected MD5.
#22 3.663 mkdir -p tmp-base64
#22 3.664 cd tmp-base64 && bunzip2 -c ../base64.tbz | tar xf -
#22 3.672 rm -rf base64
#22 3.676 cppo.tar.gz has the expected MD5.
#22 3.677 mkdir -p tmp-cppo
#22 3.678 patching file src/base64.ml
#22 3.678 patching file src/base64.mli
#22 3.678 patching file src/dune
#22 3.678 cd tmp-cppo && gunzip -c ../cppo.tar.gz | tar xf -
#22 3.684 re.tbz has the expected MD5.
#22 3.685 mkdir -p tmp-re
#22 3.687 cd tmp-re && bunzip2 -c ../re.tbz | tar xf -
#22 3.687 rm -rf cppo
#22 3.710 opam-0install-cudf.tbz has the expected MD5.
#22 3.711 rm -rf re
#22 3.711 mkdir -p tmp-opam-0install-cudf
#22 3.713 cd tmp-opam-0install-cudf && bunzip2 -c ../opam-0install-cudf.tbz | tar xf -
#22 3.722 rm -rf opam-0install-cudf
#22 3.727 dose3.tar.gz has the expected MD5.
#22 3.728 mkdir -p tmp-dose3
#22 3.729 cd tmp-dose3 && gunzip -c ../dose3.tar.gz | tar xf -
#22 3.733 opam-file-format.tar.gz has the expected MD5.
#22 3.734 mkdir -p tmp-opam-file-format
#22 3.736 cd tmp-opam-file-format && gunzip -c ../opam-file-format.tar.gz | tar xf -
#22 3.741 seq.tar.gz has the expected MD5.
#22 3.742 mkdir -p tmp-seq
#22 3.743 rm -rf opam-file-format
#22 3.743 cd tmp-seq && gunzip -c ../seq.tar.gz | tar xf -
#22 3.748 rm -rf seq
#22 3.760 rm -f seq/src/seq.ml seq/src/seq.mli
#22 3.767 rm -rf dose3
#22 3.773 patching file src/common/dune
#22 3.774 patching file src/common/util.ml
#22 3.798 0install-solver.tbz has the expected MD5.
#22 3.799 mkdir -p tmp-0install-solver
#22 3.800 cd tmp-0install-solver && bunzip2 -c ../0install-solver.tbz | tar xf -
#22 3.803 mccs.tar.gz has the expected MD5.
#22 3.804 mkdir -p tmp-mccs
#22 3.805 cd tmp-mccs && gunzip -c ../mccs.tar.gz | tar xf -
#22 3.841 rm -rf mccs
#22 3.847 patching file src/lp_solver.cpp
#22 3.885 rm -rf 0install-solver
#22 3.947 rm -rf dune-local
#22 3.956 rm dune-local.download
#22 3.956 make[1]: Leaving directory '/tmp/opam-build-2.1/src_ext'
#22 3.957 cd src_ext/dune-local && ocaml bootstrap.ml
#22 4.025 ocamlc -output-complete-exe -w -24 -g -o .duneboot.exe -I boot unix.cma boot/libs.ml boot/duneboot.ml
#22 4.560 ./.duneboot.exe
#22 17.30 

src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install opam.install
#22 17.44 sh: 1: ocamlfind: not found
#22 17.44 (will skip building the GTK plugin)
#22 19.57 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#22 19.57 lp_solver.cpp:145:53: warning: '%s' directive writing up to 255 bytes into a region of size between 239 and 1004 [-Wformat-overflow=]
#22 19.57   145 |       sprintf(command, "cat %s >> %s && %s %s | tee %s",
#22 19.57       |                                                     ^~
#22 19.57 In file included from /usr/include/stdio.h:906,
#22 19.57                  from lp_solver.cpp:8:
#22 19.57 In function 'int sprintf(char*, const char*, ...)',
#22 19.57     inlined from 'virtual int lp_solver::solve()' at lp_solver.cpp:145:14:
#22 19.57 /usr/include/aarch64-linux-gnu/bits/stdio2.h:30:34: note: '__builtin___sprintf_chk' output 21 or more bytes (assuming 1041) into a destination of size 1024
#22 19.57    30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#22 19.57       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.57    31 |                                   __glibc_objsize (__s), __fmt,
#22 19.57       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.57    32 |                                   __va_arg_pack ());
#22 19.57       |                                   ~~~~~~~~~~~~~~~~~
#22 19.57 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#22 19.57 lp_solver.cpp:141:47: warning: '%s' directive writing up to 255 bytes into a region of size between 245 and 1010 [-Wformat-overflow=]
#22 19.57   141 |       sprintf(command, "cat %s >> %s; %s %s > %s 2> /dev/null",
#22 19.57       |                                               ^~
#22 19.57 In function 'int sprintf(char*, const char*, ...)',
#22 19.57     inlined from 'virtual int lp_solver::solve()' at lp_solver.cpp:141:14:
#22 19.57 /usr/include/aarch64-linux-gnu/bits/stdio2.h:30:34: note: '__builtin___sprintf_chk' output 28 or more bytes (assuming 1048) into a destination of size 1024
#22 19.57    30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#22 19.57       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.57    31 |                                   __glibc_objsize (__s), __fmt,
#22 19.57       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.57    32 |                                   __va_arg_pack ());
#22 19.57       |                                   ~~~~~~~~~~~~~~~~~
#22 21.05 File "src/core/opamStubsTypes.ml", line 1:
#22 21.05 Warning 70 [missing-mli]: Cannot find interface file.
#22 21.45 File "src/solver/opamCudfSolverSig.ml", line 1:
#22 21.45 Warning 70 [missing-mli]: Cannot find interface file.
#22 21.50 File "src/tools/opam_installer.ml", line 1:
#22 21.50 Warning 70 [missing-mli]: Cannot find interface file.
#22 29.99 sed -f process.sed opam.install > processed-opam.install
#22 29.99 src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install
#22 30.11 sh: 1: ocamlfind: not found
#22 30.11 (will skip building the GTK plugin)
#22 30.40 sed -f process.sed opam-installer.install > processed-opam-installer.install
#22 DONE 30.8s

#23 [stage-0 10/10] 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:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ./configure --enable-cold-check --with-0install-solver && 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-master/opam /usr/local/bin/opam-master && chmod a+x /usr/local/bin/opam-master && rm -rf /tmp/opam-build-master
#23 sha256:659185041ad17c7f16f84a74e702802c2bdd0cd3df09fa9e8cbd1f8d8843c71c
#23 0.471 Note: switching to '8bc4698fb9caded0fa5c2bf08fe67a34d732451e'.
#23 0.471 
#23 0.471 You are in 'detached HEAD' state. You can look around, make experimental
#23 0.471 changes and commit them, and you can discard any commits you make in this
#23 0.471 state without impacting any branches by switching back to a branch.
#23 0.471 
#23 0.471 If you want to create a new branch to retain commits you create, you may
#23 0.471 do so (now or later) by using -c with the switch command. Example:
#23 0.471 
#23 0.471   git switch -c <new-branch-name>
#23 0.471 
#23 0.471 Or undo this operation with:
#23 0.471 
#23 0.471   git switch -
#23 0.471 
#23 0.471 Turn off this advice by setting config variable advice.detachedHead to false
#23 0.471 
#23 0.471 HEAD is now at 8bc4698f Merge pull request #5480 from rjbou/config-invariant
#23 0.602 checking for ocamlc... ocamlc
#23 0.613 OCaml version is 4.14.1
#23 0.623 OCaml library path is /tmp/opam/bootstrap/ocaml/lib/ocaml
#23 0.623 checking for ocamlopt... ocamlopt
#23 0.635 checking for ocamlc.opt... ocamlc.opt
#23 0.645 checking for ocamlopt.opt... ocamlopt.opt
#23 0.655 checking for ocaml... ocaml
#23 0.655 checking for ocamldep... ocamldep
#23 0.656 checking for ocamldep.opt... ocamldep.opt
#23 0.662 checking for ocamlmktop... ocamlmktop
#23 0.663 checking for ocamlmklib... ocamlmklib
#23 0.663 checking for ocamldoc... ocamldoc
#23 0.664 checking for ocamldoc.opt... ocamldoc.opt
#23 0.673 checking for ocamlbuild... no
#23 0.673 checking OCaml Sys.os_type... Unix
#23 0.704 checking for gawk... no
#23 0.704 checking for mawk... mawk
#23 0.714 checking for compiler type... cc
#23 0.985 checking for compiler architecture... arm64
#23 1.254 checking for compiler system... linux
#23 1.540 checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
#23 1.579 checking whether the C compiler works... yes
#23 1.634 checking for C compiler default output file name... a.out
#23 1.635 checking for suffix of executables... 
#23 1.683 checking whether we are cross compiling... no
#23 1.743 checking for suffix of object files... o
#23 1.778 checking whether the compiler supports GNU C... yes
#23 1.815 checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
#23 1.852 checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to enable C11 features... none needed
#23 1.922 checking for stdio.h... yes
#23 1.954 checking for stdlib.h... yes
#23 1.990 checking for string.h... yes
#23 2.032 checking for inttypes.h... yes
#23 2.070 checking for stdint.h... yes
#23 2.114 checking for strings.h... yes
#23 2.153 checking for sys/stat.h... yes
#23 2.195 checking for sys/types.h... yes
#23 2.233 checking for unistd.h... yes
#23 2.282 checking for acl/libacl.h... no
#23 2.326 checking for library containing acl_get_perm... no
#23 2.436 checking for ocamlobjinfo... ocamlobjinfo
#23 2.436 checking for ocamlfind... no
#23 2.437 checking for curl... curl
#23 2.438 checking for dune... no
#23 2.438 checking for cppo... no
#23 2.439 checking for patch... patch
#23 2.440 checking for bunzip2... bunzip2
#23 2.449 
#23 2.449 checking for OCaml findlib package unix... not found
#23 2.450 checking for OCaml findlib package bigarray... not found
#23 2.451 checking for OCaml findlib package re 1.9.0 or later... no
#23 2.453 checking for OCaml findlib package base64 3.1.0 or later... no
#23 2.455 checking for OCaml findlib package cmdliner... not found
#23 2.456 checking for OCaml findlib package ocamlgraph... not found
#23 2.457 checking for OCaml findlib package cudf 0.7 or later... no
#23 2.460 checking for OCaml findlib package dose3.common 6.1 or later... no
#23 2.461 checking for OCaml findlib package dose3.algo 6.1 or later... no
#23 2.464 checking for OCaml findlib package opam-file-format 2.1.4 or later... no
#23 2.466 checking for OCaml findlib package spdx_licenses... not found
#23 2.467 checking for OCaml findlib package opam-0install-cudf 0.4 or later... no
#23 2.469 checking for OCaml findlib package jsonm... not found
#23 2.470 checking for OCaml findlib package uutf... not found
#23 2.471 checking for OCaml findlib package sha... not found
#23 2.473 checking for OCaml findlib package mccs 1.1+9 or later... no
#23 2.476 checking for g++... g++
#23 2.508 checking whether the compiler supports GNU C++... yes
#23 2.545 checking whether g++ accepts -g... yes
#23 2.578 checking for g++ option to enable C++11 features... none needed
#23 2.682 checking whether g++ really is a C++ compiler... yes
#23 2.711 
#23 2.711 ============================================================================
#23 2.711 Some dependencies are missing. Vendored mode has been automatically enabled.
#23 2.711 The sources for opam's dependencies will be extracted in src_ext and built.
#23 2.711 ============================================================================
#23 2.738 configure: creating ./config.status
#23 2.845 config.status: creating Makefile.config
#23 2.860 config.status: creating src/ocaml-flags-configure.sexp
#23 2.883 config.status: creating src/stubs/c-flags.sexp
#23 2.906 config.status: creating src/stubs/libacl/c-libraries.sexp
#23 2.931 
#23 2.935 Opam will be built WITH its default built-in solver
#23 2.935 
#23 2.935 Executables will be installed in /usr/local/bin
#23 2.935 Manual pages will be installed in /usr/local/share/man
#23 2.936 
#23 2.936 Downloading vendored source dependencies...
#23 2.979  * Downloading dune-local...
#23 3.440  * Downloading cppo...
#23 3.825  * Downloading base64...
#23 4.313  * Downloading extlib...
#23 4.630  * Downloading re...
#23 4.938  * Downloading cmdliner...
#23 5.118  * Downloading ocamlgraph...
#23 5.623  * Downloading cudf...
#23 5.975  * Downloading dose3...
#23 6.376  * Downloading opam-file-format...
#23 6.840  * Downloading seq...
#23 7.456  * Downloading stdlib-shims...
#23 7.780  * Downloading spdx_licenses...
#23 8.328  * Downloading opam-0install-cudf...
#23 8.816  * Downloading 0install-solver...
#23 9.192  * Downloading uutf...
#23 9.359  * Downloading jsonm...
#23 9.521  * Downloading sha...
#23 10.07  * Downloading swhid_core...
#23 10.66  * Downloading mccs...
#23 11.48 done
#23 11.48 Extracting vendored source dependencies in src_ext/... done
#23 12.51 make -j -C src_ext lib-ext
#23 12.51 make[1]: Entering directory '/tmp/opam-build-master/src_ext'
#23 12.54 NOTE: make lib-ext is no longer required
#23 12.54 make[1]: Leaving directory '/tmp/opam-build-master/src_ext'
#23 12.54 cd src_ext/dune-local && ocaml bootstrap.ml
#23 12.61 ocamlc -output-complete-exe -w -24 -g -o .duneboot.exe -I boot unix.cma boot/libs.ml boot/duneboot.ml
#23 13.14 ./.duneboot.exe
#23 25.84 

src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install opam.install
#23 28.33 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#23 28.33 lp_solver.cpp:145:53: warning: '%s' directive writing up to 255 bytes into a region of size between 239 and 1004 [-Wformat-overflow=]
#23 28.33   145 |       sprintf(command, "cat %s >> %s && %s %s | tee %s",
#23 28.33       |                                                     ^~
#23 28.33 In file included from /usr/include/stdio.h:906,
#23 28.33                  from lp_solver.cpp:8:
#23 28.33 In function 'int sprintf(char*, const char*, ...)',
#23 28.33     inlined from 'virtual int lp_solver::solve()' at lp_solver.cpp:145:14:
#23 28.33 /usr/include/aarch64-linux-gnu/bits/stdio2.h:30:34: note: '__builtin___sprintf_chk' output 21 or more bytes (assuming 1041) into a destination of size 1024
#23 28.33    30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#23 28.33       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.33    31 |                                   __glibc_objsize (__s), __fmt,
#23 28.33       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.33    32 |                                   __va_arg_pack ());
#23 28.33       |                                   ~~~~~~~~~~~~~~~~~
#23 28.33 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#23 28.33 lp_solver.cpp:141:47: warning: '%s' directive writing up to 255 bytes into a region of size between 245 and 1010 [-Wformat-overflow=]
#23 28.33   141 |       sprintf(command, "cat %s >> %s; %s %s > %s 2> /dev/null",
#23 28.33       |                                               ^~
#23 28.33 In function 'int sprintf(char*, const char*, ...)',
#23 28.33     inlined from 'virtual int lp_solver::solve()' at lp_solver.cpp:141:14:
#23 28.33 /usr/include/aarch64-linux-gnu/bits/stdio2.h:30:34: note: '__builtin___sprintf_chk' output 28 or more bytes (assuming 1048) into a destination of size 1024
#23 28.33    30 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#23 28.33       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.33    31 |                                   __glibc_objsize (__s), __fmt,
#23 28.33       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.33    32 |                                   __va_arg_pack ());
#23 28.33       |                                   ~~~~~~~~~~~~~~~~~
#23 38.30 sed -f process.sed opam.install > processed-opam.install
#23 38.30 src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install
#23 38.70 sed -f process.sed opam-installer.install > processed-opam-installer.install
#23 DONE 39.1s

#24 [stage-1  7/36] COPY --from=0 [ /usr/local/bin/opam-2.0, /usr/bin/opam-2.0 ]
#24 sha256:8abb28af32715a5bb84a541d30009324c13c458930d6ee61ca60a70c32ce1649
#24 DONE 0.1s

#25 [stage-1  8/36] RUN ln /usr/bin/opam-2.0 /usr/bin/opam
#25 sha256:4c85437b66742616f4479159d11db566a45845c607296d5eaf00da7b00c67033
#25 DONE 0.4s

#26 [stage-1  9/36] COPY --from=0 [ /usr/local/bin/opam-2.1, /usr/bin/opam-2.1 ]
#26 sha256:faf1a2f721d37d043b61a21e7ac7c238a8f6acbf5c550a7d90a0620055d8e52a
#26 DONE 0.1s

#27 [stage-1 10/36] COPY --from=0 [ /usr/local/bin/opam-master, /usr/bin/opam-dev ]
#27 sha256:55219185ff94de19e42f5cbe28f7ca0c144800df1bc8f019569d8934137bdff2
#27 DONE 0.2s

#28 [stage-1 11/36] RUN ln /usr/bin/opam-dev /usr/bin/opam-2.2
#28 sha256:e81fec4e2b06516c1ffb90b607a6d7a70b553502023b78c5eea8135f727e8807
#28 DONE 0.4s

#29 [stage-1 12/36] RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
#29 sha256:c97f518ac12ebb31f7dcd61ff33ba898e3a04e3d1673e378aa11039b7818e006
#29 DONE 0.5s

#31 [stage-1 13/36] COPY <<-EOF /etc/sudoers.d/opam
#31 sha256:1bfa7c13b5550c2f1e1903a75d99900d05b380ecdf6689d69f573b5b630fa030
#31 DONE 0.1s

#32 [stage-1 14/36] RUN chmod 440 /etc/sudoers.d/opam
#32 sha256:6700a19a3698a0e74ed2f3c0c469ff3f385a63208a18b63679d19fc39db684e7
#32 DONE 0.4s

#33 [stage-1 15/36] RUN chown root:root /etc/sudoers.d/opam
#33 sha256:a37975a6e077e6ae623f40ea3fbcd074abb9a175e9e8ac1e99d945569390708a
#33 DONE 0.4s

#34 [stage-1 16/36] RUN adduser --uid 1000 --disabled-password --gecos '' opam
#34 sha256:95c6a78938efd07ec68b63527f7e2807234b0184232c0e74d360b369aa9d9cdf
#34 0.457 Adding user `opam' ...
#34 0.457 Adding new group `opam' (1000) ...
#34 0.464 Adding new user `opam' (1000) with group `opam' ...
#34 0.479 Creating home directory `/home/opam' ...
#34 0.481 Copying files from `/etc/skel' ...
#34 DONE 0.6s

#35 [stage-1 17/36] RUN passwd -l opam
#35 sha256:3371be5c0a4ff8e651da1c967ee290c7d38dc3426b2ee71fb457f53906d6b440
#35 0.298 passwd: password changed.
#35 DONE 0.3s

#36 [stage-1 18/36] RUN chown -R opam:opam /home/opam
#36 sha256:865c86ad236091f35991d3a56d8d3a78037eb42093747367d4905a9ba9035f11
#36 DONE 0.4s

#37 [stage-1 19/36] WORKDIR /home/opam
#37 sha256:ac328052a65e139fe42cf30e6c4922cea0faf07a9792bac43226bd4efaa6c94c
#37 DONE 0.1s

#38 [stage-1 20/36] RUN mkdir .ssh
#38 sha256:85edc2f4d5e8f1b97f2713f509feb13c39227917da4246f2fcd507bd21f2aaca
#38 DONE 0.3s

#39 [stage-1 21/36] RUN chmod 700 .ssh
#39 sha256:1c018863f992bfe2bfaf157b0cbeda9f72569152712ba688a3fce47e8a60734d
#39 DONE 0.4s

#41 [stage-1 22/36] COPY --chown=opam <<-EOF /home/opam/.opamrc-nosandbox
#41 sha256:842f546b8cfceadb58baf7bc89ac6abea906638b57cf838d8d3894ad199b0813
#41 DONE 0.1s

#43 [stage-1 23/36] COPY --chown=opam <<-EOF /home/opam/opam-sandbox-disable
#43 sha256:06ee0ca561eeea47f48ee67394ad4bc72cc443d01687ded25f655e904922cbb7
#43 DONE 0.1s

#44 [stage-1 24/36] RUN chmod a+x /home/opam/opam-sandbox-disable
#44 sha256:7b48c52b612069b4e21b421fd06aadaf601a01808e7ce0c7cb0b497965882176
#44 DONE 0.4s

#45 [stage-1 25/36] RUN sudo mv /home/opam/opam-sandbox-disable /usr/bin/opam-sandbox-disable
#45 sha256:a7dd83b9073c8aabfbc60f989f68b140192c78ac62b38b7ee85f969db38a59ea
#45 DONE 0.4s

#47 [stage-1 26/36] COPY --chown=opam <<-EOF /home/opam/.opamrc-sandbox
#47 sha256:35a15f57ae16434644c32d38ffca1ac3646f30be26a880d28bddc434f13b7ad2
#47 DONE 0.1s

#49 [stage-1 27/36] COPY --chown=opam <<-EOF /home/opam/opam-sandbox-enable
#49 sha256:4ae431b6117d5dec6a2c4edadd2535cfc2c501676102799b7108772f625894b9
#49 DONE 0.1s

#50 [stage-1 28/36] RUN chmod a+x /home/opam/opam-sandbox-enable
#50 sha256:291aeef0b88f404ade7cfd6e54f255365cde8ab109b18ddf9242bc77b4cb72cc
#50 DONE 0.3s

#51 [stage-1 29/36] RUN sudo mv /home/opam/opam-sandbox-enable /usr/bin/opam-sandbox-enable
#51 sha256:42e46e4054916d8ce4c274bdd3d6c2bb46c4487f110416f8d9e179216ef1d65c
#51 DONE 0.4s

#52 [stage-1 30/36] RUN git config --global user.email "docker@example.com"
#52 sha256:3abed5e4085c3db269326b915bfef515857dbf249309cd82c26bf5eb22dfc5bd
#52 DONE 0.4s

#53 [stage-1 31/36] RUN git config --global user.name "Docker"
#53 sha256:01f9a02e32fc20d6655a75c44f1b68c41b6cff4a69e01acc585bd89dd1ac1494
#53 DONE 0.5s

#55 [stage-1 32/36] COPY --link --chown=opam:opam [ ., /home/opam/opam-repository ]
#55 sha256:a0623fe8ed333838200405f57147ad1f47f83692fa1947b7dc3c98822ebeae34
#55 DONE 10.9s

#56 [stage-1 33/36] RUN opam-sandbox-disable
#56 sha256:6d1273d7401d058943a27cbca982d3cbb381285d9d4086e8eb789b81110f50d4
#56 0.326 --- opam sandboxing disabled
#56 DONE 0.4s

#57 [stage-1 34/36] RUN opam init -k local -a /home/opam/opam-repository --bare
#57 sha256:e3000d84e430c35bfb96a839dae97cf02dbd89c59fa864e08e423febd8323039
#57 0.406 [NOTE] Will configure from /home/opam/.opamrc and then from built-in defaults.
#57 0.411 Checking for available remotes: rsync and local, git.
#57 0.416   - you won't be able to use mercurial repositories unless you install the hg command on your system.
#57 0.416   - you won't be able to use darcs repositories unless you install the darcs command on your system.
#57 0.416 
#57 0.418 [WARNING] Recommended dependencies -- most packages rely on these:
#57 0.418   - m4
#57 0.428 
#57 0.428 <><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
#57 9.032 [default] Initialised
#57 9.032 default (at file:///home/opam/opam-repository): 
#57 9.032     [INFO] opam 2.1 includes many performance improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
#57 9.032 
#57 18.09 
#57 18.09 User configuration:
#57 18.09   Updating ~/.profile.
#57 18.09 [NOTE] Make sure that ~/.profile is well sourced in your ~/.bashrc.
#57 18.09 
#57 DONE 19.4s

#58 [stage-1 35/36] RUN rm -rf .opam/repo/default/.git
#58 sha256:ec5305c2c3903652cb85f50998043dc913da5ad8f13623d7d933ad308fb391cc
#58 DONE 6.8s

#59 [stage-1 36/36] COPY --link [ Dockerfile, /Dockerfile.opam ]
#59 sha256:f6fea9bedad3ceabc794273aa873812911e388693e19de6279fdf82c77c4cba2
#59 DONE 0.2s

#60 exporting to image
#60 sha256:e8c613e07b0b7ff33893b694f7759a10d42e180f2b4dc349fb57dc6b71dcab00
#60 exporting layers
#60 exporting layers 9.5s done
#60 writing image sha256:ed5cca717784d5d106578a6ff662e84afcc9d35fddfd096dc203df88e1d5d7a8 done
#60 DONE 9.5s
Pushing "sha256:ba5969932e69e53e2071c470935fd5c527fd71a19743a117ba802725d7bc9331" to "ocurrent/opam-staging:ubuntu-22.10-opam-arm64" as user "ocurrentbuilder"
Login Succeeded
The push refers to repository [docker.io/ocurrent/opam-staging]
9c461617ed05: Preparing
9c461617ed05: Pushed
ubuntu-22.10-opam-arm64: digest: sha256:527c21a10887082e011946ab2cc271bb722c81688437275731ddd97a35cbcadd size: 530
Job succeeded
2023-03-24 12:11.17: Job succeeded