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

Dockerfile:

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

2023-03-24 13:10.35: Using cache hint "opam-ubuntu-22.04"
2023-03-24 13:10.35: Waiting for resource in pool OCluster
2023-03-24 13:10.35: Waiting for worker…
2023-03-24 13:10.35: Got resource from pool OCluster
Building on okypous.ocamllabs.io
All commits already cached
Updating files:  66% (19665/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
#2 [internal] load .dockerignore
#2 sha256:376fd79291ab0fd644b231bb6ea649fefcd50418baa552b7e85553c6647ddfc8
#2 transferring context: 2B done
#2 DONE 0.2s

#1 [internal] load build definition from Dockerfile
#1 sha256:76aaee963c503c3d0fe933ec2115616b65e44b6068bd4e332b0601af74d602c8
#1 transferring dockerfile: 4.50kB done
#1 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 resolve docker.io/docker/dockerfile:1@sha256:39b85bbfa7536a5feceb7372a0817649ecb2724562a38360f4d6a7782a409b14 done
#4 sha256:7f44e51970d0422c2cbff3b20b6b5ef861f6244c396a06e1a96f7aa4fa83a4e6 482B / 482B done
#4 sha256:a28edb2041b8f23c38382d8be273f0239f51ff1f510f98bccc8d0e7f42249e97 2.90kB / 2.90kB done
#4 sha256:9d0cd65540a143ce38aa0be7c5e9efeed30d3580d03667f107cd76354f2bee65 0B / 10.82MB 0.1s
#4 sha256:39b85bbfa7536a5feceb7372a0817649ecb2724562a38360f4d6a7782a409b14 8.40kB / 8.40kB done
#4 sha256:9d0cd65540a143ce38aa0be7c5e9efeed30d3580d03667f107cd76354f2bee65 1.05MB / 10.82MB 0.2s
#4 sha256:9d0cd65540a143ce38aa0be7c5e9efeed30d3580d03667f107cd76354f2bee65 3.15MB / 10.82MB 0.3s
#4 sha256:9d0cd65540a143ce38aa0be7c5e9efeed30d3580d03667f107cd76354f2bee65 10.82MB / 10.82MB 0.4s done
#4 extracting sha256:9d0cd65540a143ce38aa0be7c5e9efeed30d3580d03667f107cd76354f2bee65
#4 extracting sha256:9d0cd65540a143ce38aa0be7c5e9efeed30d3580d03667f107cd76354f2bee65 0.3s done
#4 DONE 0.8s

#6 [internal] load build definition from Dockerfile
#6 sha256:2c5d7bf59b505731717b3387d1e867c820df9122d087402c85457f976a7c41fc
#6 DONE 0.0s

#5 [internal] load .dockerignore
#5 sha256:f4b87dfe944b9f310d58867229549e09524ee746bef87ebc26c356825640d5f9
#5 DONE 0.0s

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21
#8 sha256:f9040e63d81205424a15d23d0a2c2de05006baa1f2bd01ee19e364fa8c18418e
#8 resolve docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21 done
#8 sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21 1.13kB / 1.13kB done
#8 sha256:537da24818633b45fcb65e5285a68c3ec1f3db25f5ae5476a7757bc8dfae92a3 424B / 424B done
#8 sha256:bab8ce5c00ca3ef91e0d3eb4c6e6d6ec7cffa9574c447fd8d54a8d96e7c1c80e 2.32kB / 2.32kB done
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 0B / 27.35MB 0.1s
#8 ...

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21
#8 sha256:f9040e63d81205424a15d23d0a2c2de05006baa1f2bd01ee19e364fa8c18418e
#8 ...

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

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21
#8 sha256:f9040e63d81205424a15d23d0a2c2de05006baa1f2bd01ee19e364fa8c18418e
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 5.24MB / 27.35MB 0.3s
#8 ...

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

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21
#8 sha256:f9040e63d81205424a15d23d0a2c2de05006baa1f2bd01ee19e364fa8c18418e
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 20.97MB / 27.35MB 0.5s
#8 ...

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

#8 [stage-0  1/10] FROM docker.io/library/ubuntu:jammy@sha256:67211c14fa74f070d27cc59d69a7fa9aeff8e28ea118ef3babc295a0428a6d21
#8 sha256:f9040e63d81205424a15d23d0a2c2de05006baa1f2bd01ee19e364fa8c18418e
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 27.35MB / 27.35MB 0.6s
#8 sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 27.35MB / 27.35MB 0.6s done
#8 extracting sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38
#8 extracting sha256:cd741b12a7eaa64357041c2d3f4590c898313a7f8f65cd1577594e6ee03a8c38 1.2s done
#8 DONE 2.0s

#54 [internal] load build context
#54 sha256:8de43aa378e35a544b6e9e61627db1067868c6a4d52a8227fe21d1bc9d2d785e
#54 transferring context: 12.57MB 2.1s
#54 ...

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

#54 [internal] load build context
#54 sha256:8de43aa378e35a544b6e9e61627db1067868c6a4d52a8227fe21d1bc9d2d785e
#54 ...

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

#54 [internal] load build context
#54 sha256:8de43aa378e35a544b6e9e61627db1067868c6a4d52a8227fe21d1bc9d2d785e
#54 ...

#15 [stage-0  2/10] RUN apt-get -y update
#15 sha256:52240e3eeb959ca841bd9c5e732e9a59fa04e06365c08dd1671b7f22ea09874c
#15 0.529 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy InRelease [270 kB]
#15 0.571 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy-updates InRelease [119 kB]
#15 0.579 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy-backports InRelease [107 kB]
#15 0.621 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy-security InRelease [110 kB]
#15 0.729 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy/multiverse arm64 Packages [224 kB]
#15 0.759 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages [1758 kB]
#15 0.820 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy/restricted arm64 Packages [24.2 kB]
#15 0.821 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy/universe arm64 Packages [17.2 MB]
#15 1.126 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/multiverse arm64 Packages [14.3 kB]
#15 1.127 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy-updates/restricted arm64 Packages [384 kB]
#15 1.144 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 Packages [1074 kB]
#15 1.168 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy-updates/universe arm64 Packages [1004 kB]
#15 1.272 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy-backports/universe arm64 Packages [22.4 kB]
#15 1.273 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy-backports/main arm64 Packages [49.0 kB]
#15 1.275 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy-security/restricted arm64 Packages [371 kB]
#15 1.293 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy-security/multiverse arm64 Packages [10.2 kB]
#15 1.293 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-security/universe arm64 Packages [765 kB]
#15 1.340 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 Packages [753 kB]
#15 1.872 Fetched 24.3 MB in 1s (17.3 MB/s)
#15 1.872 Reading package lists...
#15 DONE 2.9s

#54 [internal] load build context
#54 sha256:8de43aa378e35a544b6e9e61627db1067868c6a4d52a8227fe21d1bc9d2d785e
#54 ...

#12 [stage-1  4/36] RUN apt-get -y update
#12 sha256:1dfd95ef79c18eb2f8963c2d894714c6e2061e413e4ab290b8de30226aeb9903
#12 0.470 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy InRelease [270 kB]
#12 0.515 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy-updates InRelease [119 kB]
#12 0.525 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy-backports InRelease [107 kB]
#12 0.536 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy-security InRelease [110 kB]
#12 0.663 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy/multiverse arm64 Packages [224 kB]
#12 0.682 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 Packages [1758 kB]
#12 0.718 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy/universe arm64 Packages [17.2 MB]
#12 0.958 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy/restricted arm64 Packages [24.2 kB]
#12 0.967 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/multiverse arm64 Packages [14.3 kB]
#12 0.968 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy-updates/universe arm64 Packages [1004 kB]
#12 0.978 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy-updates/restricted arm64 Packages [384 kB]
#12 0.997 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 Packages [1074 kB]
#12 1.063 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy-backports/universe arm64 Packages [22.4 kB]
#12 1.064 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy-backports/main arm64 Packages [49.0 kB]
#12 1.070 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy-security/multiverse arm64 Packages [10.2 kB]
#12 1.070 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy-security/restricted arm64 Packages [371 kB]
#12 1.089 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-security/universe arm64 Packages [765 kB]
#12 1.097 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy-security/main arm64 Packages [753 kB]
#12 1.714 Fetched 24.3 MB in 1s (19.1 MB/s)
#12 1.714 Reading package lists...
#12 DONE 2.6s

#54 [internal] load build context
#54 sha256:8de43aa378e35a544b6e9e61627db1067868c6a4d52a8227fe21d1bc9d2d785e
#54 ...

#16 [stage-0  3/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
#16 sha256:f27817c2f5b347dd5e2aff7ba6633d334785937dfd15f34ce253a18e72dffc08
#16 0.470 Reading package lists...
#16 1.156 Building dependency tree...
#16 1.324 Reading state information...
#16 1.353 Calculating upgrade...
#16 1.565 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#16 DONE 1.8s

#54 [internal] load build context
#54 sha256:8de43aa378e35a544b6e9e61627db1067868c6a4d52a8227fe21d1bc9d2d785e
#54 transferring context: 199.87MB 7.2s
#54 ...

#13 [stage-1  5/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
#13 sha256:a38c7d557385e98ac4fd3d69894bb0cf88dfca1d955b3a6c582ddc63e8aa0c24
#13 0.507 Reading package lists...
#13 1.179 Building dependency tree...
#13 1.356 Reading state information...
#13 1.387 Calculating upgrade...
#13 1.602 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
#13 DONE 1.8s

#54 [internal] load build context
#54 sha256:8de43aa378e35a544b6e9e61627db1067868c6a4d52a8227fe21d1bc9d2d785e
#54 transferring context: 240.61MB 11.3s done
#54 DONE 12.2s

#14 [stage-1  6/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
#14 sha256:a8ae30d2a784d075ecc5cf19dc50c3bb664056e2f02b54e3ad85dd92af04bb6f
#14 0.431 Reading package lists...
#14 1.120 Building dependency tree...
#14 1.278 Reading state information...
#14 1.467 The following additional packages will be installed:
#14 1.467   binutils binutils-aarch64-linux-gnu binutils-common bzip2 ca-certificates
#14 1.467   cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config fonts-dejavu-core g++
#14 1.468   g++-11 gcc gcc-11 gcc-11-base git-man gnupg gnupg-l10n gnupg-utils gpg
#14 1.468   gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm less
#14 1.468   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
#14 1.468   libasan6 libassuan0 libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin
#14 1.468   libc-devtools libc6-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0
#14 1.468   libctf0 libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2
#14 1.468   liberror-perl libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl
#14 1.468   libfontconfig1 libfreetype6 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6
#14 1.468   libgomp1 libhwasan0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8
#14 1.468   libksba8 libldap-2.5-0 libldap-common liblocale-gettext-perl liblsan0 libmd0
#14 1.468   libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16
#14 1.468   libpopt0 libpsl5 libpthread-stubs0-dev libreadline8 librtmp1 libsasl2-2
#14 1.468   libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev
#14 1.468   libtiff5 libtirpc-dev libtsan0 libubsan1 libwebp7 libx11-6 libx11-data
#14 1.468   libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxext6
#14 1.468   libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages manpages-dev
#14 1.468   netbase openssh-client openssl patch perl perl-modules-5.34 pinentry-curses
#14 1.469   publicsuffix readline-common rpcsvc-proto ucf x11proto-dev xauth
#14 1.469   xorg-sgml-doctools xtrans-dev xz-utils
#14 1.470 Suggested packages:
#14 1.470   binutils-doc bzip2-doc cpp-doc gcc-11-locales dbus-user-session
#14 1.470   libpam-systemd pinentry-gnome3 tor debian-keyring gcc-11-doc gcc-multilib
#14 1.470   autoconf automake libtool flex bison gdb gcc-doc gettext-base git-daemon-run
#14 1.470   | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs
#14 1.470   git-mediawiki git-svn parcimonie xloadimage scdaemon glibc-doc bzr
#14 1.470   libgd-tools gdbm-l10n libsasl2-modules-gssapi-mit
#14 1.470   | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
#14 1.470   libsasl2-modules-sql libstdc++-11-doc libx11-doc libxcb-doc make-doc
#14 1.470   man-browser hunspell keychain libpam-ssh monkeysphere ssh-askpass ed
#14 1.470   diffutils-doc perl-doc libterm-readline-gnu-perl
#14 1.470   | libterm-readline-perl-perl libtap-harness-archive-perl pinentry-doc
#14 1.470   readline-doc openssh-server python3 python3-braceexpand zip
#14 1.633 The following NEW packages will be installed:
#14 1.633   binutils binutils-aarch64-linux-gnu binutils-common bubblewrap
#14 1.633   build-essential bzip2 ca-certificates cpp cpp-11 curl dirmngr dpkg-dev
#14 1.633   fakeroot fontconfig-config fonts-dejavu-core g++ g++-11 gcc gcc-11
#14 1.633   gcc-11-base git git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent
#14 1.633   gpg-wks-client gpg-wks-server gpgconf gpgsm less libalgorithm-diff-perl
#14 1.633   libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan6 libassuan0
#14 1.633   libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin libc-devtools
#14 1.633   libc6-dev libcap-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0
#14 1.633   libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2 liberror-perl
#14 1.633   libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl libfontconfig1
#14 1.633   libfreetype6 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1
#14 1.633   libhwasan0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libksba8
#14 1.633   libldap-2.5-0 libldap-common liblocale-gettext-perl liblsan0 libmd0 libmpc3
#14 1.633   libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16 libpopt0
#14 1.634   libpsl5 libpthread-stubs0-dev libreadline8 librtmp1 libsasl2-2
#14 1.634   libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev
#14 1.634   libtiff5 libtirpc-dev libtsan0 libubsan1 libwebp7 libx11-6 libx11-data
#14 1.634   libx11-dev libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6
#14 1.634   libxext6 libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages
#14 1.634   manpages-dev nano netbase openssh-client openssl patch perl
#14 1.634   perl-modules-5.34 pinentry-curses publicsuffix readline-common rpcsvc-proto
#14 1.634   rsync sudo ucf unzip x11proto-dev xauth xorg-sgml-doctools xtrans-dev
#14 1.634   xz-utils
#14 1.684 0 upgraded, 139 newly installed, 0 to remove and 0 not upgraded.
#14 1.684 Need to get 92.3 MB of archives.
#14 1.684 After this operation, 319 MB of additional disk space will be used.
#14 1.684 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liblocale-gettext-perl arm64 1.07-4build3 [16.9 kB]
#14 1.709 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpopt0 arm64 1.18-3build1 [28.0 kB]
#14 1.717 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 rsync arm64 3.2.7-0ubuntu0.22.04.2 [429 kB]
#14 1.747 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl-modules-5.34 all 5.34.0-3ubuntu1.1 [2976 kB]
#14 1.826 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm6 arm64 1.23-1 [34.1 kB]
#14 1.826 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm-compat4 arm64 1.23-1 [6294 B]
#14 1.827 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libperl5.34 arm64 5.34.0-3ubuntu1.1 [4723 kB]
#14 1.933 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl arm64 5.34.0-3ubuntu1.1 [232 kB]
#14 1.935 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssl arm64 3.0.2-0ubuntu1.8 [1161 kB]
#14 1.945 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 ca-certificates all 20211016ubuntu0.22.04.1 [144 kB]
#14 1.947 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 less arm64 590-1ubuntu0.22.04.1 [142 kB]
#14 1.962 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmd0 arm64 1.0.4-1build1 [23.8 kB]
#14 1.979 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbsd0 arm64 0.11.5-1 [43.7 kB]
#14 1.986 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libexpat1 arm64 2.4.7-1ubuntu0.2 [76.8 kB]
#14 1.999 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 readline-common all 8.1.2-1 [53.5 kB]
#14 2.000 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libreadline8 arm64 8.1.2-1 [153 kB]
#14 2.009 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsqlite3-0 arm64 3.37.2-2ubuntu0.1 [636 kB]
#14 2.027 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 netbase all 6.3 [12.9 kB]
#14 2.027 Get:19 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 sudo arm64 1.9.9-1ubuntu2.3 [806 kB]
#14 2.051 Get:20 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 ucf all 3.0043 [56.1 kB]
#14 2.052 Get:21 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcbor0.8 arm64 0.8.0-2ubuntu1 [24.3 kB]
#14 2.053 Get:22 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libedit2 arm64 3.1-20210910-1build1 [96.0 kB]
#14 2.068 Get:23 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfido2-1 arm64 1.10.0-1 [81.8 kB]
#14 2.106 Get:24 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnghttp2-14 arm64 1.43.0-1build3 [75.4 kB]
#14 2.106 Get:25 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpng16-16 arm64 1.6.37-3build5 [189 kB]
#14 2.110 Get:26 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpsl5 arm64 0.21.0-1.2build2 [58.3 kB]
#14 2.112 Get:27 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxau6 arm64 1:1.0.9-1build5 [7624 B]
#14 2.113 Get:28 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxdmcp6 arm64 1:1.1.3-0ubuntu5 [10.8 kB]
#14 2.113 Get:29 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxcb1 arm64 1.14-3ubuntu3 [49.0 kB]
#14 2.114 Get:30 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-data all 2:1.7.5-1 [119 kB]
#14 2.119 Get:31 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-6 arm64 2:1.7.5-1 [661 kB]
#14 2.146 Get:32 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxext6 arm64 2:1.3.4-1build1 [31.1 kB]
#14 2.150 Get:33 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxmuu1 arm64 2:1.1.3-3 [10.4 kB]
#14 2.165 Get:34 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages all 5.10-1ubuntu1 [1375 kB]
#14 2.272 Get:35 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 nano arm64 6.2-1 [277 kB]
#14 2.366 Get:36 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssh-client arm64 1:8.9p1-3ubuntu0.1 [866 kB]
#14 2.387 Get:37 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 publicsuffix all 20211207.1025-1 [129 kB]
#14 2.388 Get:38 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xauth arm64 1:1.1-1build2 [26.8 kB]
#14 2.389 Get:39 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xz-utils arm64 5.2.5-2ubuntu1 [84.4 kB]
#14 2.389 Get:40 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-common arm64 2.38-4ubuntu2.1 [221 kB]
#14 2.392 Get:41 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libbinutils arm64 2.38-4ubuntu2.1 [825 kB]
#14 2.401 Get:42 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf-nobfd0 arm64 2.38-4ubuntu2.1 [107 kB]
#14 2.402 Get:43 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf0 arm64 2.38-4ubuntu2.1 [103 kB]
#14 2.474 Get:44 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.38-4ubuntu2.1 [3229 kB]
#14 2.536 Get:45 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils arm64 2.38-4ubuntu2.1 [3166 B]
#14 2.544 Get:46 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 bubblewrap arm64 0.6.1-1 [45.5 kB]
#14 2.556 Get:47 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-dev-bin arm64 2.35-0ubuntu3.1 [19.6 kB]
#14 2.560 Get:48 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 linux-libc-dev arm64 5.15.0-67.74 [1305 kB]
#14 2.640 Get:49 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcrypt-dev arm64 1:4.4.27-1 [119 kB]
#14 2.642 Get:50 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 rpcsvc-proto arm64 1.4.2-0ubuntu6 [65.4 kB]
#14 2.643 Get:51 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtirpc-dev arm64 1.3.2-2ubuntu0.1 [199 kB]
#14 2.645 Get:52 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnsl-dev arm64 1.3.0-2build2 [72.1 kB]
#14 2.646 Get:53 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc6-dev arm64 2.35-0ubuntu3.1 [1544 kB]
#14 2.699 Get:54 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11-base arm64 11.3.0-1ubuntu1~22.04 [20.8 kB]
#14 2.700 Get:55 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libisl23 arm64 0.24-2build1 [689 kB]
#14 2.755 Get:56 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpfr6 arm64 4.1.0-3build3 [245 kB]
#14 2.804 Get:57 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpc3 arm64 1.2.1-2build1 [48.1 kB]
#14 2.818 Get:58 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 cpp-11 arm64 11.3.0-1ubuntu1~22.04 [9709 kB]
#14 2.968 Get:59 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 cpp arm64 4:11.2.0-1ubuntu1 [27.7 kB]
#14 2.983 Get:60 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcc1-0 arm64 12.1.0-2ubuntu1~22.04 [45.0 kB]
#14 2.984 Get:61 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgomp1 arm64 12.1.0-2ubuntu1~22.04 [124 kB]
#14 2.987 Get:62 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libitm1 arm64 12.1.0-2ubuntu1~22.04 [28.4 kB]
#14 2.988 Get:63 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libatomic1 arm64 12.1.0-2ubuntu1~22.04 [10.8 kB]
#14 2.989 Get:64 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libasan6 arm64 11.3.0-1ubuntu1~22.04 [2227 kB]
#14 3.033 Get:65 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 liblsan0 arm64 12.1.0-2ubuntu1~22.04 [1034 kB]
#14 3.041 Get:66 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtsan0 arm64 11.3.0-1ubuntu1~22.04 [2235 kB]
#14 3.155 Get:67 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libubsan1 arm64 12.1.0-2ubuntu1~22.04 [965 kB]
#14 3.256 Get:68 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libhwasan0 arm64 12.1.0-2ubuntu1~22.04 [1119 kB]
#14 3.272 Get:69 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgcc-11-dev arm64 11.3.0-1ubuntu1~22.04 [1151 kB]
#14 3.320 Get:70 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11 arm64 11.3.0-1ubuntu1~22.04 [19.4 MB]
#14 3.657 Get:71 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 gcc arm64 4:11.2.0-1ubuntu1 [5128 B]
#14 3.657 Get:72 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libstdc++-11-dev arm64 11.3.0-1ubuntu1~22.04 [2075 kB]
#14 3.688 Get:73 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 g++-11 arm64 11.3.0-1ubuntu1~22.04 [11.1 MB]
#14 3.843 Get:74 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 g++ arm64 4:11.2.0-1ubuntu1 [1394 B]
#14 3.843 Get:75 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 make arm64 4.3-4.1build1 [177 kB]
#14 3.846 Get:76 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libdpkg-perl all 1.21.1ubuntu2.1 [237 kB]
#14 3.848 Get:77 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 bzip2 arm64 1.0.8-5build1 [34.6 kB]
#14 3.862 Get:78 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 patch arm64 2.7.6-7build2 [105 kB]
#14 3.892 Get:79 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 lto-disabled-list all 24 [12.5 kB]
#14 3.892 Get:80 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dpkg-dev all 1.21.1ubuntu2.1 [922 kB]
#14 3.935 Get:81 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 build-essential arm64 12.9ubuntu3 [4740 B]
#14 3.935 Get:82 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbrotli1 arm64 1.0.9-2build6 [314 kB]
#14 3.938 Get:83 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules-db arm64 2.1.27+dfsg2-3ubuntu1.2 [21.1 kB]
#14 3.939 Get:84 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-2 arm64 2.1.27+dfsg2-3ubuntu1.2 [55.6 kB]
#14 3.939 Get:85 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-2.5-0 arm64 2.5.14+dfsg-0ubuntu0.22.04.1 [181 kB]
#14 3.941 Get:86 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 librtmp1 arm64 2.4+20151223.gitfa8646d.1-2build4 [59.2 kB]
#14 3.942 Get:87 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libssh-4 arm64 0.9.6-2build1 [184 kB]
#14 3.951 Get:88 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcurl4 arm64 7.81.0-1ubuntu1.10 [285 kB]
#14 3.974 Get:89 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 curl arm64 7.81.0-1ubuntu1.10 [190 kB]
#14 4.016 Get:90 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libassuan0 arm64 2.5.5-1build1 [36.5 kB]
#14 4.018 Get:91 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgconf arm64 2.2.27-3ubuntu2.1 [92.5 kB]
#14 4.037 Get:92 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libksba8 arm64 1.6.0-2ubuntu0.2 [117 kB]
#14 4.039 Get:93 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnpth0 arm64 1.6-3build2 [8156 B]
#14 4.040 Get:94 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dirmngr arm64 2.2.27-3ubuntu2.1 [289 kB]
#14 4.049 Get:95 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfakeroot arm64 1.28-1ubuntu1 [31.5 kB]
#14 4.050 Get:96 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fakeroot arm64 1.28-1ubuntu1 [60.5 kB]
#14 4.052 Get:97 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
#14 4.081 Get:98 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
#14 4.082 Get:99 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcurl3-gnutls arm64 7.81.0-1ubuntu1.10 [279 kB]
#14 4.100 Get:100 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liberror-perl all 0.17029-1 [26.5 kB]
#14 4.117 Get:101 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git-man all 1:2.34.1-1ubuntu1.8 [953 kB]
#14 4.153 Get:102 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git arm64 1:2.34.1-1ubuntu1.8 [3162 kB]
#14 4.210 Get:103 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-l10n all 2.2.27-3ubuntu2.1 [54.4 kB]
#14 4.210 Get:104 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-utils arm64 2.2.27-3ubuntu2.1 [304 kB]
#14 4.213 Get:105 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg arm64 2.2.27-3ubuntu2.1 [506 kB]
#14 4.217 Get:106 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 pinentry-curses arm64 1.1.1-1build2 [33.5 kB]
#14 4.218 Get:107 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-agent arm64 2.2.27-3ubuntu2.1 [204 kB]
#14 4.229 Get:108 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-client arm64 2.2.27-3ubuntu2.1 [61.4 kB]
#14 4.230 Get:109 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-server arm64 2.2.27-3ubuntu2.1 [56.8 kB]
#14 4.231 Get:110 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgsm arm64 2.2.27-3ubuntu2.1 [192 kB]
#14 4.247 Get:111 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg all 2.2.27-3ubuntu2.1 [315 kB]
#14 4.289 Get:112 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
#14 4.291 Get:113 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-xs-perl arm64 0.04-6build3 [11.7 kB]
#14 4.293 Get:114 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
#14 4.294 Get:115 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libfreetype6 arm64 2.11.1+dfsg-1ubuntu0.1 [383 kB]
#14 4.300 Get:116 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfontconfig1 arm64 2.13.1-4.2ubuntu5 [135 kB]
#14 4.302 Get:117 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg-turbo8 arm64 2.1.2-0ubuntu1 [129 kB]
#14 4.304 Get:118 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg8 arm64 8c-2ubuntu10 [2264 B]
#14 4.304 Get:119 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libdeflate0 arm64 1.10-2 [69.1 kB]
#14 4.306 Get:120 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libjbig0 arm64 2.1-3.1ubuntu0.22.04.1 [29.1 kB]
#14 4.306 Get:121 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libwebp7 arm64 1.2.2-2 [192 kB]
#14 4.324 Get:122 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtiff5 arm64 4.3.0-6ubuntu0.4 [180 kB]
#14 4.360 Get:123 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libxpm4 arm64 1:3.5.12-1ubuntu0.22.04.1 [35.3 kB]
#14 4.361 Get:124 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgd3 arm64 2.3.0-2ubuntu2 [126 kB]
#14 4.365 Get:125 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-devtools arm64 2.35-0ubuntu3.1 [27.6 kB]
#14 4.366 Get:126 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcap-dev arm64 1:2.44-1build3 [40.2 kB]
#14 4.368 Get:127 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfile-fcntllock-perl arm64 0.22-3build7 [33.7 kB]
#14 4.370 Get:128 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-common all 2.5.14+dfsg-0ubuntu0.22.04.1 [15.9 kB]
#14 4.370 Get:129 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpthread-stubs0-dev arm64 0.4-1build2 [5496 B]
#14 4.371 Get:130 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules arm64 2.1.27+dfsg2-3ubuntu1.2 [68.4 kB]
#14 4.372 Get:131 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xorg-sgml-doctools all 1:1.11-1.1 [10.9 kB]
#14 4.373 Get:132 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 x11proto-dev all 2021.5-1 [604 kB]
#14 4.404 Get:133 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxau-dev arm64 1:1.0.9-1build5 [10.1 kB]
#14 4.412 Get:134 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxdmcp-dev arm64 1:1.1.3-0ubuntu5 [26.4 kB]
#14 4.419 Get:135 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xtrans-dev all 1.4.0-1 [68.9 kB]
#14 4.428 Get:136 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxcb1-dev arm64 1.14-3ubuntu3 [90.6 kB]
#14 4.435 Get:137 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-dev arm64 2:1.7.5-1 [746 kB]
#14 4.455 Get:138 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages-dev all 5.10-1ubuntu1 [2309 kB]
#14 4.505 Get:139 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 unzip arm64 6.0-26ubuntu3.1 [171 kB]
#14 4.626 debconf: delaying package configuration, since apt-utils is not installed
#14 4.659 Fetched 92.3 MB in 3s (32.2 MB/s)
#14 4.679 Selecting previously unselected package liblocale-gettext-perl.
#14 4.679 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 4389 files and directories currently installed.)
#14 4.683 Preparing to unpack .../000-liblocale-gettext-perl_1.07-4build3_arm64.deb ...
#14 4.683 Unpacking liblocale-gettext-perl (1.07-4build3) ...
#14 4.699 Selecting previously unselected package libpopt0:arm64.
#14 4.700 Preparing to unpack .../001-libpopt0_1.18-3build1_arm64.deb ...
#14 4.701 Unpacking libpopt0:arm64 (1.18-3build1) ...
#14 4.730 Selecting previously unselected package rsync.
#14 4.731 Preparing to unpack .../002-rsync_3.2.7-0ubuntu0.22.04.2_arm64.deb ...
#14 4.732 Unpacking rsync (3.2.7-0ubuntu0.22.04.2) ...
#14 4.758 Selecting previously unselected package perl-modules-5.34.
#14 4.759 Preparing to unpack .../003-perl-modules-5.34_5.34.0-3ubuntu1.1_all.deb ...
#14 4.760 Unpacking perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#14 4.986 Selecting previously unselected package libgdbm6:arm64.
#14 4.988 Preparing to unpack .../004-libgdbm6_1.23-1_arm64.deb ...
#14 4.989 Unpacking libgdbm6:arm64 (1.23-1) ...
#14 5.003 Selecting previously unselected package libgdbm-compat4:arm64.
#14 5.004 Preparing to unpack .../005-libgdbm-compat4_1.23-1_arm64.deb ...
#14 5.004 Unpacking libgdbm-compat4:arm64 (1.23-1) ...
#14 5.020 Selecting previously unselected package libperl5.34:arm64.
#14 5.021 Preparing to unpack .../006-libperl5.34_5.34.0-3ubuntu1.1_arm64.deb ...
#14 5.021 Unpacking libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#14 5.191 Selecting previously unselected package perl.
#14 5.192 Preparing to unpack .../007-perl_5.34.0-3ubuntu1.1_arm64.deb ...
#14 5.200 Unpacking perl (5.34.0-3ubuntu1.1) ...
#14 5.224 Selecting previously unselected package openssl.
#14 5.225 Preparing to unpack .../008-openssl_3.0.2-0ubuntu1.8_arm64.deb ...
#14 5.226 Unpacking openssl (3.0.2-0ubuntu1.8) ...
#14 5.257 Selecting previously unselected package ca-certificates.
#14 5.258 Preparing to unpack .../009-ca-certificates_20211016ubuntu0.22.04.1_all.deb ...
#14 5.259 Unpacking ca-certificates (20211016ubuntu0.22.04.1) ...
#14 5.287 Selecting previously unselected package less.
#14 5.288 Preparing to unpack .../010-less_590-1ubuntu0.22.04.1_arm64.deb ...
#14 5.291 Unpacking less (590-1ubuntu0.22.04.1) ...
#14 5.310 Selecting previously unselected package libmd0:arm64.
#14 5.311 Preparing to unpack .../011-libmd0_1.0.4-1build1_arm64.deb ...
#14 5.312 Unpacking libmd0:arm64 (1.0.4-1build1) ...
#14 5.328 Selecting previously unselected package libbsd0:arm64.
#14 5.329 Preparing to unpack .../012-libbsd0_0.11.5-1_arm64.deb ...
#14 5.329 Unpacking libbsd0:arm64 (0.11.5-1) ...
#14 5.346 Selecting previously unselected package libexpat1:arm64.
#14 5.347 Preparing to unpack .../013-libexpat1_2.4.7-1ubuntu0.2_arm64.deb ...
#14 5.348 Unpacking libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#14 5.367 Selecting previously unselected package readline-common.
#14 5.368 Preparing to unpack .../014-readline-common_8.1.2-1_all.deb ...
#14 5.369 Unpacking readline-common (8.1.2-1) ...
#14 5.386 Selecting previously unselected package libreadline8:arm64.
#14 5.387 Preparing to unpack .../015-libreadline8_8.1.2-1_arm64.deb ...
#14 5.389 Unpacking libreadline8:arm64 (8.1.2-1) ...
#14 5.409 Selecting previously unselected package libsqlite3-0:arm64.
#14 5.409 Preparing to unpack .../016-libsqlite3-0_3.37.2-2ubuntu0.1_arm64.deb ...
#14 5.410 Unpacking libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#14 5.440 Selecting previously unselected package netbase.
#14 5.441 Preparing to unpack .../017-netbase_6.3_all.deb ...
#14 5.441 Unpacking netbase (6.3) ...
#14 5.459 Selecting previously unselected package sudo.
#14 5.460 Preparing to unpack .../018-sudo_1.9.9-1ubuntu2.3_arm64.deb ...
#14 5.463 Unpacking sudo (1.9.9-1ubuntu2.3) ...
#14 5.495 Selecting previously unselected package ucf.
#14 5.497 Preparing to unpack .../019-ucf_3.0043_all.deb ...
#14 5.499 Moving old data out of the way
#14 5.501 Unpacking ucf (3.0043) ...
#14 5.523 Selecting previously unselected package libcbor0.8:arm64.
#14 5.524 Preparing to unpack .../020-libcbor0.8_0.8.0-2ubuntu1_arm64.deb ...
#14 5.525 Unpacking libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#14 5.541 Selecting previously unselected package libedit2:arm64.
#14 5.542 Preparing to unpack .../021-libedit2_3.1-20210910-1build1_arm64.deb ...
#14 5.543 Unpacking libedit2:arm64 (3.1-20210910-1build1) ...
#14 5.561 Selecting previously unselected package libfido2-1:arm64.
#14 5.562 Preparing to unpack .../022-libfido2-1_1.10.0-1_arm64.deb ...
#14 5.562 Unpacking libfido2-1:arm64 (1.10.0-1) ...
#14 5.580 Selecting previously unselected package libnghttp2-14:arm64.
#14 5.581 Preparing to unpack .../023-libnghttp2-14_1.43.0-1build3_arm64.deb ...
#14 5.582 Unpacking libnghttp2-14:arm64 (1.43.0-1build3) ...
#14 5.599 Selecting previously unselected package libpng16-16:arm64.
#14 5.600 Preparing to unpack .../024-libpng16-16_1.6.37-3build5_arm64.deb ...
#14 5.601 Unpacking libpng16-16:arm64 (1.6.37-3build5) ...
#14 5.621 Selecting previously unselected package libpsl5:arm64.
#14 5.622 Preparing to unpack .../025-libpsl5_0.21.0-1.2build2_arm64.deb ...
#14 5.623 Unpacking libpsl5:arm64 (0.21.0-1.2build2) ...
#14 5.638 Selecting previously unselected package libxau6:arm64.
#14 5.639 Preparing to unpack .../026-libxau6_1%3a1.0.9-1build5_arm64.deb ...
#14 5.640 Unpacking libxau6:arm64 (1:1.0.9-1build5) ...
#14 5.655 Selecting previously unselected package libxdmcp6:arm64.
#14 5.656 Preparing to unpack .../027-libxdmcp6_1%3a1.1.3-0ubuntu5_arm64.deb ...
#14 5.657 Unpacking libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#14 5.675 Selecting previously unselected package libxcb1:arm64.
#14 5.676 Preparing to unpack .../028-libxcb1_1.14-3ubuntu3_arm64.deb ...
#14 5.677 Unpacking libxcb1:arm64 (1.14-3ubuntu3) ...
#14 5.694 Selecting previously unselected package libx11-data.
#14 5.696 Preparing to unpack .../029-libx11-data_2%3a1.7.5-1_all.deb ...
#14 5.696 Unpacking libx11-data (2:1.7.5-1) ...
#14 5.744 Selecting previously unselected package libx11-6:arm64.
#14 5.745 Preparing to unpack .../030-libx11-6_2%3a1.7.5-1_arm64.deb ...
#14 5.746 Unpacking libx11-6:arm64 (2:1.7.5-1) ...
#14 5.782 Selecting previously unselected package libxext6:arm64.
#14 5.782 Preparing to unpack .../031-libxext6_2%3a1.3.4-1build1_arm64.deb ...
#14 5.786 Unpacking libxext6:arm64 (2:1.3.4-1build1) ...
#14 5.834 Selecting previously unselected package libxmuu1:arm64.
#14 5.855 Preparing to unpack .../032-libxmuu1_2%3a1.1.3-3_arm64.deb ...
#14 5.871 Unpacking libxmuu1:arm64 (2:1.1.3-3) ...
#14 5.883 Selecting previously unselected package manpages.
#14 5.885 Preparing to unpack .../033-manpages_5.10-1ubuntu1_all.deb ...
#14 5.886 Unpacking manpages (5.10-1ubuntu1) ...
#14 5.967 Selecting previously unselected package nano.
#14 5.968 Preparing to unpack .../034-nano_6.2-1_arm64.deb ...
#14 5.969 Unpacking nano (6.2-1) ...
#14 5.994 Selecting previously unselected package openssh-client.
#14 5.995 Preparing to unpack .../035-openssh-client_1%3a8.9p1-3ubuntu0.1_arm64.deb ...
#14 6.003 Unpacking openssh-client (1:8.9p1-3ubuntu0.1) ...
#14 6.039 Selecting previously unselected package publicsuffix.
#14 6.040 Preparing to unpack .../036-publicsuffix_20211207.1025-1_all.deb ...
#14 6.041 Unpacking publicsuffix (20211207.1025-1) ...
#14 6.059 Selecting previously unselected package xauth.
#14 6.060 Preparing to unpack .../037-xauth_1%3a1.1-1build2_arm64.deb ...
#14 6.060 Unpacking xauth (1:1.1-1build2) ...
#14 6.076 Selecting previously unselected package xz-utils.
#14 6.077 Preparing to unpack .../038-xz-utils_5.2.5-2ubuntu1_arm64.deb ...
#14 6.078 Unpacking xz-utils (5.2.5-2ubuntu1) ...
#14 6.094 Selecting previously unselected package binutils-common:arm64.
#14 6.096 Preparing to unpack .../039-binutils-common_2.38-4ubuntu2.1_arm64.deb ...
#14 6.096 Unpacking binutils-common:arm64 (2.38-4ubuntu2.1) ...
#14 6.113 Selecting previously unselected package libbinutils:arm64.
#14 6.114 Preparing to unpack .../040-libbinutils_2.38-4ubuntu2.1_arm64.deb ...
#14 6.115 Unpacking libbinutils:arm64 (2.38-4ubuntu2.1) ...
#14 6.148 Selecting previously unselected package libctf-nobfd0:arm64.
#14 6.149 Preparing to unpack .../041-libctf-nobfd0_2.38-4ubuntu2.1_arm64.deb ...
#14 6.150 Unpacking libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#14 6.167 Selecting previously unselected package libctf0:arm64.
#14 6.168 Preparing to unpack .../042-libctf0_2.38-4ubuntu2.1_arm64.deb ...
#14 6.169 Unpacking libctf0:arm64 (2.38-4ubuntu2.1) ...
#14 6.182 Selecting previously unselected package binutils-aarch64-linux-gnu.
#14 6.183 Preparing to unpack .../043-binutils-aarch64-linux-gnu_2.38-4ubuntu2.1_arm64.deb ...
#14 6.184 Unpacking binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#14 6.294 Selecting previously unselected package binutils.
#14 6.295 Preparing to unpack .../044-binutils_2.38-4ubuntu2.1_arm64.deb ...
#14 6.296 Unpacking binutils (2.38-4ubuntu2.1) ...
#14 6.313 Selecting previously unselected package bubblewrap.
#14 6.314 Preparing to unpack .../045-bubblewrap_0.6.1-1_arm64.deb ...
#14 6.315 Unpacking bubblewrap (0.6.1-1) ...
#14 6.333 Selecting previously unselected package libc-dev-bin.
#14 6.335 Preparing to unpack .../046-libc-dev-bin_2.35-0ubuntu3.1_arm64.deb ...
#14 6.335 Unpacking libc-dev-bin (2.35-0ubuntu3.1) ...
#14 6.352 Selecting previously unselected package linux-libc-dev:arm64.
#14 6.353 Preparing to unpack .../047-linux-libc-dev_5.15.0-67.74_arm64.deb ...
#14 6.354 Unpacking linux-libc-dev:arm64 (5.15.0-67.74) ...
#14 6.476 Selecting previously unselected package libcrypt-dev:arm64.
#14 6.479 Preparing to unpack .../048-libcrypt-dev_1%3a4.4.27-1_arm64.deb ...
#14 6.479 Unpacking libcrypt-dev:arm64 (1:4.4.27-1) ...
#14 6.497 Selecting previously unselected package rpcsvc-proto.
#14 6.499 Preparing to unpack .../049-rpcsvc-proto_1.4.2-0ubuntu6_arm64.deb ...
#14 6.500 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
#14 6.520 Selecting previously unselected package libtirpc-dev:arm64.
#14 6.521 Preparing to unpack .../050-libtirpc-dev_1.3.2-2ubuntu0.1_arm64.deb ...
#14 6.522 Unpacking libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#14 6.548 Selecting previously unselected package libnsl-dev:arm64.
#14 6.550 Preparing to unpack .../051-libnsl-dev_1.3.0-2build2_arm64.deb ...
#14 6.550 Unpacking libnsl-dev:arm64 (1.3.0-2build2) ...
#14 6.571 Selecting previously unselected package libc6-dev:arm64.
#14 6.572 Preparing to unpack .../052-libc6-dev_2.35-0ubuntu3.1_arm64.deb ...
#14 6.573 Unpacking libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#14 6.670 Selecting previously unselected package gcc-11-base:arm64.
#14 6.672 Preparing to unpack .../053-gcc-11-base_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 6.672 Unpacking gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 6.690 Selecting previously unselected package libisl23:arm64.
#14 6.691 Preparing to unpack .../054-libisl23_0.24-2build1_arm64.deb ...
#14 6.692 Unpacking libisl23:arm64 (0.24-2build1) ...
#14 6.722 Selecting previously unselected package libmpfr6:arm64.
#14 6.724 Preparing to unpack .../055-libmpfr6_4.1.0-3build3_arm64.deb ...
#14 6.724 Unpacking libmpfr6:arm64 (4.1.0-3build3) ...
#14 6.744 Selecting previously unselected package libmpc3:arm64.
#14 6.745 Preparing to unpack .../056-libmpc3_1.2.1-2build1_arm64.deb ...
#14 6.746 Unpacking libmpc3:arm64 (1.2.1-2build1) ...
#14 6.762 Selecting previously unselected package cpp-11.
#14 6.764 Preparing to unpack .../057-cpp-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 6.764 Unpacking cpp-11 (11.3.0-1ubuntu1~22.04) ...
#14 6.924 Selecting previously unselected package cpp.
#14 6.925 Preparing to unpack .../058-cpp_4%3a11.2.0-1ubuntu1_arm64.deb ...
#14 6.926 Unpacking cpp (4:11.2.0-1ubuntu1) ...
#14 6.942 Selecting previously unselected package libcc1-0:arm64.
#14 6.944 Preparing to unpack .../059-libcc1-0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 6.944 Unpacking libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 6.960 Selecting previously unselected package libgomp1:arm64.
#14 6.961 Preparing to unpack .../060-libgomp1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 6.961 Unpacking libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 6.980 Selecting previously unselected package libitm1:arm64.
#14 6.981 Preparing to unpack .../061-libitm1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 6.982 Unpacking libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 6.998 Selecting previously unselected package libatomic1:arm64.
#14 6.999 Preparing to unpack .../062-libatomic1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 7.000 Unpacking libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 7.015 Selecting previously unselected package libasan6:arm64.
#14 7.016 Preparing to unpack .../063-libasan6_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 7.017 Unpacking libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 7.075 Selecting previously unselected package liblsan0:arm64.
#14 7.076 Preparing to unpack .../064-liblsan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 7.077 Unpacking liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 7.115 Selecting previously unselected package libtsan0:arm64.
#14 7.117 Preparing to unpack .../065-libtsan0_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 7.117 Unpacking libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 7.175 Selecting previously unselected package libubsan1:arm64.
#14 7.176 Preparing to unpack .../066-libubsan1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 7.177 Unpacking libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 7.210 Selecting previously unselected package libhwasan0:arm64.
#14 7.211 Preparing to unpack .../067-libhwasan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#14 7.212 Unpacking libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 7.253 Selecting previously unselected package libgcc-11-dev:arm64.
#14 7.254 Preparing to unpack .../068-libgcc-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 7.255 Unpacking libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 7.323 Selecting previously unselected package gcc-11.
#14 7.324 Preparing to unpack .../069-gcc-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 7.325 Unpacking gcc-11 (11.3.0-1ubuntu1~22.04) ...
#14 7.612 Selecting previously unselected package gcc.
#14 7.614 Preparing to unpack .../070-gcc_4%3a11.2.0-1ubuntu1_arm64.deb ...
#14 7.614 Unpacking gcc (4:11.2.0-1ubuntu1) ...
#14 7.634 Selecting previously unselected package libstdc++-11-dev:arm64.
#14 7.636 Preparing to unpack .../071-libstdc++-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 7.636 Unpacking libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 7.788 Selecting previously unselected package g++-11.
#14 7.790 Preparing to unpack .../072-g++-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#14 7.791 Unpacking g++-11 (11.3.0-1ubuntu1~22.04) ...
#14 7.963 Selecting previously unselected package g++.
#14 7.965 Preparing to unpack .../073-g++_4%3a11.2.0-1ubuntu1_arm64.deb ...
#14 7.966 Unpacking g++ (4:11.2.0-1ubuntu1) ...
#14 7.980 Selecting previously unselected package make.
#14 7.982 Preparing to unpack .../074-make_4.3-4.1build1_arm64.deb ...
#14 7.982 Unpacking make (4.3-4.1build1) ...
#14 8.002 Selecting previously unselected package libdpkg-perl.
#14 8.003 Preparing to unpack .../075-libdpkg-perl_1.21.1ubuntu2.1_all.deb ...
#14 8.004 Unpacking libdpkg-perl (1.21.1ubuntu2.1) ...
#14 8.035 Selecting previously unselected package bzip2.
#14 8.036 Preparing to unpack .../076-bzip2_1.0.8-5build1_arm64.deb ...
#14 8.037 Unpacking bzip2 (1.0.8-5build1) ...
#14 8.053 Selecting previously unselected package patch.
#14 8.055 Preparing to unpack .../077-patch_2.7.6-7build2_arm64.deb ...
#14 8.055 Unpacking patch (2.7.6-7build2) ...
#14 8.073 Selecting previously unselected package lto-disabled-list.
#14 8.074 Preparing to unpack .../078-lto-disabled-list_24_all.deb ...
#14 8.075 Unpacking lto-disabled-list (24) ...
#14 8.091 Selecting previously unselected package dpkg-dev.
#14 8.092 Preparing to unpack .../079-dpkg-dev_1.21.1ubuntu2.1_all.deb ...
#14 8.093 Unpacking dpkg-dev (1.21.1ubuntu2.1) ...
#14 8.123 Selecting previously unselected package build-essential.
#14 8.124 Preparing to unpack .../080-build-essential_12.9ubuntu3_arm64.deb ...
#14 8.124 Unpacking build-essential (12.9ubuntu3) ...
#14 8.140 Selecting previously unselected package libbrotli1:arm64.
#14 8.141 Preparing to unpack .../081-libbrotli1_1.0.9-2build6_arm64.deb ...
#14 8.142 Unpacking libbrotli1:arm64 (1.0.9-2build6) ...
#14 8.164 Selecting previously unselected package libsasl2-modules-db:arm64.
#14 8.166 Preparing to unpack .../082-libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#14 8.167 Unpacking libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 8.183 Selecting previously unselected package libsasl2-2:arm64.
#14 8.184 Preparing to unpack .../083-libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#14 8.196 Unpacking libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 8.212 Selecting previously unselected package libldap-2.5-0:arm64.
#14 8.214 Preparing to unpack .../084-libldap-2.5-0_2.5.14+dfsg-0ubuntu0.22.04.1_arm64.deb ...
#14 8.214 Unpacking libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 8.235 Selecting previously unselected package librtmp1:arm64.
#14 8.236 Preparing to unpack .../085-librtmp1_2.4+20151223.gitfa8646d.1-2build4_arm64.deb ...
#14 8.237 Unpacking librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#14 8.254 Selecting previously unselected package libssh-4:arm64.
#14 8.256 Preparing to unpack .../086-libssh-4_0.9.6-2build1_arm64.deb ...
#14 8.257 Unpacking libssh-4:arm64 (0.9.6-2build1) ...
#14 8.275 Selecting previously unselected package libcurl4:arm64.
#14 8.277 Preparing to unpack .../087-libcurl4_7.81.0-1ubuntu1.10_arm64.deb ...
#14 8.277 Unpacking libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#14 8.299 Selecting previously unselected package curl.
#14 8.300 Preparing to unpack .../088-curl_7.81.0-1ubuntu1.10_arm64.deb ...
#14 8.300 Unpacking curl (7.81.0-1ubuntu1.10) ...
#14 8.317 Selecting previously unselected package libassuan0:arm64.
#14 8.319 Preparing to unpack .../089-libassuan0_2.5.5-1build1_arm64.deb ...
#14 8.320 Unpacking libassuan0:arm64 (2.5.5-1build1) ...
#14 8.336 Selecting previously unselected package gpgconf.
#14 8.338 Preparing to unpack .../090-gpgconf_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.338 Unpacking gpgconf (2.2.27-3ubuntu2.1) ...
#14 8.356 Selecting previously unselected package libksba8:arm64.
#14 8.358 Preparing to unpack .../091-libksba8_1.6.0-2ubuntu0.2_arm64.deb ...
#14 8.358 Unpacking libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#14 8.377 Selecting previously unselected package libnpth0:arm64.
#14 8.378 Preparing to unpack .../092-libnpth0_1.6-3build2_arm64.deb ...
#14 8.379 Unpacking libnpth0:arm64 (1.6-3build2) ...
#14 8.396 Selecting previously unselected package dirmngr.
#14 8.397 Preparing to unpack .../093-dirmngr_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.415 Unpacking dirmngr (2.2.27-3ubuntu2.1) ...
#14 8.437 Selecting previously unselected package libfakeroot:arm64.
#14 8.438 Preparing to unpack .../094-libfakeroot_1.28-1ubuntu1_arm64.deb ...
#14 8.439 Unpacking libfakeroot:arm64 (1.28-1ubuntu1) ...
#14 8.457 Selecting previously unselected package fakeroot.
#14 8.458 Preparing to unpack .../095-fakeroot_1.28-1ubuntu1_arm64.deb ...
#14 8.459 Unpacking fakeroot (1.28-1ubuntu1) ...
#14 8.478 Selecting previously unselected package fonts-dejavu-core.
#14 8.480 Preparing to unpack .../096-fonts-dejavu-core_2.37-2build1_all.deb ...
#14 8.481 Unpacking fonts-dejavu-core (2.37-2build1) ...
#14 8.569 Selecting previously unselected package fontconfig-config.
#14 8.571 Preparing to unpack .../097-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
#14 8.572 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
#14 8.595 Selecting previously unselected package libcurl3-gnutls:arm64.
#14 8.597 Preparing to unpack .../098-libcurl3-gnutls_7.81.0-1ubuntu1.10_arm64.deb ...
#14 8.597 Unpacking libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#14 8.618 Selecting previously unselected package liberror-perl.
#14 8.620 Preparing to unpack .../099-liberror-perl_0.17029-1_all.deb ...
#14 8.620 Unpacking liberror-perl (0.17029-1) ...
#14 8.637 Selecting previously unselected package git-man.
#14 8.638 Preparing to unpack .../100-git-man_1%3a2.34.1-1ubuntu1.8_all.deb ...
#14 8.639 Unpacking git-man (1:2.34.1-1ubuntu1.8) ...
#14 8.663 Selecting previously unselected package git.
#14 8.664 Preparing to unpack .../101-git_1%3a2.34.1-1ubuntu1.8_arm64.deb ...
#14 8.671 Unpacking git (1:2.34.1-1ubuntu1.8) ...
#14 8.784 Selecting previously unselected package gnupg-l10n.
#14 8.785 Preparing to unpack .../102-gnupg-l10n_2.2.27-3ubuntu2.1_all.deb ...
#14 8.786 Unpacking gnupg-l10n (2.2.27-3ubuntu2.1) ...
#14 8.808 Selecting previously unselected package gnupg-utils.
#14 8.809 Preparing to unpack .../103-gnupg-utils_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.810 Unpacking gnupg-utils (2.2.27-3ubuntu2.1) ...
#14 8.833 Selecting previously unselected package gpg.
#14 8.835 Preparing to unpack .../104-gpg_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.835 Unpacking gpg (2.2.27-3ubuntu2.1) ...
#14 8.860 Selecting previously unselected package pinentry-curses.
#14 8.861 Preparing to unpack .../105-pinentry-curses_1.1.1-1build2_arm64.deb ...
#14 8.862 Unpacking pinentry-curses (1.1.1-1build2) ...
#14 8.879 Selecting previously unselected package gpg-agent.
#14 8.881 Preparing to unpack .../106-gpg-agent_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.882 Unpacking gpg-agent (2.2.27-3ubuntu2.1) ...
#14 8.904 Selecting previously unselected package gpg-wks-client.
#14 8.906 Preparing to unpack .../107-gpg-wks-client_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.906 Unpacking gpg-wks-client (2.2.27-3ubuntu2.1) ...
#14 8.923 Selecting previously unselected package gpg-wks-server.
#14 8.925 Preparing to unpack .../108-gpg-wks-server_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.925 Unpacking gpg-wks-server (2.2.27-3ubuntu2.1) ...
#14 8.942 Selecting previously unselected package gpgsm.
#14 8.943 Preparing to unpack .../109-gpgsm_2.2.27-3ubuntu2.1_arm64.deb ...
#14 8.944 Unpacking gpgsm (2.2.27-3ubuntu2.1) ...
#14 8.963 Selecting previously unselected package gnupg.
#14 8.964 Preparing to unpack .../110-gnupg_2.2.27-3ubuntu2.1_all.deb ...
#14 8.965 Unpacking gnupg (2.2.27-3ubuntu2.1) ...
#14 8.987 Selecting previously unselected package libalgorithm-diff-perl.
#14 8.989 Preparing to unpack .../111-libalgorithm-diff-perl_1.201-1_all.deb ...
#14 8.989 Unpacking libalgorithm-diff-perl (1.201-1) ...
#14 9.009 Selecting previously unselected package libalgorithm-diff-xs-perl.
#14 9.011 Preparing to unpack .../112-libalgorithm-diff-xs-perl_0.04-6build3_arm64.deb ...
#14 9.011 Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
#14 9.032 Selecting previously unselected package libalgorithm-merge-perl.
#14 9.033 Preparing to unpack .../113-libalgorithm-merge-perl_0.08-3_all.deb ...
#14 9.034 Unpacking libalgorithm-merge-perl (0.08-3) ...
#14 9.052 Selecting previously unselected package libfreetype6:arm64.
#14 9.053 Preparing to unpack .../114-libfreetype6_2.11.1+dfsg-1ubuntu0.1_arm64.deb ...
#14 9.054 Unpacking libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#14 9.078 Selecting previously unselected package libfontconfig1:arm64.
#14 9.080 Preparing to unpack .../115-libfontconfig1_2.13.1-4.2ubuntu5_arm64.deb ...
#14 9.080 Unpacking libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#14 9.100 Selecting previously unselected package libjpeg-turbo8:arm64.
#14 9.102 Preparing to unpack .../116-libjpeg-turbo8_2.1.2-0ubuntu1_arm64.deb ...
#14 9.102 Unpacking libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#14 9.122 Selecting previously unselected package libjpeg8:arm64.
#14 9.124 Preparing to unpack .../117-libjpeg8_8c-2ubuntu10_arm64.deb ...
#14 9.124 Unpacking libjpeg8:arm64 (8c-2ubuntu10) ...
#14 9.141 Selecting previously unselected package libdeflate0:arm64.
#14 9.142 Preparing to unpack .../118-libdeflate0_1.10-2_arm64.deb ...
#14 9.143 Unpacking libdeflate0:arm64 (1.10-2) ...
#14 9.162 Selecting previously unselected package libjbig0:arm64.
#14 9.163 Preparing to unpack .../119-libjbig0_2.1-3.1ubuntu0.22.04.1_arm64.deb ...
#14 9.164 Unpacking libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#14 9.181 Selecting previously unselected package libwebp7:arm64.
#14 9.183 Preparing to unpack .../120-libwebp7_1.2.2-2_arm64.deb ...
#14 9.184 Unpacking libwebp7:arm64 (1.2.2-2) ...
#14 9.206 Selecting previously unselected package libtiff5:arm64.
#14 9.207 Preparing to unpack .../121-libtiff5_4.3.0-6ubuntu0.4_arm64.deb ...
#14 9.208 Unpacking libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#14 9.229 Selecting previously unselected package libxpm4:arm64.
#14 9.230 Preparing to unpack .../122-libxpm4_1%3a3.5.12-1ubuntu0.22.04.1_arm64.deb ...
#14 9.231 Unpacking libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#14 9.248 Selecting previously unselected package libgd3:arm64.
#14 9.250 Preparing to unpack .../123-libgd3_2.3.0-2ubuntu2_arm64.deb ...
#14 9.250 Unpacking libgd3:arm64 (2.3.0-2ubuntu2) ...
#14 9.270 Selecting previously unselected package libc-devtools.
#14 9.271 Preparing to unpack .../124-libc-devtools_2.35-0ubuntu3.1_arm64.deb ...
#14 9.272 Unpacking libc-devtools (2.35-0ubuntu3.1) ...
#14 9.290 Selecting previously unselected package libcap-dev:arm64.
#14 9.291 Preparing to unpack .../125-libcap-dev_1%3a2.44-1build3_arm64.deb ...
#14 9.292 Unpacking libcap-dev:arm64 (1:2.44-1build3) ...
#14 9.311 Selecting previously unselected package libfile-fcntllock-perl.
#14 9.312 Preparing to unpack .../126-libfile-fcntllock-perl_0.22-3build7_arm64.deb ...
#14 9.313 Unpacking libfile-fcntllock-perl (0.22-3build7) ...
#14 9.333 Selecting previously unselected package libldap-common.
#14 9.334 Preparing to unpack .../127-libldap-common_2.5.14+dfsg-0ubuntu0.22.04.1_all.deb ...
#14 9.335 Unpacking libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 9.351 Selecting previously unselected package libpthread-stubs0-dev:arm64.
#14 9.353 Preparing to unpack .../128-libpthread-stubs0-dev_0.4-1build2_arm64.deb ...
#14 9.353 Unpacking libpthread-stubs0-dev:arm64 (0.4-1build2) ...
#14 9.370 Selecting previously unselected package libsasl2-modules:arm64.
#14 ...

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:aa2a6bdd90ddd8815ce790c22b8330d44129f03e543b8dccb54209cf21d029b0
#17 0.496 Reading package lists...
#17 1.167 Building dependency tree...
#17 1.324 Reading state information...
#17 1.508 The following additional packages will be installed:
#17 1.508   binutils binutils-aarch64-linux-gnu binutils-common bzip2 ca-certificates
#17 1.508   cpp cpp-11 dirmngr dpkg-dev fakeroot fontconfig-config fonts-dejavu-core g++
#17 1.508   g++-11 gcc gcc-11 gcc-11-base git-man gnupg gnupg-l10n gnupg-utils gpg
#17 1.508   gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm less
#17 1.508   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
#17 1.509   libasan6 libassuan0 libatomic1 libbinutils libbrotli1 libbsd0 libc-dev-bin
#17 1.509   libc-devtools libc6-dev libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0
#17 1.509   libctf0 libcurl3-gnutls libcurl4 libdeflate0 libdpkg-perl libedit2
#17 1.509   liberror-perl libexpat1 libfakeroot libfido2-1 libfile-fcntllock-perl
#17 1.509   libfontconfig1 libfreetype6 libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6
#17 1.509   libgomp1 libhwasan0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8
#17 1.509   libksba8 libldap-2.5-0 libldap-common liblocale-gettext-perl liblsan0 libmd0
#17 1.509   libmpc3 libmpfr6 libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16
#17 1.509   libpsl5 libreadline8 librtmp1 libsasl2-2 libsasl2-modules
#17 1.509   libsasl2-modules-db libsqlite3-0 libssh-4 libstdc++-11-dev libtiff5
#17 1.509   libtirpc-dev libtsan0 libubsan1 libwebp7 libx11-6 libx11-data libxau6
#17 1.509   libxcb1 libxdmcp6 libxext6 libxmuu1 libxpm4 linux-libc-dev lto-disabled-list
#17 1.509   make manpages manpages-dev netbase openssh-client openssl patch perl
#17 1.510   perl-modules-5.34 pinentry-curses publicsuffix readline-common rpcsvc-proto
#17 1.510   ucf xauth xz-utils
#17 1.511 Suggested packages:
#17 1.511   binutils-doc bzip2-doc cpp-doc gcc-11-locales dbus-user-session
#17 1.511   libpam-systemd pinentry-gnome3 tor debian-keyring gcc-11-doc gcc-multilib
#17 1.511   autoconf automake libtool flex bison gdb gcc-doc gettext-base git-daemon-run
#17 1.511   | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs
#17 1.511   git-mediawiki git-svn parcimonie xloadimage scdaemon glibc-doc bzr
#17 1.511   libgd-tools gdbm-l10n libsasl2-modules-gssapi-mit
#17 1.511   | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
#17 1.511   libsasl2-modules-sql libstdc++-11-doc make-doc man-browser keychain
#17 1.511   libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc
#17 1.511   libterm-readline-gnu-perl | libterm-readline-perl-perl
#17 1.511   libtap-harness-archive-perl pinentry-doc readline-doc
#17 1.661 The following NEW packages will be installed:
#17 1.661   binutils binutils-aarch64-linux-gnu binutils-common build-essential bzip2
#17 1.661   ca-certificates cpp cpp-11 curl dirmngr dpkg-dev fakeroot fontconfig-config
#17 1.661   fonts-dejavu-core g++ g++-11 gcc gcc-11 gcc-11-base git git-man gnupg
#17 1.661   gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf
#17 1.661   gpgsm less libalgorithm-diff-perl libalgorithm-diff-xs-perl
#17 1.662   libalgorithm-merge-perl libasan6 libassuan0 libatomic1 libbinutils
#17 1.662   libbrotli1 libbsd0 libc-dev-bin libc-devtools libc6-dev libcap-dev
#17 1.662   libcbor0.8 libcc1-0 libcrypt-dev libctf-nobfd0 libctf0 libcurl3-gnutls
#17 1.662   libcurl4 libdeflate0 libdpkg-perl libedit2 liberror-perl libexpat1
#17 1.662   libfakeroot libfido2-1 libfile-fcntllock-perl libfontconfig1 libfreetype6
#17 1.662   libgcc-11-dev libgd3 libgdbm-compat4 libgdbm6 libgomp1 libhwasan0 libisl23
#17 1.662   libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libksba8 libldap-2.5-0
#17 1.662   libldap-common liblocale-gettext-perl liblsan0 libmd0 libmpc3 libmpfr6
#17 1.662   libnghttp2-14 libnpth0 libnsl-dev libperl5.34 libpng16-16 libpsl5
#17 1.662   libreadline8 librtmp1 libsasl2-2 libsasl2-modules libsasl2-modules-db
#17 1.662   libsqlite3-0 libssh-4 libstdc++-11-dev libtiff5 libtirpc-dev libtsan0
#17 1.662   libubsan1 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6
#17 1.662   libxmuu1 libxpm4 linux-libc-dev lto-disabled-list make manpages manpages-dev
#17 1.662   netbase openssh-client openssl patch perl perl-modules-5.34 pinentry-curses
#17 1.663   publicsuffix readline-common rpcsvc-proto sudo ucf xauth xz-utils
#17 1.703 0 upgraded, 126 newly installed, 0 to remove and 0 not upgraded.
#17 1.703 Need to get 89.8 MB of archives.
#17 1.703 After this operation, 311 MB of additional disk space will be used.
#17 1.703 Get:1 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liblocale-gettext-perl arm64 1.07-4build3 [16.9 kB]
#17 1.718 Get:2 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl-modules-5.34 all 5.34.0-3ubuntu1.1 [2976 kB]
#17 1.828 Get:3 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm6 arm64 1.23-1 [34.1 kB]
#17 1.828 Get:4 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgdbm-compat4 arm64 1.23-1 [6294 B]
#17 1.829 Get:5 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libperl5.34 arm64 5.34.0-3ubuntu1.1 [4723 kB]
#17 1.932 Get:6 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 perl arm64 5.34.0-3ubuntu1.1 [232 kB]
#17 1.935 Get:7 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssl arm64 3.0.2-0ubuntu1.8 [1161 kB]
#17 1.944 Get:8 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 ca-certificates all 20211016ubuntu0.22.04.1 [144 kB]
#17 1.945 Get:9 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 less arm64 590-1ubuntu0.22.04.1 [142 kB]
#17 1.946 Get:10 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmd0 arm64 1.0.4-1build1 [23.8 kB]
#17 1.947 Get:11 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbsd0 arm64 0.11.5-1 [43.7 kB]
#17 1.965 Get:12 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libexpat1 arm64 2.4.7-1ubuntu0.2 [76.8 kB]
#17 1.993 Get:13 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 readline-common all 8.1.2-1 [53.5 kB]
#17 1.997 Get:14 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libreadline8 arm64 8.1.2-1 [153 kB]
#17 2.018 Get:15 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsqlite3-0 arm64 3.37.2-2ubuntu0.1 [636 kB]
#17 2.027 Get:16 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 netbase all 6.3 [12.9 kB]
#17 2.028 Get:17 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 sudo arm64 1.9.9-1ubuntu2.3 [806 kB]
#17 2.048 Get:18 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 ucf all 3.0043 [56.1 kB]
#17 2.049 Get:19 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcbor0.8 arm64 0.8.0-2ubuntu1 [24.3 kB]
#17 2.050 Get:20 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libedit2 arm64 3.1-20210910-1build1 [96.0 kB]
#17 2.052 Get:21 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfido2-1 arm64 1.10.0-1 [81.8 kB]
#17 2.053 Get:22 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnghttp2-14 arm64 1.43.0-1build3 [75.4 kB]
#17 2.068 Get:23 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpng16-16 arm64 1.6.37-3build5 [189 kB]
#17 2.107 Get:24 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libpsl5 arm64 0.21.0-1.2build2 [58.3 kB]
#17 2.118 Get:25 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxau6 arm64 1:1.0.9-1build5 [7624 B]
#17 2.118 Get:26 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxdmcp6 arm64 1:1.1.3-0ubuntu5 [10.8 kB]
#17 2.119 Get:27 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxcb1 arm64 1.14-3ubuntu3 [49.0 kB]
#17 2.120 Get:28 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-data all 2:1.7.5-1 [119 kB]
#17 2.122 Get:29 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libx11-6 arm64 2:1.7.5-1 [661 kB]
#17 2.151 Get:30 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxext6 arm64 2:1.3.4-1build1 [31.1 kB]
#17 2.152 Get:31 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libxmuu1 arm64 2:1.1.3-3 [10.4 kB]
#17 2.153 Get:32 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages all 5.10-1ubuntu1 [1375 kB]
#17 2.179 Get:33 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 openssh-client arm64 1:8.9p1-3ubuntu0.1 [866 kB]
#17 2.203 Get:34 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 publicsuffix all 20211207.1025-1 [129 kB]
#17 2.234 Get:35 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xauth arm64 1:1.1-1build2 [26.8 kB]
#17 2.235 Get:36 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 xz-utils arm64 5.2.5-2ubuntu1 [84.4 kB]
#17 2.238 Get:37 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-common arm64 2.38-4ubuntu2.1 [221 kB]
#17 2.248 Get:38 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libbinutils arm64 2.38-4ubuntu2.1 [825 kB]
#17 2.264 Get:39 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf-nobfd0 arm64 2.38-4ubuntu2.1 [107 kB]
#17 2.265 Get:40 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libctf0 arm64 2.38-4ubuntu2.1 [103 kB]
#17 2.267 Get:41 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils-aarch64-linux-gnu arm64 2.38-4ubuntu2.1 [3229 kB]
#17 2.340 Get:42 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 binutils arm64 2.38-4ubuntu2.1 [3166 B]
#17 2.341 Get:43 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-dev-bin arm64 2.35-0ubuntu3.1 [19.6 kB]
#17 2.341 Get:44 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 linux-libc-dev arm64 5.15.0-67.74 [1305 kB]
#17 2.365 Get:45 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcrypt-dev arm64 1:4.4.27-1 [119 kB]
#17 2.405 Get:46 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 rpcsvc-proto arm64 1.4.2-0ubuntu6 [65.4 kB]
#17 2.409 Get:47 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtirpc-dev arm64 1.3.2-2ubuntu0.1 [199 kB]
#17 2.442 Get:48 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnsl-dev arm64 1.3.0-2build2 [72.1 kB]
#17 2.445 Get:49 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc6-dev arm64 2.35-0ubuntu3.1 [1544 kB]
#17 2.568 Get:50 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11-base arm64 11.3.0-1ubuntu1~22.04 [20.8 kB]
#17 2.569 Get:51 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libisl23 arm64 0.24-2build1 [689 kB]
#17 2.577 Get:52 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpfr6 arm64 4.1.0-3build3 [245 kB]
#17 2.579 Get:53 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libmpc3 arm64 1.2.1-2build1 [48.1 kB]
#17 2.580 Get:54 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 cpp-11 arm64 11.3.0-1ubuntu1~22.04 [9709 kB]
#17 2.793 Get:55 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 cpp arm64 4:11.2.0-1ubuntu1 [27.7 kB]
#17 2.808 Get:56 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcc1-0 arm64 12.1.0-2ubuntu1~22.04 [45.0 kB]
#17 2.830 Get:57 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgomp1 arm64 12.1.0-2ubuntu1~22.04 [124 kB]
#17 2.845 Get:58 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libitm1 arm64 12.1.0-2ubuntu1~22.04 [28.4 kB]
#17 2.848 Get:59 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libatomic1 arm64 12.1.0-2ubuntu1~22.04 [10.8 kB]
#17 2.850 Get:60 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libasan6 arm64 11.3.0-1ubuntu1~22.04 [2227 kB]
#17 2.918 Get:61 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 liblsan0 arm64 12.1.0-2ubuntu1~22.04 [1034 kB]
#17 3.019 Get:62 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtsan0 arm64 11.3.0-1ubuntu1~22.04 [2235 kB]
#17 3.043 Get:63 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libubsan1 arm64 12.1.0-2ubuntu1~22.04 [965 kB]
#17 3.113 Get:64 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libhwasan0 arm64 12.1.0-2ubuntu1~22.04 [1119 kB]
#17 3.124 Get:65 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libgcc-11-dev arm64 11.3.0-1ubuntu1~22.04 [1151 kB]
#17 3.133 Get:66 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gcc-11 arm64 11.3.0-1ubuntu1~22.04 [19.4 MB]
#17 3.505 Get:67 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 gcc arm64 4:11.2.0-1ubuntu1 [5128 B]
#17 3.524 Get:68 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libstdc++-11-dev arm64 11.3.0-1ubuntu1~22.04 [2075 kB]
#17 3.726 Get:69 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 g++-11 arm64 11.3.0-1ubuntu1~22.04 [11.1 MB]
#17 3.863 Get:70 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 g++ arm64 4:11.2.0-1ubuntu1 [1394 B]
#17 3.863 Get:71 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 make arm64 4.3-4.1build1 [177 kB]
#17 3.866 Get:72 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libdpkg-perl all 1.21.1ubuntu2.1 [237 kB]
#17 3.868 Get:73 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 bzip2 arm64 1.0.8-5build1 [34.6 kB]
#17 3.869 Get:74 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 patch arm64 2.7.6-7build2 [105 kB]
#17 3.870 Get:75 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 lto-disabled-list all 24 [12.5 kB]
#17 3.870 Get:76 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dpkg-dev all 1.21.1ubuntu2.1 [922 kB]
#17 3.877 Get:77 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 build-essential arm64 12.9ubuntu3 [4740 B]
#17 3.892 Get:78 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libbrotli1 arm64 1.0.9-2build6 [314 kB]
#17 3.978 Get:79 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules-db arm64 2.1.27+dfsg2-3ubuntu1.2 [21.1 kB]
#17 3.980 Get:80 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-2 arm64 2.1.27+dfsg2-3ubuntu1.2 [55.6 kB]
#17 3.983 Get:81 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-2.5-0 arm64 2.5.14+dfsg-0ubuntu0.22.04.1 [181 kB]
#17 4.036 Get:82 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 librtmp1 arm64 2.4+20151223.gitfa8646d.1-2build4 [59.2 kB]
#17 4.037 Get:83 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libssh-4 arm64 0.9.6-2build1 [184 kB]
#17 4.042 Get:84 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcurl4 arm64 7.81.0-1ubuntu1.10 [285 kB]
#17 4.046 Get:85 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 curl arm64 7.81.0-1ubuntu1.10 [190 kB]
#17 4.047 Get:86 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libassuan0 arm64 2.5.5-1build1 [36.5 kB]
#17 4.048 Get:87 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgconf arm64 2.2.27-3ubuntu2.1 [92.5 kB]
#17 4.049 Get:88 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libksba8 arm64 1.6.0-2ubuntu0.2 [117 kB]
#17 4.069 Get:89 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libnpth0 arm64 1.6-3build2 [8156 B]
#17 4.081 Get:90 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 dirmngr arm64 2.2.27-3ubuntu2.1 [289 kB]
#17 4.146 Get:91 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfakeroot arm64 1.28-1ubuntu1 [31.5 kB]
#17 4.148 Get:92 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fakeroot arm64 1.28-1ubuntu1 [60.5 kB]
#17 4.152 Get:93 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fonts-dejavu-core all 2.37-2build1 [1041 kB]
#17 4.216 Get:94 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB]
#17 4.217 Get:95 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libcurl3-gnutls arm64 7.81.0-1ubuntu1.10 [279 kB]
#17 4.223 Get:96 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 liberror-perl all 0.17029-1 [26.5 kB]
#17 4.223 Get:97 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git-man all 1:2.34.1-1ubuntu1.8 [953 kB]
#17 4.241 Get:98 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 git arm64 1:2.34.1-1ubuntu1.8 [3162 kB]
#17 4.352 Get:99 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-l10n all 2.2.27-3ubuntu2.1 [54.4 kB]
#17 4.369 Get:100 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg-utils arm64 2.2.27-3ubuntu2.1 [304 kB]
#17 4.436 Get:101 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg arm64 2.2.27-3ubuntu2.1 [506 kB]
#17 4.471 Get:102 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 pinentry-curses arm64 1.1.1-1build2 [33.5 kB]
#17 4.471 Get:103 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-agent arm64 2.2.27-3ubuntu2.1 [204 kB]
#17 4.474 Get:104 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-client arm64 2.2.27-3ubuntu2.1 [61.4 kB]
#17 4.474 Get:105 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpg-wks-server arm64 2.2.27-3ubuntu2.1 [56.8 kB]
#17 4.475 Get:106 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gpgsm arm64 2.2.27-3ubuntu2.1 [192 kB]
#17 4.480 Get:107 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 gnupg all 2.2.27-3ubuntu2.1 [315 kB]
#17 4.485 Get:108 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-perl all 1.201-1 [41.8 kB]
#17 4.485 Get:109 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-diff-xs-perl arm64 0.04-6build3 [11.7 kB]
#17 4.500 Get:110 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
#17 4.501 Get:111 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libfreetype6 arm64 2.11.1+dfsg-1ubuntu0.1 [383 kB]
#17 4.537 Get:112 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfontconfig1 arm64 2.13.1-4.2ubuntu5 [135 kB]
#17 4.540 Get:113 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg-turbo8 arm64 2.1.2-0ubuntu1 [129 kB]
#17 4.544 Get:114 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libjpeg8 arm64 8c-2ubuntu10 [2264 B]
#17 4.544 Get:115 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libdeflate0 arm64 1.10-2 [69.1 kB]
#17 4.545 Get:116 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libjbig0 arm64 2.1-3.1ubuntu0.22.04.1 [29.1 kB]
#17 4.560 Get:117 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libwebp7 arm64 1.2.2-2 [192 kB]
#17 4.564 Get:118 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libtiff5 arm64 4.3.0-6ubuntu0.4 [180 kB]
#17 4.567 Get:119 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libxpm4 arm64 1:3.5.12-1ubuntu0.22.04.1 [35.3 kB]
#17 4.567 Get:120 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libgd3 arm64 2.3.0-2ubuntu2 [126 kB]
#17 4.586 Get:121 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libc-devtools arm64 2.35-0ubuntu3.1 [27.6 kB]
#17 4.603 Get:122 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libcap-dev arm64 1:2.44-1build3 [40.2 kB]
#17 4.608 Get:123 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 libfile-fcntllock-perl arm64 0.22-3build7 [33.7 kB]
#17 4.617 Get:124 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libldap-common all 2.5.14+dfsg-0ubuntu0.22.04.1 [15.9 kB]
#17 4.617 Get:125 http://ports.ubuntu.com/ubuntu-ports jammy-updates/main arm64 libsasl2-modules arm64 2.1.27+dfsg2-3ubuntu1.2 [68.4 kB]
#17 4.620 Get:126 http://ports.ubuntu.com/ubuntu-ports jammy/main arm64 manpages-dev all 5.10-1ubuntu1 [2309 kB]
#17 4.945 debconf: delaying package configuration, since apt-utils is not installed
#17 4.984 Fetched 89.8 MB in 3s (29.8 MB/s)
#17 5.005 Selecting previously unselected package liblocale-gettext-perl.
#17 5.005 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 4389 files and directories currently installed.)
#17 5.009 Preparing to unpack .../000-liblocale-gettext-perl_1.07-4build3_arm64.deb ...
#17 5.009 Unpacking liblocale-gettext-perl (1.07-4build3) ...
#17 5.023 Selecting previously unselected package perl-modules-5.34.
#17 5.024 Preparing to unpack .../001-perl-modules-5.34_5.34.0-3ubuntu1.1_all.deb ...
#17 5.025 Unpacking perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#17 5.219 Selecting previously unselected package libgdbm6:arm64.
#17 5.220 Preparing to unpack .../002-libgdbm6_1.23-1_arm64.deb ...
#17 5.221 Unpacking libgdbm6:arm64 (1.23-1) ...
#17 5.237 Selecting previously unselected package libgdbm-compat4:arm64.
#17 5.238 Preparing to unpack .../003-libgdbm-compat4_1.23-1_arm64.deb ...
#17 5.238 Unpacking libgdbm-compat4:arm64 (1.23-1) ...
#17 5.252 Selecting previously unselected package libperl5.34:arm64.
#17 5.253 Preparing to unpack .../004-libperl5.34_5.34.0-3ubuntu1.1_arm64.deb ...
#17 5.254 Unpacking libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#17 5.440 Selecting previously unselected package perl.
#17 5.442 Preparing to unpack .../005-perl_5.34.0-3ubuntu1.1_arm64.deb ...
#17 5.447 Unpacking perl (5.34.0-3ubuntu1.1) ...
#17 5.472 Selecting previously unselected package openssl.
#17 5.474 Preparing to unpack .../006-openssl_3.0.2-0ubuntu1.8_arm64.deb ...
#17 5.475 Unpacking openssl (3.0.2-0ubuntu1.8) ...
#17 5.510 Selecting previously unselected package ca-certificates.
#17 5.512 Preparing to unpack .../007-ca-certificates_20211016ubuntu0.22.04.1_all.deb ...
#17 5.513 Unpacking ca-certificates (20211016ubuntu0.22.04.1) ...
#17 5.595 Selecting previously unselected package less.
#17 5.597 Preparing to unpack .../008-less_590-1ubuntu0.22.04.1_arm64.deb ...
#17 5.599 Unpacking less (590-1ubuntu0.22.04.1) ...
#17 5.611 Selecting previously unselected package libmd0:arm64.
#17 5.613 Preparing to unpack .../009-libmd0_1.0.4-1build1_arm64.deb ...
#17 5.613 Unpacking libmd0:arm64 (1.0.4-1build1) ...
#17 5.628 Selecting previously unselected package libbsd0:arm64.
#17 5.629 Preparing to unpack .../010-libbsd0_0.11.5-1_arm64.deb ...
#17 5.630 Unpacking libbsd0:arm64 (0.11.5-1) ...
#17 5.646 Selecting previously unselected package libexpat1:arm64.
#17 5.647 Preparing to unpack .../011-libexpat1_2.4.7-1ubuntu0.2_arm64.deb ...
#17 5.648 Unpacking libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#17 5.663 Selecting previously unselected package readline-common.
#17 5.665 Preparing to unpack .../012-readline-common_8.1.2-1_all.deb ...
#17 5.665 Unpacking readline-common (8.1.2-1) ...
#17 5.679 Selecting previously unselected package libreadline8:arm64.
#17 5.680 Preparing to unpack .../013-libreadline8_8.1.2-1_arm64.deb ...
#17 5.681 Unpacking libreadline8:arm64 (8.1.2-1) ...
#17 5.699 Selecting previously unselected package libsqlite3-0:arm64.
#17 5.700 Preparing to unpack .../014-libsqlite3-0_3.37.2-2ubuntu0.1_arm64.deb ...
#17 5.700 Unpacking libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#17 5.726 Selecting previously unselected package netbase.
#17 5.727 Preparing to unpack .../015-netbase_6.3_all.deb ...
#17 5.728 Unpacking netbase (6.3) ...
#17 5.748 Selecting previously unselected package sudo.
#17 5.749 Preparing to unpack .../016-sudo_1.9.9-1ubuntu2.3_arm64.deb ...
#17 5.751 Unpacking sudo (1.9.9-1ubuntu2.3) ...
#17 5.786 Selecting previously unselected package ucf.
#17 5.787 Preparing to unpack .../017-ucf_3.0043_all.deb ...
#17 5.789 Moving old data out of the way
#17 5.791 Unpacking ucf (3.0043) ...
#17 5.814 Selecting previously unselected package libcbor0.8:arm64.
#17 5.815 Preparing to unpack .../018-libcbor0.8_0.8.0-2ubuntu1_arm64.deb ...
#17 5.815 Unpacking libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#17 5.831 Selecting previously unselected package libedit2:arm64.
#17 5.832 Preparing to unpack .../019-libedit2_3.1-20210910-1build1_arm64.deb ...
#17 5.833 Unpacking libedit2:arm64 (3.1-20210910-1build1) ...
#17 5.852 Selecting previously unselected package libfido2-1:arm64.
#17 5.854 Preparing to unpack .../020-libfido2-1_1.10.0-1_arm64.deb ...
#17 5.854 Unpacking libfido2-1:arm64 (1.10.0-1) ...
#17 5.872 Selecting previously unselected package libnghttp2-14:arm64.
#17 5.873 Preparing to unpack .../021-libnghttp2-14_1.43.0-1build3_arm64.deb ...
#17 5.874 Unpacking libnghttp2-14:arm64 (1.43.0-1build3) ...
#17 5.892 Selecting previously unselected package libpng16-16:arm64.
#17 5.893 Preparing to unpack .../022-libpng16-16_1.6.37-3build5_arm64.deb ...
#17 5.894 Unpacking libpng16-16:arm64 (1.6.37-3build5) ...
#17 5.914 Selecting previously unselected package libpsl5:arm64.
#17 5.915 Preparing to unpack .../023-libpsl5_0.21.0-1.2build2_arm64.deb ...
#17 5.916 Unpacking libpsl5:arm64 (0.21.0-1.2build2) ...
#17 5.932 Selecting previously unselected package libxau6:arm64.
#17 5.933 Preparing to unpack .../024-libxau6_1%3a1.0.9-1build5_arm64.deb ...
#17 5.934 Unpacking libxau6:arm64 (1:1.0.9-1build5) ...
#17 5.949 Selecting previously unselected package libxdmcp6:arm64.
#17 5.951 Preparing to unpack .../025-libxdmcp6_1%3a1.1.3-0ubuntu5_arm64.deb ...
#17 5.952 Unpacking libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#17 5.967 Selecting previously unselected package libxcb1:arm64.
#17 5.968 Preparing to unpack .../026-libxcb1_1.14-3ubuntu3_arm64.deb ...
#17 5.969 Unpacking libxcb1:arm64 (1.14-3ubuntu3) ...
#17 5.986 Selecting previously unselected package libx11-data.
#17 5.987 Preparing to unpack .../027-libx11-data_2%3a1.7.5-1_all.deb ...
#17 5.987 Unpacking libx11-data (2:1.7.5-1) ...
#17 6.035 Selecting previously unselected package libx11-6:arm64.
#17 6.036 Preparing to unpack .../028-libx11-6_2%3a1.7.5-1_arm64.deb ...
#17 6.037 Unpacking libx11-6:arm64 (2:1.7.5-1) ...
#17 6.064 Selecting previously unselected package libxext6:arm64.
#17 6.065 Preparing to unpack .../029-libxext6_2%3a1.3.4-1build1_arm64.deb ...
#17 6.066 Unpacking libxext6:arm64 (2:1.3.4-1build1) ...
#17 6.082 Selecting previously unselected package libxmuu1:arm64.
#17 6.083 Preparing to unpack .../030-libxmuu1_2%3a1.1.3-3_arm64.deb ...
#17 6.084 Unpacking libxmuu1:arm64 (2:1.1.3-3) ...
#17 6.099 Selecting previously unselected package manpages.
#17 6.100 Preparing to unpack .../031-manpages_5.10-1ubuntu1_all.deb ...
#17 6.101 Unpacking manpages (5.10-1ubuntu1) ...
#17 6.188 Selecting previously unselected package openssh-client.
#17 6.190 Preparing to unpack .../032-openssh-client_1%3a8.9p1-3ubuntu0.1_arm64.deb ...
#17 6.197 Unpacking openssh-client (1:8.9p1-3ubuntu0.1) ...
#17 6.234 Selecting previously unselected package publicsuffix.
#17 6.235 Preparing to unpack .../033-publicsuffix_20211207.1025-1_all.deb ...
#17 6.235 Unpacking publicsuffix (20211207.1025-1) ...
#17 6.255 Selecting previously unselected package xauth.
#17 6.256 Preparing to unpack .../034-xauth_1%3a1.1-1build2_arm64.deb ...
#17 6.257 Unpacking xauth (1:1.1-1build2) ...
#17 6.273 Selecting previously unselected package xz-utils.
#17 6.274 Preparing to unpack .../035-xz-utils_5.2.5-2ubuntu1_arm64.deb ...
#17 6.275 Unpacking xz-utils (5.2.5-2ubuntu1) ...
#17 6.294 Selecting previously unselected package binutils-common:arm64.
#17 6.295 Preparing to unpack .../036-binutils-common_2.38-4ubuntu2.1_arm64.deb ...
#17 6.296 Unpacking binutils-common:arm64 (2.38-4ubuntu2.1) ...
#17 6.314 Selecting previously unselected package libbinutils:arm64.
#17 6.315 Preparing to unpack .../037-libbinutils_2.38-4ubuntu2.1_arm64.deb ...
#17 6.316 Unpacking libbinutils:arm64 (2.38-4ubuntu2.1) ...
#17 6.350 Selecting previously unselected package libctf-nobfd0:arm64.
#17 6.351 Preparing to unpack .../038-libctf-nobfd0_2.38-4ubuntu2.1_arm64.deb ...
#17 6.352 Unpacking libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#17 6.370 Selecting previously unselected package libctf0:arm64.
#17 6.371 Preparing to unpack .../039-libctf0_2.38-4ubuntu2.1_arm64.deb ...
#17 6.372 Unpacking libctf0:arm64 (2.38-4ubuntu2.1) ...
#17 6.388 Selecting previously unselected package binutils-aarch64-linux-gnu.
#17 6.389 Preparing to unpack .../040-binutils-aarch64-linux-gnu_2.38-4ubuntu2.1_arm64.deb ...
#17 6.390 Unpacking binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#17 6.561 Selecting previously unselected package binutils.
#17 6.562 Preparing to unpack .../041-binutils_2.38-4ubuntu2.1_arm64.deb ...
#17 6.563 Unpacking binutils (2.38-4ubuntu2.1) ...
#17 6.578 Selecting previously unselected package libc-dev-bin.
#17 6.580 Preparing to unpack .../042-libc-dev-bin_2.35-0ubuntu3.1_arm64.deb ...
#17 6.580 Unpacking libc-dev-bin (2.35-0ubuntu3.1) ...
#17 6.595 Selecting previously unselected package linux-libc-dev:arm64.
#17 6.596 Preparing to unpack .../043-linux-libc-dev_5.15.0-67.74_arm64.deb ...
#17 6.597 Unpacking linux-libc-dev:arm64 (5.15.0-67.74) ...
#17 6.717 Selecting previously unselected package libcrypt-dev:arm64.
#17 6.719 Preparing to unpack .../044-libcrypt-dev_1%3a4.4.27-1_arm64.deb ...
#17 6.720 Unpacking libcrypt-dev:arm64 (1:4.4.27-1) ...
#17 6.738 Selecting previously unselected package rpcsvc-proto.
#17 6.739 Preparing to unpack .../045-rpcsvc-proto_1.4.2-0ubuntu6_arm64.deb ...
#17 6.740 Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
#17 6.758 Selecting previously unselected package libtirpc-dev:arm64.
#17 6.760 Preparing to unpack .../046-libtirpc-dev_1.3.2-2ubuntu0.1_arm64.deb ...
#17 6.760 Unpacking libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#17 6.784 Selecting previously unselected package libnsl-dev:arm64.
#17 6.785 Preparing to unpack .../047-libnsl-dev_1.3.0-2build2_arm64.deb ...
#17 6.786 Unpacking libnsl-dev:arm64 (1.3.0-2build2) ...
#17 6.807 Selecting previously unselected package libc6-dev:arm64.
#17 6.808 Preparing to unpack .../048-libc6-dev_2.35-0ubuntu3.1_arm64.deb ...
#17 6.809 Unpacking libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#17 6.903 Selecting previously unselected package gcc-11-base:arm64.
#17 6.904 Preparing to unpack .../049-gcc-11-base_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 6.905 Unpacking gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 6.923 Selecting previously unselected package libisl23:arm64.
#17 6.924 Preparing to unpack .../050-libisl23_0.24-2build1_arm64.deb ...
#17 6.925 Unpacking libisl23:arm64 (0.24-2build1) ...
#17 6.954 Selecting previously unselected package libmpfr6:arm64.
#17 6.956 Preparing to unpack .../051-libmpfr6_4.1.0-3build3_arm64.deb ...
#17 6.957 Unpacking libmpfr6:arm64 (4.1.0-3build3) ...
#17 6.979 Selecting previously unselected package libmpc3:arm64.
#17 6.980 Preparing to unpack .../052-libmpc3_1.2.1-2build1_arm64.deb ...
#17 6.981 Unpacking libmpc3:arm64 (1.2.1-2build1) ...
#17 6.998 Selecting previously unselected package cpp-11.
#17 7.000 Preparing to unpack .../053-cpp-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 7.001 Unpacking cpp-11 (11.3.0-1ubuntu1~22.04) ...
#17 7.160 Selecting previously unselected package cpp.
#17 7.162 Preparing to unpack .../054-cpp_4%3a11.2.0-1ubuntu1_arm64.deb ...
#17 7.163 Unpacking cpp (4:11.2.0-1ubuntu1) ...
#17 7.180 Selecting previously unselected package libcc1-0:arm64.
#17 7.181 Preparing to unpack .../055-libcc1-0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 7.182 Unpacking libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 7.200 Selecting previously unselected package libgomp1:arm64.
#17 7.202 Preparing to unpack .../056-libgomp1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 7.203 Unpacking libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 7.221 Selecting previously unselected package libitm1:arm64.
#17 7.222 Preparing to unpack .../057-libitm1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 7.223 Unpacking libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 7.241 Selecting previously unselected package libatomic1:arm64.
#17 7.243 Preparing to unpack .../058-libatomic1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 7.244 Unpacking libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 7.260 Selecting previously unselected package libasan6:arm64.
#17 7.262 Preparing to unpack .../059-libasan6_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 7.263 Unpacking libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 7.323 Selecting previously unselected package liblsan0:arm64.
#17 7.324 Preparing to unpack .../060-liblsan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 7.325 Unpacking liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 7.360 Selecting previously unselected package libtsan0:arm64.
#17 7.362 Preparing to unpack .../061-libtsan0_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 7.363 Unpacking libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 7.418 Selecting previously unselected package libubsan1:arm64.
#17 7.419 Preparing to unpack .../062-libubsan1_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 7.420 Unpacking libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 7.457 Selecting previously unselected package libhwasan0:arm64.
#17 7.459 Preparing to unpack .../063-libhwasan0_12.1.0-2ubuntu1~22.04_arm64.deb ...
#17 7.459 Unpacking libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 7.498 Selecting previously unselected package libgcc-11-dev:arm64.
#17 7.499 Preparing to unpack .../064-libgcc-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 7.500 Unpacking libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 7.567 Selecting previously unselected package gcc-11.
#17 7.568 Preparing to unpack .../065-gcc-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 7.569 Unpacking gcc-11 (11.3.0-1ubuntu1~22.04) ...
#17 7.860 Selecting previously unselected package gcc.
#17 7.862 Preparing to unpack .../066-gcc_4%3a11.2.0-1ubuntu1_arm64.deb ...
#17 7.863 Unpacking gcc (4:11.2.0-1ubuntu1) ...
#17 7.882 Selecting previously unselected package libstdc++-11-dev:arm64.
#17 7.883 Preparing to unpack .../067-libstdc++-11-dev_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 7.884 Unpacking libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 8.036 Selecting previously unselected package g++-11.
#17 8.038 Preparing to unpack .../068-g++-11_11.3.0-1ubuntu1~22.04_arm64.deb ...
#17 8.038 Unpacking g++-11 (11.3.0-1ubuntu1~22.04) ...
#17 8.212 Selecting previously unselected package g++.
#17 8.214 Preparing to unpack .../069-g++_4%3a11.2.0-1ubuntu1_arm64.deb ...
#17 8.215 Unpacking g++ (4:11.2.0-1ubuntu1) ...
#17 8.230 Selecting previously unselected package make.
#17 8.232 Preparing to unpack .../070-make_4.3-4.1build1_arm64.deb ...
#17 8.233 Unpacking make (4.3-4.1build1) ...
#17 8.251 Selecting previously unselected package libdpkg-perl.
#17 8.253 Preparing to unpack .../071-libdpkg-perl_1.21.1ubuntu2.1_all.deb ...
#17 8.253 Unpacking libdpkg-perl (1.21.1ubuntu2.1) ...
#17 8.283 Selecting previously unselected package bzip2.
#17 8.284 Preparing to unpack .../072-bzip2_1.0.8-5build1_arm64.deb ...
#17 8.285 Unpacking bzip2 (1.0.8-5build1) ...
#17 8.301 Selecting previously unselected package patch.
#17 8.303 Preparing to unpack .../073-patch_2.7.6-7build2_arm64.deb ...
#17 8.304 Unpacking patch (2.7.6-7build2) ...
#17 8.322 Selecting previously unselected package lto-disabled-list.
#17 8.323 Preparing to unpack .../074-lto-disabled-list_24_all.deb ...
#17 8.324 Unpacking lto-disabled-list (24) ...
#17 8.340 Selecting previously unselected package dpkg-dev.
#17 8.342 Preparing to unpack .../075-dpkg-dev_1.21.1ubuntu2.1_all.deb ...
#17 8.343 Unpacking dpkg-dev (1.21.1ubuntu2.1) ...
#17 8.371 Selecting previously unselected package build-essential.
#17 8.372 Preparing to unpack .../076-build-essential_12.9ubuntu3_arm64.deb ...
#17 8.373 Unpacking build-essential (12.9ubuntu3) ...
#17 8.388 Selecting previously unselected package libbrotli1:arm64.
#17 8.389 Preparing to unpack .../077-libbrotli1_1.0.9-2build6_arm64.deb ...
#17 8.390 Unpacking libbrotli1:arm64 (1.0.9-2build6) ...
#17 8.410 Selecting previously unselected package libsasl2-modules-db:arm64.
#17 8.412 Preparing to unpack .../078-libsasl2-modules-db_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#17 8.412 Unpacking libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 8.428 Selecting previously unselected package libsasl2-2:arm64.
#17 8.430 Preparing to unpack .../079-libsasl2-2_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#17 8.430 Unpacking libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 8.448 Selecting previously unselected package libldap-2.5-0:arm64.
#17 8.450 Preparing to unpack .../080-libldap-2.5-0_2.5.14+dfsg-0ubuntu0.22.04.1_arm64.deb ...
#17 8.450 Unpacking libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 8.471 Selecting previously unselected package librtmp1:arm64.
#17 8.472 Preparing to unpack .../081-librtmp1_2.4+20151223.gitfa8646d.1-2build4_arm64.deb ...
#17 8.472 Unpacking librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#17 8.489 Selecting previously unselected package libssh-4:arm64.
#17 8.490 Preparing to unpack .../082-libssh-4_0.9.6-2build1_arm64.deb ...
#17 8.491 Unpacking libssh-4:arm64 (0.9.6-2build1) ...
#17 8.510 Selecting previously unselected package libcurl4:arm64.
#17 8.512 Preparing to unpack .../083-libcurl4_7.81.0-1ubuntu1.10_arm64.deb ...
#17 8.521 Unpacking libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#17 8.541 Selecting previously unselected package curl.
#17 8.542 Preparing to unpack .../084-curl_7.81.0-1ubuntu1.10_arm64.deb ...
#17 8.543 Unpacking curl (7.81.0-1ubuntu1.10) ...
#17 8.559 Selecting previously unselected package libassuan0:arm64.
#17 8.561 Preparing to unpack .../085-libassuan0_2.5.5-1build1_arm64.deb ...
#17 8.561 Unpacking libassuan0:arm64 (2.5.5-1build1) ...
#17 8.576 Selecting previously unselected package gpgconf.
#17 8.577 Preparing to unpack .../086-gpgconf_2.2.27-3ubuntu2.1_arm64.deb ...
#17 8.578 Unpacking gpgconf (2.2.27-3ubuntu2.1) ...
#17 8.596 Selecting previously unselected package libksba8:arm64.
#17 8.598 Preparing to unpack .../087-libksba8_1.6.0-2ubuntu0.2_arm64.deb ...
#17 8.598 Unpacking libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#17 8.617 Selecting previously unselected package libnpth0:arm64.
#17 8.618 Preparing to unpack .../088-libnpth0_1.6-3build2_arm64.deb ...
#17 8.619 Unpacking libnpth0:arm64 (1.6-3build2) ...
#17 8.636 Selecting previously unselected package dirmngr.
#17 8.637 Preparing to unpack .../089-dirmngr_2.2.27-3ubuntu2.1_arm64.deb ...
#17 8.656 Unpacking dirmngr (2.2.27-3ubuntu2.1) ...
#17 8.680 Selecting previously unselected package libfakeroot:arm64.
#17 8.682 Preparing to unpack .../090-libfakeroot_1.28-1ubuntu1_arm64.deb ...
#17 8.683 Unpacking libfakeroot:arm64 (1.28-1ubuntu1) ...
#17 8.701 Selecting previously unselected package fakeroot.
#17 8.703 Preparing to unpack .../091-fakeroot_1.28-1ubuntu1_arm64.deb ...
#17 8.703 Unpacking fakeroot (1.28-1ubuntu1) ...
#17 8.721 Selecting previously unselected package fonts-dejavu-core.
#17 8.723 Preparing to unpack .../092-fonts-dejavu-core_2.37-2build1_all.deb ...
#17 8.723 Unpacking fonts-dejavu-core (2.37-2build1) ...
#17 8.807 Selecting previously unselected package fontconfig-config.
#17 8.809 Preparing to unpack .../093-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ...
#17 8.810 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ...
#17 8.834 Selecting previously unselected package libcurl3-gnutls:arm64.
#17 8.835 Preparing to unpack .../094-libcurl3-gnutls_7.81.0-1ubuntu1.10_arm64.deb ...
#17 8.836 Unpacking libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#17 8.856 Selecting previously unselected package liberror-perl.
#17 8.858 Preparing to unpack .../095-liberror-perl_0.17029-1_all.deb ...
#17 8.858 Unpacking liberror-perl (0.17029-1) ...
#17 8.878 Selecting previously unselected package git-man.
#17 8.880 Preparing to unpack .../096-git-man_1%3a2.34.1-1ubuntu1.8_all.deb ...
#17 8.880 Unpacking git-man (1:2.34.1-1ubuntu1.8) ...
#17 8.905 Selecting previously unselected package git.
#17 8.906 Preparing to unpack .../097-git_1%3a2.34.1-1ubuntu1.8_arm64.deb ...
#17 8.914 Unpacking git (1:2.34.1-1ubuntu1.8) ...
#17 9.030 Selecting previously unselected package gnupg-l10n.
#17 9.032 Preparing to unpack .../098-gnupg-l10n_2.2.27-3ubuntu2.1_all.deb ...
#17 9.033 Unpacking gnupg-l10n (2.2.27-3ubuntu2.1) ...
#17 9.054 Selecting previously unselected package gnupg-utils.
#17 9.055 Preparing to unpack .../099-gnupg-utils_2.2.27-3ubuntu2.1_arm64.deb ...
#17 9.055 Unpacking gnupg-utils (2.2.27-3ubuntu2.1) ...
#17 9.079 Selecting previously unselected package gpg.
#17 9.080 Preparing to unpack .../100-gpg_2.2.27-3ubuntu2.1_arm64.deb ...
#17 9.081 Unpacking gpg (2.2.27-3ubuntu2.1) ...
#17 9.107 Selecting previously unselected package pinentry-curses.
#17 9.108 Preparing to unpack .../101-pinentry-curses_1.1.1-1build2_arm64.deb ...
#17 9.109 Unpacking pinentry-curses (1.1.1-1build2) ...
#17 9.127 Selecting previously unselected package gpg-agent.
#17 9.129 Preparing to unpack .../102-gpg-agent_2.2.27-3ubuntu2.1_arm64.deb ...
#17 9.129 Unpacking gpg-agent (2.2.27-3ubuntu2.1) ...
#17 9.152 Selecting previously unselected package gpg-wks-client.
#17 9.154 Preparing to unpack .../103-gpg-wks-client_2.2.27-3ubuntu2.1_arm64.deb ...
#17 9.155 Unpacking gpg-wks-client (2.2.27-3ubuntu2.1) ...
#17 9.172 Selecting previously unselected package gpg-wks-server.
#17 9.174 Preparing to unpack .../104-gpg-wks-server_2.2.27-3ubuntu2.1_arm64.deb ...
#17 9.174 Unpacking gpg-wks-server (2.2.27-3ubuntu2.1) ...
#17 9.190 Selecting previously unselected package gpgsm.
#17 9.192 Preparing to unpack .../105-gpgsm_2.2.27-3ubuntu2.1_arm64.deb ...
#17 9.193 Unpacking gpgsm (2.2.27-3ubuntu2.1) ...
#17 9.213 Selecting previously unselected package gnupg.
#17 9.214 Preparing to unpack .../106-gnupg_2.2.27-3ubuntu2.1_all.deb ...
#17 9.215 Unpacking gnupg (2.2.27-3ubuntu2.1) ...
#17 9.234 Selecting previously unselected package libalgorithm-diff-perl.
#17 9.235 Preparing to unpack .../107-libalgorithm-diff-perl_1.201-1_all.deb ...
#17 9.235 Unpacking libalgorithm-diff-perl (1.201-1) ...
#17 9.256 Selecting previously unselected package libalgorithm-diff-xs-perl.
#17 9.257 Preparing to unpack .../108-libalgorithm-diff-xs-perl_0.04-6build3_arm64.deb ...
#17 9.258 Unpacking libalgorithm-diff-xs-perl (0.04-6build3) ...
#17 9.274 Selecting previously unselected package libalgorithm-merge-perl.
#17 9.276 Preparing to unpack .../109-libalgorithm-merge-perl_0.08-3_all.deb ...
#17 9.276 Unpacking libalgorithm-merge-perl (0.08-3) ...
#17 9.294 Selecting previously unselected package libfreetype6:arm64.
#17 9.295 Preparing to unpack .../110-libfreetype6_2.11.1+dfsg-1ubuntu0.1_arm64.deb ...
#17 9.296 Unpacking libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#17 9.318 Selecting previously unselected package libfontconfig1:arm64.
#17 9.319 Preparing to unpack .../111-libfontconfig1_2.13.1-4.2ubuntu5_arm64.deb ...
#17 9.319 Unpacking libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#17 9.339 Selecting previously unselected package libjpeg-turbo8:arm64.
#17 9.341 Preparing to unpack .../112-libjpeg-turbo8_2.1.2-0ubuntu1_arm64.deb ...
#17 9.341 Unpacking libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#17 9.360 Selecting previously unselected package libjpeg8:arm64.
#17 9.362 Preparing to unpack .../113-libjpeg8_8c-2ubuntu10_arm64.deb ...
#17 9.362 Unpacking libjpeg8:arm64 (8c-2ubuntu10) ...
#17 9.378 Selecting previously unselected package libdeflate0:arm64.
#17 9.380 Preparing to unpack .../114-libdeflate0_1.10-2_arm64.deb ...
#17 9.380 Unpacking libdeflate0:arm64 (1.10-2) ...
#17 9.399 Selecting previously unselected package libjbig0:arm64.
#17 9.401 Preparing to unpack .../115-libjbig0_2.1-3.1ubuntu0.22.04.1_arm64.deb ...
#17 9.401 Unpacking libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#17 9.419 Selecting previously unselected package libwebp7:arm64.
#17 9.421 Preparing to unpack .../116-libwebp7_1.2.2-2_arm64.deb ...
#17 9.421 Unpacking libwebp7:arm64 (1.2.2-2) ...
#17 9.441 Selecting previously unselected package libtiff5:arm64.
#17 9.442 Preparing to unpack .../117-libtiff5_4.3.0-6ubuntu0.4_arm64.deb ...
#17 9.443 Unpacking libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#17 9.463 Selecting previously unselected package libxpm4:arm64.
#17 9.464 Preparing to unpack .../118-libxpm4_1%3a3.5.12-1ubuntu0.22.04.1_arm64.deb ...
#17 9.465 Unpacking libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#17 9.482 Selecting previously unselected package libgd3:arm64.
#17 9.484 Preparing to unpack .../119-libgd3_2.3.0-2ubuntu2_arm64.deb ...
#17 9.485 Unpacking libgd3:arm64 (2.3.0-2ubuntu2) ...
#17 9.503 Selecting previously unselected package libc-devtools.
#17 9.504 Preparing to unpack .../120-libc-devtools_2.35-0ubuntu3.1_arm64.deb ...
#17 9.505 Unpacking libc-devtools (2.35-0ubuntu3.1) ...
#17 9.523 Selecting previously unselected package libcap-dev:arm64.
#17 9.525 Preparing to unpack .../121-libcap-dev_1%3a2.44-1build3_arm64.deb ...
#17 9.525 Unpacking libcap-dev:arm64 (1:2.44-1build3) ...
#17 9.546 Selecting previously unselected package libfile-fcntllock-perl.
#17 9.547 Preparing to unpack .../122-libfile-fcntllock-perl_0.22-3build7_arm64.deb ...
#17 9.547 Unpacking libfile-fcntllock-perl (0.22-3build7) ...
#17 9.567 Selecting previously unselected package libldap-common.
#17 9.569 Preparing to unpack .../123-libldap-common_2.5.14+dfsg-0ubuntu0.22.04.1_all.deb ...
#17 9.569 Unpacking libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 9.587 Selecting previously unselected package libsasl2-modules:arm64.
#17 9.588 Preparing to unpack .../124-libsasl2-modules_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#17 9.588 Unpacking libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 9.612 Selecting previously unselected package manpages-dev.
#17 9.613 Preparing to unpack .../125-manpages-dev_5.10-1ubuntu1_all.deb ...
#17 9.614 Unpacking manpages-dev (5.10-1ubuntu1) ...
#17 9.810 Setting up libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#17 9.812 Setting up libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#17 9.813 Setting up gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 9.814 Setting up libxau6:arm64 (1:1.0.9-1build5) ...
#17 9.815 Setting up lto-disabled-list (24) ...
#17 9.817 Setting up libpsl5:arm64 (0.21.0-1.2build2) ...
#17 9.818 Setting up manpages (5.10-1ubuntu1) ...
#17 9.819 Setting up libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#17 9.821 Setting up libbrotli1:arm64 (1.0.9-2build6) ...
#17 9.822 Setting up libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#17 9.823 Setting up libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 9.827 Setting up binutils-common:arm64 (2.38-4ubuntu2.1) ...
#17 9.829 Setting up libnghttp2-14:arm64 (1.43.0-1build3) ...
#17 9.830 Setting up libdeflate0:arm64 (1.10-2) ...
#17 9.831 Setting up less (590-1ubuntu0.22.04.1) ...
#17 9.837 Setting up linux-libc-dev:arm64 (5.15.0-67.74) ...
#17 9.838 Setting up libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#17 9.839 Setting up libnpth0:arm64 (1.6-3build2) ...
#17 9.841 Setting up libassuan0:arm64 (2.5.5-1build1) ...
#17 9.842 Setting up libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 9.844 Setting up perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#17 9.845 Setting up bzip2 (1.0.8-5build1) ...
#17 9.846 Setting up libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 9.848 Setting up libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#17 9.850 Setting up libfakeroot:arm64 (1.28-1ubuntu1) ...
#17 9.851 Setting up libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 9.853 Setting up libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 9.854 Setting up fakeroot (1.28-1ubuntu1) ...
#17 9.857 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
#17 9.857 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.857 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.857 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.857 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.857 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.857 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.857 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.857 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.861 Setting up libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#17 9.863 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
#17 9.864 Setting up libx11-data (2:1.7.5-1) ...
#17 9.866 Setting up make (4.3-4.1build1) ...
#17 9.867 Setting up libmpfr6:arm64 (4.1.0-3build3) ...
#17 9.869 Setting up gnupg-l10n (2.2.27-3ubuntu2.1) ...
#17 9.870 Setting up librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#17 9.871 Setting up xz-utils (5.2.5-2ubuntu1) ...
#17 9.875 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#17 9.875 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.875 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.875 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.875 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.876 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.876 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.876 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.876 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.876 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.876 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.878 Setting up libpng16-16:arm64 (1.6.37-3build5) ...
#17 9.880 Setting up libmpc3:arm64 (1.2.1-2build1) ...
#17 9.881 Setting up libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 9.883 Setting up patch (2.7.6-7build2) ...
#17 9.884 Setting up sudo (1.9.9-1ubuntu2.3) ...
#17 9.937 Setting up fonts-dejavu-core (2.37-2build1) ...
#17 9.947 Setting up ucf (3.0043) ...
#17 10.02 Setting up libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#17 10.03 Setting up libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#17 10.03 Setting up libssh-4:arm64 (0.9.6-2build1) ...
#17 10.03 Setting up libwebp7:arm64 (1.2.2-2) ...
#17 10.03 Setting up libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 10.03 Setting up libmd0:arm64 (1.0.4-1build1) ...
#17 10.03 Setting up libnsl-dev:arm64 (1.3.0-2build2) ...
#17 10.03 Setting up libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 10.04 Setting up libcrypt-dev:arm64 (1:4.4.27-1) ...
#17 10.04 Setting up git-man (1:2.34.1-1ubuntu1.8) ...
#17 10.04 Setting up netbase (6.3) ...
#17 10.04 Setting up libbinutils:arm64 (2.38-4ubuntu2.1) ...
#17 10.04 Setting up libfido2-1:arm64 (1.10.0-1) ...
#17 10.05 Setting up libisl23:arm64 (0.24-2build1) ...
#17 10.05 Setting up libc-dev-bin (2.35-0ubuntu3.1) ...
#17 10.05 Setting up openssl (3.0.2-0ubuntu1.8) ...
#17 10.05 Setting up libbsd0:arm64 (0.11.5-1) ...
#17 10.05 Setting up libcap-dev:arm64 (1:2.44-1build3) ...
#17 10.05 Setting up readline-common (8.1.2-1) ...
#17 10.06 Setting up publicsuffix (20211207.1025-1) ...
#17 10.06 Setting up libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 10.06 Setting up liblocale-gettext-perl (1.07-4build3) ...
#17 10.06 Setting up liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 10.06 Setting up libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#17 10.07 Setting up libgdbm6:arm64 (1.23-1) ...
#17 10.07 Setting up libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 10.07 Setting up libctf0:arm64 (2.38-4ubuntu2.1) ...
#17 10.07 Setting up libjpeg8:arm64 (8c-2ubuntu10) ...
#17 10.07 Setting up pinentry-curses (1.1.1-1build2) ...
#17 10.08 Setting up cpp-11 (11.3.0-1ubuntu1~22.04) ...
#17 10.08 Setting up manpages-dev (5.10-1ubuntu1) ...
#17 10.08 Setting up libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#17 10.09 Setting up libxcb1:arm64 (1.14-3ubuntu3) ...
#17 10.09 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
#17 ...

#14 [stage-1  6/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
#14 sha256:a8ae30d2a784d075ecc5cf19dc50c3bb664056e2f02b54e3ad85dd92af04bb6f
#14 9.371 Preparing to unpack .../129-libsasl2-modules_2.1.27+dfsg2-3ubuntu1.2_arm64.deb ...
#14 9.372 Unpacking libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 9.392 Selecting previously unselected package xorg-sgml-doctools.
#14 9.393 Preparing to unpack .../130-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ...
#14 9.394 Unpacking xorg-sgml-doctools (1:1.11-1.1) ...
#14 9.411 Selecting previously unselected package x11proto-dev.
#14 9.412 Preparing to unpack .../131-x11proto-dev_2021.5-1_all.deb ...
#14 9.413 Unpacking x11proto-dev (2021.5-1) ...
#14 9.454 Selecting previously unselected package libxau-dev:arm64.
#14 9.455 Preparing to unpack .../132-libxau-dev_1%3a1.0.9-1build5_arm64.deb ...
#14 9.456 Unpacking libxau-dev:arm64 (1:1.0.9-1build5) ...
#14 9.473 Selecting previously unselected package libxdmcp-dev:arm64.
#14 9.475 Preparing to unpack .../133-libxdmcp-dev_1%3a1.1.3-0ubuntu5_arm64.deb ...
#14 9.475 Unpacking libxdmcp-dev:arm64 (1:1.1.3-0ubuntu5) ...
#14 9.492 Selecting previously unselected package xtrans-dev.
#14 9.493 Preparing to unpack .../134-xtrans-dev_1.4.0-1_all.deb ...
#14 9.494 Unpacking xtrans-dev (1.4.0-1) ...
#14 9.519 Selecting previously unselected package libxcb1-dev:arm64.
#14 9.521 Preparing to unpack .../135-libxcb1-dev_1.14-3ubuntu3_arm64.deb ...
#14 9.522 Unpacking libxcb1-dev:arm64 (1.14-3ubuntu3) ...
#14 9.543 Selecting previously unselected package libx11-dev:arm64.
#14 9.544 Preparing to unpack .../136-libx11-dev_2%3a1.7.5-1_arm64.deb ...
#14 9.545 Unpacking libx11-dev:arm64 (2:1.7.5-1) ...
#14 9.577 Selecting previously unselected package manpages-dev.
#14 9.579 Preparing to unpack .../137-manpages-dev_5.10-1ubuntu1_all.deb ...
#14 9.580 Unpacking manpages-dev (5.10-1ubuntu1) ...
#14 9.759 Selecting previously unselected package unzip.
#14 9.762 Preparing to unpack .../138-unzip_6.0-26ubuntu3.1_arm64.deb ...
#14 9.762 Unpacking unzip (6.0-26ubuntu3.1) ...
#14 9.801 Setting up libksba8:arm64 (1.6.0-2ubuntu0.2) ...
#14 9.803 Setting up libexpat1:arm64 (2.4.7-1ubuntu0.2) ...
#14 9.805 Setting up bubblewrap (0.6.1-1) ...
#14 9.809 sysctl: setting key "kernel.unprivileged_userns_clone", ignoring: Read-only file system
#14 9.810 Setting up gcc-11-base:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 9.811 Setting up libxau6:arm64 (1:1.0.9-1build5) ...
#14 9.813 Setting up lto-disabled-list (24) ...
#14 9.814 Setting up libpsl5:arm64 (0.21.0-1.2build2) ...
#14 9.815 Setting up manpages (5.10-1ubuntu1) ...
#14 9.817 Setting up unzip (6.0-26ubuntu3.1) ...
#14 9.821 Setting up libcbor0.8:arm64 (0.8.0-2ubuntu1) ...
#14 9.822 Setting up libbrotli1:arm64 (1.0.9-2build6) ...
#14 9.823 Setting up libsqlite3-0:arm64 (3.37.2-2ubuntu0.1) ...
#14 9.824 Setting up libsasl2-modules:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 9.829 Setting up binutils-common:arm64 (2.38-4ubuntu2.1) ...
#14 9.830 Setting up libnghttp2-14:arm64 (1.43.0-1build3) ...
#14 9.831 Setting up libdeflate0:arm64 (1.10-2) ...
#14 9.833 Setting up less (590-1ubuntu0.22.04.1) ...
#14 9.838 Setting up linux-libc-dev:arm64 (5.15.0-67.74) ...
#14 9.840 Setting up libctf-nobfd0:arm64 (2.38-4ubuntu2.1) ...
#14 9.841 Setting up libnpth0:arm64 (1.6-3build2) ...
#14 9.842 Setting up libassuan0:arm64 (2.5.5-1build1) ...
#14 9.843 Setting up libgomp1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 9.845 Setting up perl-modules-5.34 (5.34.0-3ubuntu1.1) ...
#14 9.846 Setting up bzip2 (1.0.8-5build1) ...
#14 9.847 Setting up libldap-common (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 9.849 Setting up libpthread-stubs0-dev:arm64 (0.4-1build2) ...
#14 9.850 Setting up libjbig0:arm64 (2.1-3.1ubuntu0.22.04.1) ...
#14 9.851 Setting up libfakeroot:arm64 (1.28-1ubuntu1) ...
#14 9.852 Setting up libasan6:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 9.854 Setting up libsasl2-modules-db:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 9.855 Setting up fakeroot (1.28-1ubuntu1) ...
#14 9.858 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
#14 9.858 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 9.858 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 9.858 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 9.858 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 9.858 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 9.858 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 9.858 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 9.858 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 9.862 Setting up xtrans-dev (1.4.0-1) ...
#14 9.863 Setting up libtirpc-dev:arm64 (1.3.2-2ubuntu0.1) ...
#14 9.864 Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
#14 9.865 Setting up libx11-data (2:1.7.5-1) ...
#14 9.867 Setting up make (4.3-4.1build1) ...
#14 9.868 Setting up libmpfr6:arm64 (4.1.0-3build3) ...
#14 9.870 Setting up gnupg-l10n (2.2.27-3ubuntu2.1) ...
#14 9.871 Setting up librtmp1:arm64 (2.4+20151223.gitfa8646d.1-2build4) ...
#14 9.873 Setting up xz-utils (5.2.5-2ubuntu1) ...
#14 9.876 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#14 9.876 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 9.876 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 9.877 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 9.877 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 9.877 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 9.877 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 9.877 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 9.877 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 9.877 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 9.877 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 9.879 Setting up libpng16-16:arm64 (1.6.37-3build5) ...
#14 9.880 Setting up libmpc3:arm64 (1.2.1-2build1) ...
#14 9.881 Setting up libatomic1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 9.882 Setting up patch (2.7.6-7build2) ...
#14 9.884 Setting up sudo (1.9.9-1ubuntu2.3) ...
#14 9.934 Setting up fonts-dejavu-core (2.37-2build1) ...
#14 9.944 Setting up ucf (3.0043) ...
#14 10.03 Setting up libjpeg-turbo8:arm64 (2.1.2-0ubuntu1) ...
#14 10.03 Setting up libsasl2-2:arm64 (2.1.27+dfsg2-3ubuntu1.2) ...
#14 10.03 Setting up libssh-4:arm64 (0.9.6-2build1) ...
#14 10.03 Setting up libwebp7:arm64 (1.2.2-2) ...
#14 10.03 Setting up libubsan1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 10.04 Setting up nano (6.2-1) ...
#14 10.04 update-alternatives: using /bin/nano to provide /usr/bin/editor (editor) in auto mode
#14 10.04 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.04 update-alternatives: using /bin/nano to provide /usr/bin/pico (pico) in auto mode
#14 10.04 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.04 Setting up libmd0:arm64 (1.0.4-1build1) ...
#14 10.05 Setting up libnsl-dev:arm64 (1.3.0-2build2) ...
#14 10.05 Setting up libhwasan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 10.05 Setting up libcrypt-dev:arm64 (1:4.4.27-1) ...
#14 10.05 Setting up git-man (1:2.34.1-1ubuntu1.8) ...
#14 10.05 Setting up xorg-sgml-doctools (1:1.11-1.1) ...
#14 10.05 Setting up netbase (6.3) ...
#14 10.06 Setting up libbinutils:arm64 (2.38-4ubuntu2.1) ...
#14 10.06 Setting up libfido2-1:arm64 (1.10.0-1) ...
#14 10.06 Setting up libisl23:arm64 (0.24-2build1) ...
#14 10.06 Setting up libc-dev-bin (2.35-0ubuntu3.1) ...
#14 10.06 Setting up openssl (3.0.2-0ubuntu1.8) ...
#14 10.07 Setting up libbsd0:arm64 (0.11.5-1) ...
#14 10.07 Setting up libcap-dev:arm64 (1:2.44-1build3) ...
#14 10.07 Setting up readline-common (8.1.2-1) ...
#14 10.07 Setting up publicsuffix (20211207.1025-1) ...
#14 10.07 Setting up libcc1-0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 10.08 Setting up liblocale-gettext-perl (1.07-4build3) ...
#14 10.08 Setting up liblsan0:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 10.08 Setting up libitm1:arm64 (12.1.0-2ubuntu1~22.04) ...
#14 10.08 Setting up libgdbm6:arm64 (1.23-1) ...
#14 10.08 Setting up libpopt0:arm64 (1.18-3build1) ...
#14 10.09 Setting up libtsan0:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 10.09 Setting up libctf0:arm64 (2.38-4ubuntu2.1) ...
#14 10.09 Setting up libjpeg8:arm64 (8c-2ubuntu10) ...
#14 10.09 Setting up pinentry-curses (1.1.1-1build2) ...
#14 10.10 Setting up x11proto-dev (2021.5-1) ...
#14 10.10 Setting up cpp-11 (11.3.0-1ubuntu1~22.04) ...
#14 10.10 Setting up manpages-dev (5.10-1ubuntu1) ...
#14 10.10 Setting up libxdmcp6:arm64 (1:1.1.3-0ubuntu5) ...
#14 10.10 Setting up libxcb1:arm64 (1.14-3ubuntu3) ...
#14 10.10 Setting up libxau-dev:arm64 (1:1.0.9-1build5) ...
#14 10.11 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ...
#14 10.13 Setting up libedit2:arm64 (3.1-20210910-1build1) ...
#14 10.13 Setting up libreadline8:arm64 (8.1.2-1) ...
#14 10.13 Setting up binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#14 10.13 Setting up binutils (2.38-4ubuntu2.1) ...
#14 10.13 Setting up libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#14 10.13 Setting up ca-certificates (20211016ubuntu0.22.04.1) ...
#14 10.78 Updating certificates in /etc/ssl/certs...
#14 11.56 124 added, 0 removed; done.
#14 11.58 Setting up libxdmcp-dev:arm64 (1:1.1.3-0ubuntu5) ...
#14 11.58 Setting up libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#14 11.59 Setting up libgdbm-compat4:arm64 (1.23-1) ...
#14 11.59 Setting up libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 11.59 Setting up gcc-11 (11.3.0-1ubuntu1~22.04) ...
#14 11.59 Setting up cpp (4:11.2.0-1ubuntu1) ...
#14 11.59 Setting up gpgconf (2.2.27-3ubuntu2.1) ...
#14 11.60 Setting up libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#14 11.60 Setting up libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#14 11.60 Setting up libx11-6:arm64 (2:1.7.5-1) ...
#14 11.60 Setting up libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#14 11.60 Setting up curl (7.81.0-1ubuntu1.10) ...
#14 11.60 Setting up libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#14 11.60 Setting up libxmuu1:arm64 (2:1.1.3-3) ...
#14 11.60 Setting up gpg (2.2.27-3ubuntu2.1) ...
#14 11.61 Setting up rsync (3.2.7-0ubuntu0.22.04.2) ...
#14 11.62 invoke-rc.d: could not determine current runlevel
#14 11.63 invoke-rc.d: policy-rc.d denied execution of start.
#14 11.71 Setting up gnupg-utils (2.2.27-3ubuntu2.1) ...
#14 11.71 Setting up libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#14 11.71 Setting up gpg-agent (2.2.27-3ubuntu2.1) ...
#14 12.20 Setting up libxcb1-dev:arm64 (1.14-3ubuntu3) ...
#14 12.20 Setting up libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#14 12.20 Setting up openssh-client (1:8.9p1-3ubuntu0.1) ...
#14 12.25 update-alternatives: using /usr/bin/ssh to provide /usr/bin/rsh (rsh) in auto mode
#14 12.25 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.25 update-alternatives: using /usr/bin/slogin to provide /usr/bin/rlogin (rlogin) in auto mode
#14 12.25 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.26 update-alternatives: using /usr/bin/scp to provide /usr/bin/rcp (rcp) in auto mode
#14 12.26 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.26 Setting up gpgsm (2.2.27-3ubuntu2.1) ...
#14 12.26 Setting up libx11-dev:arm64 (2:1.7.5-1) ...
#14 12.27 Setting up libxext6:arm64 (2:1.3.4-1build1) ...
#14 12.27 Setting up libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#14 12.27 Setting up gcc (4:11.2.0-1ubuntu1) ...
#14 12.28 Setting up dirmngr (2.2.27-3ubuntu2.1) ...
#14 12.43 Setting up perl (5.34.0-3ubuntu1.1) ...
#14 12.44 Setting up libgd3:arm64 (2.3.0-2ubuntu2) ...
#14 12.44 Setting up libdpkg-perl (1.21.1ubuntu2.1) ...
#14 12.45 Setting up libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#14 12.45 Setting up gpg-wks-server (2.2.27-3ubuntu2.1) ...
#14 12.45 Setting up xauth (1:1.1-1build2) ...
#14 12.45 Setting up libc-devtools (2.35-0ubuntu3.1) ...
#14 12.45 Setting up gpg-wks-client (2.2.27-3ubuntu2.1) ...
#14 12.45 Setting up g++-11 (11.3.0-1ubuntu1~22.04) ...
#14 12.46 Setting up libfile-fcntllock-perl (0.22-3build7) ...
#14 12.46 Setting up libalgorithm-diff-perl (1.201-1) ...
#14 12.46 Setting up dpkg-dev (1.21.1ubuntu2.1) ...
#14 12.46 Setting up liberror-perl (0.17029-1) ...
#14 12.46 Setting up git (1:2.34.1-1ubuntu1.8) ...
#14 12.47 Setting up g++ (4:11.2.0-1ubuntu1) ...
#14 12.51 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#14 12.51 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.52 Setting up gnupg (2.2.27-3ubuntu2.1) ...
#14 12.53 Setting up build-essential (12.9ubuntu3) ...
#14 12.53 Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
#14 12.54 Setting up libalgorithm-merge-perl (0.08-3) ...
#14 12.54 Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
#14 12.57 Processing triggers for ca-certificates (20211016ubuntu0.22.04.1) ...
#14 12.57 Updating certificates in /etc/ssl/certs...
#14 ...

#17 [stage-0  4/10] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git libcap-dev sudo
#17 sha256:aa2a6bdd90ddd8815ce790c22b8330d44129f03e543b8dccb54209cf21d029b0
#17 10.11 Setting up libedit2:arm64 (3.1-20210910-1build1) ...
#17 10.11 Setting up libreadline8:arm64 (8.1.2-1) ...
#17 10.12 Setting up binutils-aarch64-linux-gnu (2.38-4ubuntu2.1) ...
#17 10.12 Setting up binutils (2.38-4ubuntu2.1) ...
#17 10.12 Setting up libldap-2.5-0:arm64 (2.5.14+dfsg-0ubuntu0.22.04.1) ...
#17 10.12 Setting up ca-certificates (20211016ubuntu0.22.04.1) ...
#17 10.73 Updating certificates in /etc/ssl/certs...
#17 11.57 124 added, 0 removed; done.
#17 11.59 Setting up libfreetype6:arm64 (2.11.1+dfsg-1ubuntu0.1) ...
#17 11.59 Setting up libgdbm-compat4:arm64 (1.23-1) ...
#17 11.60 Setting up libgcc-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 11.60 Setting up gcc-11 (11.3.0-1ubuntu1~22.04) ...
#17 11.60 Setting up cpp (4:11.2.0-1ubuntu1) ...
#17 11.61 Setting up gpgconf (2.2.27-3ubuntu2.1) ...
#17 11.61 Setting up libcurl4:arm64 (7.81.0-1ubuntu1.10) ...
#17 11.61 Setting up libc6-dev:arm64 (2.35-0ubuntu3.1) ...
#17 11.61 Setting up libx11-6:arm64 (2:1.7.5-1) ...
#17 11.61 Setting up libtiff5:arm64 (4.3.0-6ubuntu0.4) ...
#17 11.61 Setting up curl (7.81.0-1ubuntu1.10) ...
#17 11.61 Setting up libfontconfig1:arm64 (2.13.1-4.2ubuntu5) ...
#17 11.62 Setting up libxmuu1:arm64 (2:1.1.3-3) ...
#17 11.62 Setting up gpg (2.2.27-3ubuntu2.1) ...
#17 11.62 Setting up gnupg-utils (2.2.27-3ubuntu2.1) ...
#17 11.62 Setting up libperl5.34:arm64 (5.34.0-3ubuntu1.1) ...
#17 11.62 Setting up gpg-agent (2.2.27-3ubuntu2.1) ...
#17 12.10 Setting up libxpm4:arm64 (1:3.5.12-1ubuntu0.22.04.1) ...
#17 12.10 Setting up openssh-client (1:8.9p1-3ubuntu0.1) ...
#17 12.16 update-alternatives: using /usr/bin/ssh to provide /usr/bin/rsh (rsh) in auto mode
#17 12.16 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 12.16 update-alternatives: using /usr/bin/slogin to provide /usr/bin/rlogin (rlogin) in auto mode
#17 12.16 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 12.16 update-alternatives: using /usr/bin/scp to provide /usr/bin/rcp (rcp) in auto mode
#17 12.17 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 12.17 Setting up gpgsm (2.2.27-3ubuntu2.1) ...
#17 12.17 Setting up libxext6:arm64 (2:1.3.4-1build1) ...
#17 12.18 Setting up libcurl3-gnutls:arm64 (7.81.0-1ubuntu1.10) ...
#17 12.18 Setting up gcc (4:11.2.0-1ubuntu1) ...
#17 12.19 Setting up dirmngr (2.2.27-3ubuntu2.1) ...
#17 12.33 Setting up perl (5.34.0-3ubuntu1.1) ...
#17 12.34 Setting up libgd3:arm64 (2.3.0-2ubuntu2) ...
#17 12.35 Setting up libdpkg-perl (1.21.1ubuntu2.1) ...
#17 12.35 Setting up libstdc++-11-dev:arm64 (11.3.0-1ubuntu1~22.04) ...
#17 12.35 Setting up gpg-wks-server (2.2.27-3ubuntu2.1) ...
#17 12.35 Setting up xauth (1:1.1-1build2) ...
#17 12.35 Setting up libc-devtools (2.35-0ubuntu3.1) ...
#17 12.35 Setting up gpg-wks-client (2.2.27-3ubuntu2.1) ...
#17 12.35 Setting up g++-11 (11.3.0-1ubuntu1~22.04) ...
#17 12.36 Setting up libfile-fcntllock-perl (0.22-3build7) ...
#17 12.36 Setting up libalgorithm-diff-perl (1.201-1) ...
#17 12.36 Setting up dpkg-dev (1.21.1ubuntu2.1) ...
#17 12.36 Setting up liberror-perl (0.17029-1) ...
#17 12.36 Setting up git (1:2.34.1-1ubuntu1.8) ...
#17 12.37 Setting up g++ (4:11.2.0-1ubuntu1) ...
#17 12.40 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#17 12.40 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 12.40 Setting up gnupg (2.2.27-3ubuntu2.1) ...
#17 12.40 Setting up build-essential (12.9ubuntu3) ...
#17 12.40 Setting up libalgorithm-diff-xs-perl (0.04-6build3) ...
#17 12.40 Setting up libalgorithm-merge-perl (0.08-3) ...
#17 12.40 Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
#17 12.42 Processing triggers for ca-certificates (20211016ubuntu0.22.04.1) ...
#17 12.43 Updating certificates in /etc/ssl/certs...
#17 13.01 0 added, 0 removed; done.
#17 13.01 Running hooks in /etc/ca-certificates/update.d...
#17 13.01 done.
#17 DONE 13.9s

#14 [stage-1  6/36] RUN DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential curl git rsync sudo unzip nano libcap-dev libx11-dev bubblewrap
#14 sha256:a8ae30d2a784d075ecc5cf19dc50c3bb664056e2f02b54e3ad85dd92af04bb6f
#14 13.21 0 added, 0 removed; done.
#14 13.21 Running hooks in /etc/ca-certificates/update.d...
#14 13.21 done.
#14 DONE 13.5s

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

#19 [stage-0  6/10] RUN git config --global user.name "Docker"
#19 sha256:219f60fe6a4708842607d38ee0b8bb272c3a59dc3108b3b803e2afabb5eaa686
#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:115040dfb9e73743927d83993d216c12a1d412d2a00f17e8c131d055e931995c
#20 0.381 Cloning into '/tmp/opam'...
#20 19.63 Note: switching to '8bc4698fb9caded0fa5c2bf08fe67a34d732451e'.
#20 19.63 
#20 19.63 You are in 'detached HEAD' state. You can look around, make experimental
#20 19.63 changes and commit them, and you can discard any commits you make in this
#20 19.63 state without impacting any branches by switching back to a branch.
#20 19.63 
#20 19.63 If you want to create a new branch to retain commits you create, you may
#20 19.63 do so (now or later) by using -c with the switch command. Example:
#20 19.63 
#20 19.63   git switch -c <new-branch-name>
#20 19.63 
#20 19.63 Or undo this operation with:
#20 19.63 
#20 19.63   git switch -
#20 19.63 
#20 19.63 Turn off this advice by setting config variable advice.detachedHead to false
#20 19.63 
#20 19.63 HEAD is now at 8bc4698f Merge pull request #5480 from rjbou/config-invariant
#20 20.56 configure: Configuring OCaml version 4.14.1
#20 20.57 checking build system type... aarch64-unknown-linux-gnu
#20 20.65 checking host system type... aarch64-unknown-linux-gnu
#20 20.65 checking target system type... aarch64-unknown-linux-gnu
#20 20.65 checking for ld... ld
#20 20.65 checking how to print strings... printf
#20 20.66 checking for gcc... gcc
#20 20.69 checking whether the C compiler works... yes
#20 20.75 checking for C compiler default output file name... a.out
#20 20.75 checking for suffix of executables... 
#20 20.81 checking whether we are cross compiling... no
#20 20.85 checking for suffix of object files... o
#20 20.89 checking whether we are using the GNU C compiler... yes
#20 20.92 checking whether gcc accepts -g... yes
#20 20.94 checking for gcc option to accept ISO C89... none needed
#20 20.99 checking for a sed that does not truncate output... /usr/bin/sed
#20 20.99 checking for grep that handles long lines and -e... /usr/bin/grep
#20 21.00 checking for egrep... /usr/bin/grep -E
#20 21.00 checking for fgrep... /usr/bin/grep -F
#20 21.00 checking for ld used by gcc... ld
#20 21.00 checking if the linker (ld) is GNU ld... yes
#20 21.01 checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
#20 21.01 checking the name lister (/usr/bin/nm -B) interface... BSD nm
#20 21.04 checking whether ln -s works... yes
#20 21.05 checking the maximum length of command line arguments... 1572864
#20 21.06 checking how to convert aarch64-unknown-linux-gnu file names to aarch64-unknown-linux-gnu format... func_convert_file_noop
#20 21.06 checking how to convert aarch64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
#20 21.06 checking for ld option to reload object files... -r
#20 21.06 checking for objdump... objdump
#20 21.06 checking how to recognize dependent libraries... pass_all
#20 21.06 checking for dlltool... no
#20 21.06 checking how to associate runtime and link libraries... printf %s\n
#20 21.06 checking for ar... ar
#20 21.06 checking for archiver @FILE support... @
#20 21.10 checking for strip... strip
#20 21.10 checking for ranlib... ranlib
#20 21.10 checking for gawk... no
#20 21.10 checking for mawk... mawk
#20 21.10 checking command to parse /usr/bin/nm -B output from gcc object... ok
#20 21.21 checking for sysroot... no
#20 21.21 checking for a working dd... /usr/bin/dd
#20 21.21 checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
#20 21.22 checking for mt... no
#20 21.22 checking if : is a manifest tool... no
#20 21.23 checking how to run the C preprocessor... gcc -E
#20 21.31 checking for ANSI C header files... yes
#20 21.48 checking for sys/types.h... yes
#20 21.52 checking for sys/stat.h... yes
#20 21.57 checking for stdlib.h... yes
#20 21.62 checking for string.h... yes
#20 21.67 checking for memory.h... yes
#20 21.72 checking for strings.h... yes
#20 21.77 checking for inttypes.h... yes
#20 21.81 checking for stdint.h... yes
#20 21.86 checking for unistd.h... yes
#20 21.91 checking for dlfcn.h... yes
#20 21.96 checking for objdir... .libs
#20 22.06 checking if gcc supports -fno-rtti -fno-exceptions... no
#20 22.10 checking for gcc option to produce PIC... -fPIC -DPIC
#20 22.10 checking if gcc PIC flag -fPIC -DPIC works... yes
#20 22.13 checking if gcc static flag -static works... yes
#20 22.21 checking if gcc supports -c -o file.o... yes
#20 22.26 checking if gcc supports -c -o file.o... (cached) yes
#20 22.26 checking whether the gcc linker (ld) supports shared libraries... yes
#20 22.27 checking whether -lc should be explicitly linked in... no
#20 22.33 checking dynamic linker characteristics... GNU/Linux ld.so
#20 22.41 checking how to hardcode library paths into programs... immediate
#20 22.41 checking whether stripping libraries is possible... yes
#20 22.41 checking if libtool supports shared libraries... yes
#20 22.41 checking whether to build shared libraries... yes
#20 22.41 checking whether to build static libraries... yes
#20 22.41 checking C compiler vendor... gcc-11-3
#20 22.43 checking whether host executables can be run in the build... yes
#20 22.49 checking whether #! works in shell scripts... yes
#20 22.50 checking for flexdll sources... checking for flexlink... no
#20 22.50 checking flexdll.h usability... no
#20 22.52 checking flexdll.h presence... no
#20 22.54 checking for flexdll.h... no
#20 22.55 checking for a BSD-compatible install... /usr/bin/install -c
#20 22.56 checking for cos in -lm... yes
#20 22.63 checking math.h usability... yes
#20 22.68 checking math.h presence... yes
#20 22.70 checking for math.h... yes
#20 22.71 checking for unistd.h... (cached) yes
#20 22.71 checking for stdint.h... (cached) yes
#20 22.71 checking for dirent.h... yes
#20 22.73 checking for sys/select.h... yes
#20 22.76 checking for off_t... yes
#20 22.85 checking size of int... 4
#20 22.91 checking size of long... 8
#20 22.99 checking size of long *... 8
#20 23.07 checking size of short... 2
#20 23.14 checking size of long long... 8
#20 23.21 configure: Target is a 64 bits architecture
#20 23.21 checking whether byte ordering is bigendian... no
#20 23.30 checking alignment of double... 8
#20 23.37 checking alignment of long... 8
#20 23.45 checking alignment of long long... 8
#20 23.53 checking whether the C compiler supports __attribute__((aligned(n)))... yes
#20 23.56 checking whether the C compiler supports __attribute__((optimize("tree-vectorize")))... yes
#20 23.59 checking for ld... ld
#20 23.59 checking for rlwrap... no
#20 23.59 configure: checking semantics of signal handlers
#20 23.59 checking for sigaction... yes
#20 23.65 checking for sigprocmask... yes
#20 23.71 configure: POSIX signal handling found.
#20 23.72 checking for expm1... yes
#20 23.80 checking for log1p... yes
#20 23.88 checking for hypot... yes
#20 23.95 checking for fma... yes
#20 24.03 checking for exp2... yes
#20 24.10 checking for log2... yes
#20 24.19 checking for cbrt... yes
#20 24.27 checking for acosh... yes
#20 24.34 checking for asinh... yes
#20 24.42 checking for atanh... yes
#20 24.51 checking for erf... yes
#20 24.58 checking for erfc... yes
#20 24.66 checking for trunc... yes
#20 24.73 checking for round... yes
#20 24.81 checking for copysign... yes
#20 24.89 checking whether round works... yes
#20 24.95 checking whether fma works... yes
#20 25.02 checking for getrusage... yes
#20 25.07 checking for times... yes
#20 25.13 checking for secure_getenv... yes
#20 25.18 checking for issetugid... no
#20 25.28 checking for library containing clock_gettime... none required
#20 25.34 checking for socket... yes
#20 25.40 checking for socketpair... yes
#20 25.47 checking for bind... yes
#20 25.54 checking for listen... yes
#20 25.61 checking for accept... yes
#20 25.69 checking for connect... yes
#20 25.75 checking for socklen_t... yes
#20 25.82 checking for inet_aton... yes
#20 25.87 checking for struct sockaddr_in6... yes
#20 25.94 checking for getaddrinfo... yes
#20 26.00 checking for getnameinfo... yes
#20 26.05 checking for inet_pton... yes
#20 26.10 checking for inet_ntop... yes
#20 26.15 checking for rewinddir... yes
#20 26.22 checking for lockf... yes
#20 26.27 checking for mkfifo... yes
#20 26.32 checking for getcwd... yes
#20 26.37 checking whether system is declared... yes
#20 26.41 checking for sys/types.h... (cached) yes
#20 26.41 checking utime.h usability... yes
#20 26.45 checking utime.h presence... yes
#20 26.47 checking for utime.h... yes
#20 26.47 checking for utime... yes
#20 26.52 checking for utimes... yes
#20 26.58 checking for fchmod... yes
#20 26.64 checking for fchown... yes
#20 26.70 checking for truncate... yes
#20 26.77 checking for ftruncate... yes
#20 26.83 checking for select... yes
#20 26.89 checking for fd_set... yes
#20 26.96 checking for nanosleep... yes
#20 27.01 checking for symlink... yes
#20 27.06 checking for readlink... yes
#20 27.12 checking for lstat... yes
#20 27.18 checking for realpath... yes
#20 27.23 checking for waitpid... yes
#20 27.30 checking for wait4... yes
#20 27.36 checking for getgroups... yes
#20 27.42 checking for setgroups... yes
#20 27.48 checking for initgroups... yes
#20 27.54 checking termios.h usability... yes
#20 27.57 checking termios.h presence... yes
#20 27.59 checking for termios.h... yes
#20 27.59 checking for tcgetattr... yes
#20 27.66 checking for tcsetattr... yes
#20 27.71 checking for tcsendbreak... yes
#20 27.77 checking for tcflush... yes
#20 27.82 checking for tcflow... yes
#20 27.89 checking for setitimer... yes
#20 27.96 checking for gethostname... yes
#20 28.03 checking sys/utsname.h usability... yes
#20 28.06 checking sys/utsname.h presence... yes
#20 28.08 checking for sys/utsname.h... yes
#20 28.08 checking for uname... yes
#20 28.13 checking for gettimeofday... yes
#20 28.19 checking for mktime... yes
#20 28.25 checking for setsid... yes
#20 28.30 checking for putenv... yes
#20 28.35 checking for setenv... yes
#20 28.41 checking for unsetenv... yes
#20 28.46 checking locale.h usability... yes
#20 28.50 checking locale.h presence... yes
#20 28.52 checking for locale.h... yes
#20 28.52 checking for newlocale... yes
#20 28.58 checking for freelocale... yes
#20 28.64 checking for uselocale... yes
#20 28.70 checking xlocale.h usability... no
#20 28.74 checking xlocale.h presence... no
#20 28.77 checking for xlocale.h... no
#20 28.77 checking for strtod_l... yes
#20 28.83 checking for dlopen... yes
#20 28.89 configure: Dynamic loading of shared libraries is supported.
#20 28.89 checking sys/mman.h usability... yes
#20 28.93 checking sys/mman.h presence... yes
#20 28.95 checking for sys/mman.h... yes
#20 28.95 checking for mmap... yes
#20 29.01 checking for munmap... yes
#20 29.06 checking for pwrite... yes
#20 29.11 checking whether the C compiler supports -fdebug-prefix-map... yes
#20 29.14 checking for struct stat.st_atim.tv_nsec... yes
#20 29.19 configure: stat supports nanosecond precision
#20 29.19 checking how many arguments gethostbyname_r() takes... six
#20 29.26 checking how many arguments gethostbyaddr_r() takes... eight
#20 29.32 checking for mkstemp... yes
#20 29.37 checking for nice... yes
#20 29.44 checking for dup3... yes
#20 29.49 checking for pipe2... yes
#20 29.55 checking for accept4... yes
#20 29.60 checking for getauxval... yes
#20 29.66 checking sys/shm.h usability... yes
#20 29.69 checking sys/shm.h presence... yes
#20 29.71 checking for sys/shm.h... yes
#20 29.71 checking for shmat... yes
#20 29.77 checking for execvpe... yes
#20 29.83 checking spawn.h usability... yes
#20 29.87 checking spawn.h presence... yes
#20 29.89 checking for spawn.h... yes
#20 29.89 checking for posix_spawn... yes
#20 29.95 checking for posix_spawnp... yes
#20 30.01 checking for ffs... yes
#20 30.07 checking for _BitScanForward... no
#20 30.13 configure: replay debugger supported
#20 30.13 checking whether stack overflows can be detected... yes
#20 30.13 checking whether gcc is Clang... no
#20 30.16 checking whether pthreads work with "-pthread" and "-lpthread"... yes
#20 30.22 checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
#20 30.28 checking whether more special flags are required for pthreads... no
#20 30.28 checking for PTHREAD_PRIO_INHERIT... yes
#20 30.35 configure: the POSIX threads library is supported
#20 30.35 checking for sigwait... yes
#20 30.41 checking whether the assembler supports --debug-prefix-map... yes
#20 30.42 checking whether the assembler supports CFI directives... yes
#20 30.47 configure: not using frame pointers
#20 30.47 checking whether mmap supports huge pages... yes
#20 30.59 configure: creating ./config.status
#20 31.36 config.status: creating Makefile.build_config
#20 31.38 config.status: creating Makefile.config
#20 31.40 config.status: creating stdlib/sys.ml
#20 31.42 config.status: creating manual/src/version.tex
#20 31.45 config.status: creating manual/src/html_processing/src/common.ml
#20 31.47 config.status: creating tools/eventlog_metadata
#20 31.50 config.status: creating runtime/caml/m.h
#20 31.52 config.status: creating runtime/caml/s.h
#20 31.54 config.status: creating runtime/caml/version.h
#20 31.56 config.status: executing libtool commands
#20 31.64 make -j -C runtime sak
#20 31.64 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 31.71 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o sak.o sak.c
#20 31.77 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 31.79 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 31.79 make -j coldstart
#20 31.79 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 31.81 make -j -C runtime all
#20 31.81 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 31.88 echo "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs" > ld.conf
#20 31.88 tr -d '\r' < caml/instruct.h | \
#20 31.88 sed -e '/\/\*/d' \
#20 31.88     -e '/^#/d' \
#20 31.88     -e 's/enum /static char * names_of_/' \
#20 31.88     -e 's/{$/[] = {/' \
#20 31.88     -e 's/\([[:upper:]][[:upper:]_0-9]*\)/"\1"/g' > caml/opnames.h
#20 31.88 echo "/tmp/opam/bootstrap/ocaml/lib/ocaml" >> ld.conf
#20 31.88 tr -d '\r' < caml/instruct.h | \
#20 31.88 sed -n -e '/^  /s/ \([A-Z]\)/ \&\&lbl_\1/gp' \
#20 31.88        -e '/^}/q' > caml/jumptbl.h
#20 31.88 echo '/* This file is generated from ../Makefile.config */' > build_config.h
#20 31.90 echo '#define OCAML_STDLIB_DIR "/tmp/opam/bootstrap/ocaml/lib/ocaml"' >> build_config.h
#20 31.90 cp primitives.new primitives
#20 31.90 echo '#define HOST "aarch64-unknown-linux-gnu"' >> build_config.h
#20 31.90 (echo '#define CAML_INTERNALS'; \
#20 31.90          echo '#include "caml/mlvalues.h"'; \
#20 31.90  echo '#include "caml/prims.h"'; \
#20 31.90  sed -e 's/.*/extern value &();/' primitives; \
#20 31.90  echo 'c_primitive caml_builtin_cprim[] = {'; \
#20 31.90  sed -e 's/.*/  &,/' primitives; \
#20 31.90  echo '  0 };'; \
#20 31.90  echo 'char * caml_names_of_builtin_cprim[] = {'; \
#20 31.90  sed -e 's/.*/  "&",/' primitives; \
#20 31.90  echo '  0 };') > prims.c
#20 31.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o interp.b.o interp.c
#20 31.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o misc.b.o misc.c
#20 31.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o stacks.b.o stacks.c
#20 31.90 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fix_code.b.o fix_code.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_aux.b.o startup_aux.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_byt.b.o startup_byt.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o freelist.b.o freelist.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o major_gc.b.o major_gc.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o minor_gc.b.o minor_gc.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memory.b.o memory.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o alloc.b.o alloc.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o roots_byt.b.o roots_byt.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o globroots.b.o globroots.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fail_byt.b.o fail_byt.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals.b.o signals.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals_byt.b.o signals_byt.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o printexc.b.o printexc.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace_byt.b.o backtrace_byt.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace.b.o backtrace.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compare.b.o compare.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o ints.b.o ints.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o eventlog.b.o eventlog.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o floats.b.o floats.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o str.b.o str.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o array.b.o array.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o io.b.o io.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o extern.b.o extern.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o intern.b.o intern.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o hash.b.o hash.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o sys.b.o sys.c
#20 31.91 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o meta.b.o meta.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o parsing.b.o parsing.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o gc_ctrl.b.o gc_ctrl.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o md5.b.o md5.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o obj.b.o obj.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o lexing.b.o lexing.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o callback.b.o callback.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o debugger.b.o debugger.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o weak.b.o weak.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compact.b.o compact.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o finalise.b.o finalise.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o custom.b.o custom.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o dynlink.b.o dynlink.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o afl.b.o afl.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o unix.b.o unix.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o bigarray.b.o bigarray.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o main.b.o main.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memprof.b.o memprof.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o domain.b.o domain.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o skiplist.b.o skiplist.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o codefrag.b.o codefrag.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o interp.bd.o interp.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o misc.bd.o misc.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o stacks.bd.o stacks.c
#20 31.92 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o fix_code.bd.o fix_code.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o startup_aux.bd.o startup_aux.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o startup_byt.bd.o startup_byt.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o freelist.bd.o freelist.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o major_gc.bd.o major_gc.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o minor_gc.bd.o minor_gc.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o memory.bd.o memory.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o alloc.bd.o alloc.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o roots_byt.bd.o roots_byt.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o globroots.bd.o globroots.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o fail_byt.bd.o fail_byt.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o signals.bd.o signals.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o signals_byt.bd.o signals_byt.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o printexc.bd.o printexc.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o backtrace_byt.bd.o backtrace_byt.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o backtrace.bd.o backtrace.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o compare.bd.o compare.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o ints.bd.o ints.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o eventlog.bd.o eventlog.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o floats.bd.o floats.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o str.bd.o str.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o array.bd.o array.c
#20 31.93 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o io.bd.o io.c
#20 31.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o extern.bd.o extern.c
#20 31.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o intern.bd.o intern.c
#20 31.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o hash.bd.o hash.c
#20 31.94 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o sys.bd.o sys.c
#20 31.95 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o meta.bd.o meta.c
#20 31.97 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o parsing.bd.o parsing.c
#20 31.97 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o gc_ctrl.bd.o gc_ctrl.c
#20 31.97 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o md5.bd.o md5.c
#20 31.97 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o obj.bd.o obj.c
#20 31.98 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o lexing.bd.o lexing.c
#20 31.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o callback.bd.o callback.c
#20 31.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o debugger.bd.o debugger.c
#20 31.99 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o weak.bd.o weak.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o compact.bd.o compact.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o finalise.bd.o finalise.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o custom.bd.o custom.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o dynlink.bd.o dynlink.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o afl.bd.o afl.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o unix.bd.o unix.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o bigarray.bd.o bigarray.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o main.bd.o main.c
#20 32.00 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o memprof.bd.o memprof.c
#20 32.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o domain.bd.o domain.c
#20 32.01 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o skiplist.bd.o skiplist.c
#20 32.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o codefrag.bd.o codefrag.c
#20 32.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DDEBUG  -o instrtrace.bd.o instrtrace.c
#20 32.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o interp.bi.o interp.c
#20 32.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o misc.bi.o misc.c
#20 32.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o stacks.bi.o stacks.c
#20 32.02 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o fix_code.bi.o fix_code.c
#20 32.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o startup_aux.bi.o startup_aux.c
#20 32.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o startup_byt.bi.o startup_byt.c
#20 32.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o freelist.bi.o freelist.c
#20 32.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o major_gc.bi.o major_gc.c
#20 32.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o minor_gc.bi.o minor_gc.c
#20 32.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o memory.bi.o memory.c
#20 32.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o alloc.bi.o alloc.c
#20 32.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o roots_byt.bi.o roots_byt.c
#20 32.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o globroots.bi.o globroots.c
#20 32.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o fail_byt.bi.o fail_byt.c
#20 32.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o signals.bi.o signals.c
#20 32.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o signals_byt.bi.o signals_byt.c
#20 32.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o printexc.bi.o printexc.c
#20 32.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o backtrace_byt.bi.o backtrace_byt.c
#20 32.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o backtrace.bi.o backtrace.c
#20 32.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o compare.bi.o compare.c
#20 32.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o ints.bi.o ints.c
#20 32.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DCAML_INSTR  -o eventlog.bi.o eventlog.c
#20 32.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= -DCAML_INSTR  -o floats.bi.o floats.c
#20 32.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= -DCAML_INSTR  -o str.bi.o str.c
#20 32.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= -DCAML_INSTR  -o array.bi.o array.c
#20 32.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= -DCAML_INSTR  -o io.bi.o io.c
#20 32.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= -DCAML_INSTR  -o extern.bi.o extern.c
#20 32.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= -DCAML_INSTR  -o intern.bi.o intern.c
#20 32.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= -DCAML_INSTR  -o hash.bi.o hash.c
#20 32.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= -DCAML_INSTR  -o sys.bi.o sys.c
#20 32.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= -DCAML_INSTR  -o meta.bi.o meta.c
#20 32.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= -DCAML_INSTR  -o parsing.bi.o parsing.c
#20 32.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= -DCAML_INSTR  -o gc_ctrl.bi.o gc_ctrl.c
#20 32.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= -DCAML_INSTR  -o md5.bi.o md5.c
#20 32.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= -DCAML_INSTR  -o obj.bi.o obj.c
#20 32.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= -DCAML_INSTR  -o lexing.bi.o lexing.c
#20 32.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= -DCAML_INSTR  -o callback.bi.o callback.c
#20 32.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= -DCAML_INSTR  -o debugger.bi.o debugger.c
#20 32.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= -DCAML_INSTR  -o weak.bi.o weak.c
#20 32.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= -DCAML_INSTR  -o compact.bi.o compact.c
#20 32.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= -DCAML_INSTR  -o finalise.bi.o finalise.c
#20 32.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= -DCAML_INSTR  -o custom.bi.o custom.c
#20 32.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= -DCAML_INSTR  -o dynlink.bi.o dynlink.c
#20 32.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= -DCAML_INSTR  -o afl.bi.o afl.c
#20 32.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= -DCAML_INSTR  -o unix.bi.o unix.c
#20 32.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= -DCAML_INSTR  -o bigarray.bi.o bigarray.c
#20 32.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= -DCAML_INSTR  -o main.bi.o main.c
#20 32.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= -DCAML_INSTR  -o memprof.bi.o memprof.c
#20 32.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= -DCAML_INSTR  -o domain.bi.o domain.c
#20 32.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= -DCAML_INSTR  -o skiplist.bi.o skiplist.c
#20 32.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= -DCAML_INSTR  -o codefrag.bi.o codefrag.c
#20 32.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o interp.bpic.o interp.c
#20 32.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o misc.bpic.o misc.c
#20 32.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o stacks.bpic.o stacks.c
#20 32.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fix_code.bpic.o fix_code.c
#20 32.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_aux.bpic.o startup_aux.c
#20 32.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o startup_byt.bpic.o startup_byt.c
#20 32.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o freelist.bpic.o freelist.c
#20 32.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o major_gc.bpic.o major_gc.c
#20 32.16 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o minor_gc.bpic.o minor_gc.c
#20 32.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memory.bpic.o memory.c
#20 32.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o alloc.bpic.o alloc.c
#20 32.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o roots_byt.bpic.o roots_byt.c
#20 32.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o globroots.bpic.o globroots.c
#20 32.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o fail_byt.bpic.o fail_byt.c
#20 32.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals.bpic.o signals.c
#20 32.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o signals_byt.bpic.o signals_byt.c
#20 32.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o printexc.bpic.o printexc.c
#20 32.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace_byt.bpic.o backtrace_byt.c
#20 32.19 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o backtrace.bpic.o backtrace.c
#20 32.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compare.bpic.o compare.c
#20 32.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o ints.bpic.o ints.c
#20 32.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o eventlog.bpic.o eventlog.c
#20 32.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o floats.bpic.o floats.c
#20 32.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o str.bpic.o str.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o array.bpic.o array.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o io.bpic.o io.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o extern.bpic.o extern.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o intern.bpic.o intern.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o hash.bpic.o hash.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o sys.bpic.o sys.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o meta.bpic.o meta.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o parsing.bpic.o parsing.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o gc_ctrl.bpic.o gc_ctrl.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o md5.bpic.o md5.c
#20 32.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o obj.bpic.o obj.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o lexing.bpic.o lexing.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o callback.bpic.o callback.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o debugger.bpic.o debugger.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o weak.bpic.o weak.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o compact.bpic.o compact.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o finalise.bpic.o finalise.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o custom.bpic.o custom.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o dynlink.bpic.o dynlink.c
#20 32.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o afl.bpic.o afl.c
#20 32.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o unix.bpic.o unix.c
#20 32.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o bigarray.bpic.o bigarray.c
#20 32.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o main.bpic.o main.c
#20 32.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o memprof.bpic.o memprof.c
#20 32.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o domain.bpic.o domain.c
#20 32.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o skiplist.bpic.o skiplist.c
#20 32.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT=  -o codefrag.bpic.o codefrag.c
#20 32.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=  \
#20 32.26   -o prims.o prims.c
#20 32.55 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 32.55 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 32.57 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 32.58 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 32.66 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 32.67 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 32.73 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 32.73 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 32.80 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 32.80 make -j -C stdlib \
#20 32.80   OCAMLRUN='$(ROOTDIR)/runtime/ocamlrun' \
#20 32.80   CAMLC='$(BOOT_OCAMLC) -use-prims ../runtime/primitives' all
#20 32.80 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 32.81 ../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 32.81 ../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 32.82 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrun' > camlheader
#20 32.82 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrun' > target_camlheader
#20 32.82 echo '#!' | tr -d '\012' > camlheader_ur
#20 32.82 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrund' > camlheaderd
#20 32.82 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlrund' > target_camlheaderd
#20 32.82 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlruni' > camlheaderi
#20 32.82 echo '#!/tmp/opam/bootstrap/ocaml/bin/ocamlruni' > target_camlheaderi
#20 32.84 ../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 32.93 ../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 32.93 ../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 33.00 ../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 33.00 ../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 33.00          -o stdlib__Pervasives.cmo -c pervasives.ml
#20 33.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.01          -o stdlib__Either.cmi -c either.mli
#20 33.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.01          -o stdlib__Sys.cmi -c sys.mli
#20 33.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.01          -o stdlib__Nativeint.cmi -c nativeint.mli
#20 33.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.01          -o stdlib__Int32.cmi -c int32.mli
#20 33.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalLazy.mli
#20 33.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.01          -o stdlib__Bool.cmi -c bool.mli
#20 33.01 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.01          -o stdlib__Char.cmi -c char.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Uchar.cmi -c uchar.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Int.cmi -c int.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Unit.cmi -c unit.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Marshal.cmi -c marshal.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Int64.cmi -c int64.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Lexing.cmi -c lexing.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Stream.cmi -c stream.mli
#20 33.02 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.02          -o stdlib__Arg.cmi -c arg.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__Atomic.cmi -c atomic.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__Printexc.cmi -c printexc.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__Fun.cmi -c fun.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__Digest.cmi -c digest.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 33.03          -o stdlib__Scanf.cmi -c scanf.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__Callback.cmi -c callback.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__Filename.cmi -c filename.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__Complex.cmi -c complex.mli
#20 33.03 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.03          -o stdlib__In_channel.cmi -c in_channel.mli
#20 33.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.04          -o stdlib__Out_channel.cmi -c out_channel.mli
#20 33.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c std_exit.ml
#20 33.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.04          -o stdlib__Lazy.cmi -c lazy.mli
#20 33.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.04          -o stdlib__Bool.cmo -c bool.ml
#20 33.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.04          -o stdlib__Int.cmo -c int.ml
#20 33.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.04          -o stdlib__Either.cmo -c either.ml
#20 33.04 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.04          -o stdlib__Obj.cmi -c obj.mli
#20 33.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.05          -o stdlib__Seq.cmi -c seq.mli
#20 33.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.05          -o stdlib__Genlex.cmi -c genlex.mli
#20 33.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.05          -o stdlib__Sys.cmo -c sys.ml
#20 33.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.05          -o stdlib__Char.cmo -c char.ml
#20 33.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.05          -o stdlib__Uchar.cmo -c uchar.ml
#20 33.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.05          -o stdlib__Unit.cmo -c unit.ml
#20 33.05 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.05          -o stdlib__Int32.cmo -c int32.ml
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Int64.cmo -c int64.ml
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Nativeint.cmo -c nativeint.ml
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Atomic.cmo -c atomic.ml
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Fun.cmo -c fun.ml
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Gc.cmi -c gc.mli
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Random.cmi -c random.mli
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Complex.cmo -c complex.ml
#20 33.06 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.06          -o stdlib__Bigarray.cmi -c bigarray.mli
#20 33.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.07          -o stdlib__Out_channel.cmo -c out_channel.ml
#20 33.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.07          -o stdlib__Obj.cmo -c obj.ml
#20 33.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalLazy.ml
#20 33.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.07          -o stdlib__Lazy.cmo -c lazy.ml
#20 33.07 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.07          -o stdlib__Parsing.cmi -c parsing.mli
#20 33.08 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.08          -o stdlib__Callback.cmo -c callback.ml
#20 33.08 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalOO.mli
#20 33.08 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalMod.mli
#20 33.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.10          -o stdlib__Seq.cmo -c seq.ml
#20 33.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.10          -o stdlib__Option.cmi -c option.mli
#20 33.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.10          -o stdlib__Result.cmi -c result.mli
#20 33.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.10          -o stdlib__List.cmi -c list.mli
#20 33.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.10          -o stdlib__Bytes.cmi -c bytes.mli
#20 33.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.10          -o stdlib__String.cmi -c string.mli
#20 33.10 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.10          -o stdlib__Array.cmi -c array.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.11          -o stdlib__Float.cmi -c float.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.11          -o stdlib__Set.cmi -c set.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.11          -o stdlib__Map.cmi -c map.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.11          -o stdlib__Stack.cmi -c stack.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.11          -o stdlib__Queue.cmi -c queue.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A \
#20 33.11          -o stdlib__Buffer.cmi -c buffer.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.11          -o stdlib__Hashtbl.cmi -c hashtbl.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -no-principal \
#20 33.11          -o stdlib__Oo.cmi -c oo.mli
#20 33.11 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 33.11          -o stdlib__ArrayLabels.cmi -c arrayLabels.mli
#20 33.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 33.12          -o stdlib__ListLabels.cmi -c listLabels.mli
#20 33.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 33.12          -o stdlib__BytesLabels.cmi -c bytesLabels.mli
#20 33.12 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 33.12          -o stdlib__StringLabels.cmi -c stringLabels.mli
#20 33.13 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.13          -o stdlib__Result.cmo -c result.ml
#20 33.13 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.13          -o stdlib__Option.cmo -c option.ml
#20 33.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.14          -o stdlib__Array.cmo -c array.ml
#20 33.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.14          -o stdlib__Parsing.cmo -c parsing.ml
#20 33.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   -c camlinternalMod.ml
#20 33.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.14          -o stdlib__Bigarray.cmo -c bigarray.ml
#20 33.14 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.14          -o stdlib__Queue.cmo -c queue.ml
#20 33.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.15          -o stdlib__List.cmo -c list.ml
#20 33.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.15          -o stdlib__Set.cmo -c set.ml
#20 33.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.15          -o stdlib__Stack.cmo -c stack.ml
#20 33.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match -c camlinternalFormat.mli
#20 33.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 33.15          -o stdlib__Printf.cmi -c printf.mli
#20 33.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.15          -o stdlib__Random.cmo -c random.ml
#20 33.15 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 33.15          -o stdlib__Format.cmi -c format.mli
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.16          -o stdlib__Oo.cmo -c oo.ml
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.16          -o stdlib__Bytes.cmo -c bytes.ml
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.16          -o stdlib__String.cmo -c string.ml
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.16          -o stdlib__Marshal.cmo -c marshal.ml
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.16          -o stdlib__Lexing.cmo -c lexing.ml
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.16          -o stdlib__Map.cmo -c map.ml
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.16          -o stdlib__Stream.cmo -c stream.ml
#20 33.16 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A \
#20 33.16          -o stdlib__Buffer.cmo -c buffer.ml
#20 33.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.17          -o stdlib__Digest.cmo -c digest.ml
#20 33.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalOO.ml
#20 33.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 33.17          -o stdlib__ArrayLabels.cmo -c arrayLabels.ml
#20 33.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 33.17          -o stdlib__MoreLabels.cmi -c moreLabels.mli
#20 33.17 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.17          -o stdlib__In_channel.cmo -c in_channel.ml
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 33.18          -o stdlib__Float.cmo -c float.ml
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.18          -o stdlib__Hashtbl.cmo -c hashtbl.ml
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.18          -o stdlib__Weak.cmi -c weak.mli
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.18          -o stdlib__Genlex.cmo -c genlex.ml
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.18          -o stdlib__Ephemeron.cmi -c ephemeron.mli
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 33.18          -o stdlib__ListLabels.cmo -c listLabels.ml
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 33.18          -o stdlib__BytesLabels.cmo -c bytesLabels.ml
#20 33.18 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 33.18          -o stdlib__StringLabels.cmo -c stringLabels.ml
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -pp "$AWK -f ./expand_module_aliases.awk" \
#20 33.19          -o stdlib__StdLabels.cmi -c stdLabels.mli
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.19          -o stdlib__Arg.cmo -c arg.ml
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.19          -o stdlib__Printexc.cmo -c printexc.ml
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.19          -o stdlib__Gc.cmo -c gc.ml
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.19          -o stdlib__Filename.cmo -c filename.ml
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match -c camlinternalFormat.ml
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 33.19          -o stdlib__Printf.cmo -c printf.ml
#20 33.19 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 33.19          -o stdlib__Scanf.cmo -c scanf.ml
#20 33.22 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.22          -o stdlib__Weak.cmo -c weak.ml
#20 33.22 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 33.22          -o stdlib__Format.cmo -c format.ml
#20 33.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  -nolabels -no-alias-deps \
#20 33.23          -o stdlib__StdLabels.cmo -c stdLabels.ml
#20 33.28 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 33.28          -o stdlib__Ephemeron.cmo -c ephemeron.ml
#20 33.30 ../runtime/ocamlrun ../boot/ocamlc -use-prims ../runtime/primitives -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 33.30          -o stdlib__MoreLabels.cmo -c moreLabels.ml
#20 34.86 ../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 34.89 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 34.90 cp runtime/ocamlrun boot/ocamlrun
#20 34.90 cd boot; rm -f stdlib.cma std_exit.cmo *.cmi camlheader
#20 34.90 cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
#20 34.91 cd boot; ln -sf ../runtime/libcamlrun.a .
#20 34.91 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 34.91 make -j opt.opt
#20 34.91 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 34.93 make -j checkstack
#20 34.93 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 34.94 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 34.94   -o tools/checkstack.o tools/checkstack.c
#20 34.99 make -j -C tools  checkstack
#20 34.99 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 35.00 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 35.02 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 35.02 tools/checkstack
#20 35.03 rm tools/checkstack tools/checkstack.o
#20 35.03 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 35.03 make -j coreall
#20 35.03 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 35.04 make -j -C runtime  all
#20 35.04 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 35.13 make[3]: Nothing to be done for 'all'.
#20 35.13 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 35.13 cd stdlib; ln -sf ../runtime/libcamlrun.a .
#20 35.13 make -j ocamlc
#20 35.13 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 35.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 utils/warnings.mli
#20 35.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 parsing/longident.mli
#20 35.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 utils/build_path_prefix_map.mli
#20 35.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 utils/identifiable.mli
#20 35.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 utils/load_path.mli
#20 35.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/allocated_const.mli
#20 35.15 make -j -C utils config.ml
#20 35.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 utils/config.mli
#20 35.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 utils/arg_helper.mli
#20 35.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 utils/profile.mli
#20 35.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 utils/local_store.mli
#20 35.15 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/utils'
#20 35.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 utils/terminfo.mli
#20 35.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 utils/ccomp.mli
#20 35.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 utils/targetint.mli
#20 35.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 utils/int_replace_polymorphic_compare.mli
#20 35.15 gcc -E -I runtime/caml utils/domainstate.ml.c > utils/domainstate.ml
#20 35.15 gcc -E -I runtime/caml utils/domainstate.mli.c > utils/domainstate.mli
#20 35.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 utils/binutils.mli
#20 35.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 utils/lazy_backtrack.mli
#20 35.15 cp boot/menhir/menhirLib.ml parsing/camlinternalMenhirLib.ml
#20 35.16 echo '[@@@ocaml.warning "-67"]' > parsing/camlinternalMenhirLib.mli
#20 35.16 ./boot/ocamlrun ./boot/ocamllex -q parsing/lexer.mll
#20 35.16 sed -e 's!%%AFL_INSTRUMENT%%!false!' \
#20 35.16     -e 's!%%ARCH%%!arm64!' \
#20 35.16     -e 's!%%ARCMD%%!ar!' \
#20 35.16     -e 's!%%ASM%%!as!' \
#20 35.16     -e 's!%%ASM_CFI_SUPPORTED%%!true!' \
#20 35.16     -e 's!%%BYTECCLIBS%%!-lm  -lpthread!' \
#20 35.16     -e 's!%%CC%%!gcc!' \
#20 35.16     -e 's!%%CCOMPTYPE%%!cc!' \
#20 35.16     -e 's!%%OUTPUTOBJ%%!-o !' \
#20 35.16     -e 's!%%EXT_ASM%%!.s!' \
#20 35.16     -e 's!%%EXT_DLL%%!.so!' \
#20 35.16     -e 's!%%EXE%%!!' \
#20 35.16     -e 's!%%EXT_LIB%%!.a!' \
#20 35.16     -e 's!%%EXT_OBJ%%!.o!' \
#20 35.16     -e 's!%%FLAMBDA%%!false!' \
#20 35.16     -e 's!%%WITH_FLAMBDA_INVARIANTS%%!false!' \
#20 35.16     -e 's!%%WITH_CMM_INVARIANTS%%!false!' \
#20 35.16     -e 's!%%FLEXLINK_FLAGS%%!!' \
#20 35.16     -e 's!%%FLEXDLL_DIR%%!!' \
#20 35.16     -e 's!%%HOST%%!aarch64-unknown-linux-gnu!' \
#20 35.16     -e 's!%%BINDIR%%!/tmp/opam/bootstrap/ocaml/bin!' \
#20 35.16     -e 's!%%LIBDIR%%!/tmp/opam/bootstrap/ocaml/lib/ocaml!' \
#20 35.16     -e 's!%%MKDLL%%!gcc -shared !' \
#20 35.16     -e 's!%%MKEXE%%!gcc -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections  -Wl,-E !' \
#20 35.16     -e 's!%%FLEXLINK_LDFLAGS%%! -link \\"-Wl,-E\\"!' \
#20 35.16     -e 's!%%FLEXLINK_DLL_LDFLAGS%%!!' \
#20 35.16     -e 's!%%MKMAINDLL%%!gcc -shared !' \
#20 35.16     -e 's!%%MODEL%%!default!' \
#20 35.16     -e 's!%%NATIVECCLIBS%%!-lm !' \
#20 35.16     -e 's!%%OCAMLC_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC !' \
#20 35.16     -e 's!%%OCAMLC_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 !' \
#20 35.16     -e 's!%%OCAMLOPT_CFLAGS%%!-O2 -fno-strict-aliasing -fwrapv -pthread -fPIC !' \
#20 35.16     -e 's!%%OCAMLOPT_CPPFLAGS%%!-D_FILE_OFFSET_BITS=64 !' \
#20 35.16     -e 's!%%PACKLD%%!ld -r -o !' \
#20 35.16     -e 's!%%PROFINFO_WIDTH%%!0!' \
#20 35.16     -e 's!%%RPATH%%!-Wl,-rpath,!' \
#20 35.16     -e 's!%%MKSHAREDLIBRPATH%%!-Wl,-rpath,!' \
#20 35.16     -e 's!%%FORCE_SAFE_STRING%%!true!' \
#20 35.16     -e 's!%%DEFAULT_SAFE_STRING%%!true!' \
#20 35.16     -e 's!%%WINDOWS_UNICODE%%!0!' \
#20 35.16     -e 's!%%NAKED_POINTERS%%!true!' \
#20 35.16     -e 's!%%SUPPORTS_SHARED_LIBRARIES%%!true!' \
#20 35.16     -e 's!%%SYSTEM%%!linux!' \
#20 35.16     -e 's!%%SYSTHREAD_SUPPORT%%!true!' \
#20 35.16     -e 's!%%TARGET%%!aarch64-unknown-linux-gnu!' \
#20 35.16     -e 's!%%WITH_FRAME_POINTERS%%!false!' \
#20 35.16     -e 's!%%WITH_PROFINFO%%!false!' \
#20 35.16     -e 's!%%FLAT_FLOAT_ARRAY%%!true!' \
#20 35.16     -e 's!%%FUNCTION_SECTIONS%%!true!' \
#20 35.16     -e 's!%%CC_HAS_DEBUG_PREFIX_MAP%%!true!' \
#20 35.16     -e 's!%%AS_HAS_DEBUG_PREFIX_MAP%%!true!' \
#20 35.16     config.mlp > config.ml
#20 35.16 cat boot/menhir/menhirLib.mli >> parsing/camlinternalMenhirLib.mli
#20 35.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/switch.mli
#20 35.16 lambda/generate_runtimedef.sh runtime/caml/fail.h runtime/primitives > lambda/runtimedef.ml
#20 35.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/runtimedef.mli
#20 35.16 make -j -C tools make_opcodes
#20 35.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 bytecomp/bytesections.mli
#20 35.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 bytecomp/dll.mli
#20 35.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 driver/main_args.mli
#20 35.16 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 35.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 driver/makedepend.mli
#20 35.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 bytecomp/bytelibrarian.mli
#20 35.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 driver/errors.mli
#20 35.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 driver/maindriver.mli
#20 35.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 parsing/camlinternalMenhirLib.mli
#20 35.17 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/utils'
#20 35.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 utils/domainstate.mli
#20 35.18 ../boot/ocamlrun ../boot/ocamllex -q make_opcodes.mll
#20 35.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 utils/misc.mli
#20 35.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 utils/build_path_prefix_map.ml -I utils
#20 35.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 utils/terminfo.ml -I utils
#20 35.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 utils/int_replace_polymorphic_compare.ml -I utils
#20 35.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 utils/local_store.ml -I utils
#20 35.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 utils/binutils.ml -I utils
#20 35.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/location.mli
#20 35.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/config.ml -I utils
#20 35.19 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. make_opcodes.ml -o make_opcodes
#20 35.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/lazy_backtrack.ml -I utils
#20 35.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/arg_helper.ml -I utils
#20 35.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/runtimedef.ml -I lambda
#20 35.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.ml -I bytecomp
#20 35.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/switch.ml -I lambda
#20 35.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 driver/main.ml -I driver
#20 35.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 utils/domainstate.ml -I utils
#20 35.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 parsing/asttypes.mli
#20 35.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/annot.mli
#20 35.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 parsing/syntaxerr.mli
#20 35.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/errors.ml -I driver
#20 35.26 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.ml -I parsing
#20 35.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 parsing/parsetree.mli
#20 35.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 file_formats/cmxs_format.mli
#20 35.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 utils/misc.ml -I utils
#20 35.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 utils/clflags.mli
#20 35.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 utils/profile.ml -I utils
#20 35.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 utils/load_path.ml -I utils
#20 35.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 utils/warnings.ml -I utils
#20 35.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 utils/consistbl.mli
#20 35.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 utils/targetint.ml -I utils
#20 35.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 utils/diffing.mli
#20 35.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 parsing/longident.ml -I parsing
#20 35.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/dll.ml -I bytecomp
#20 35.28 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 35.28 ./runtime/ocamlrun tools/make_opcodes -opcodes < runtime/caml/instruct.h > bytecomp/opcodes.ml
#20 35.29 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -i bytecomp/opcodes.ml > bytecomp/opcodes.mli
#20 35.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 parsing/camlinternalMenhirLib.ml -I parsing
#20 35.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/ident.mli
#20 35.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/linkage_name.mli
#20 35.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/tag.mli
#20 35.30 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/static_exception.mli
#20 35.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 utils/numbers.mli
#20 35.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 utils/identifiable.ml -I utils
#20 35.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 utils/strongly_connected_components.mli
#20 35.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/diffing.ml -I utils
#20 35.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/diffing_with_keys.mli
#20 35.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.mli
#20 35.32 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/consistbl.ml -I utils
#20 35.33 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/ccomp.ml -I utils
#20 35.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 parsing/location.ml -I parsing
#20 35.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/compenv.mli
#20 35.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/type_immediacy.mli
#20 35.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 parsing/docstrings.mli
#20 35.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 parsing/pprintast.mli
#20 35.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 parsing/parse.mli
#20 35.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 parsing/printast.mli
#20 35.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 parsing/ast_mapper.mli
#20 35.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 parsing/ast_iterator.mli
#20 35.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 parsing/attr_helper.mli
#20 35.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 parsing/builtin_attributes.mli
#20 35.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 parsing/ast_invariants.mli
#20 35.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 parsing/depend.mli
#20 35.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.ml -I bytecomp
#20 35.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/pparse.mli
#20 35.36 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/diffing_with_keys.ml -I utils
#20 35.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 typing/path.mli
#20 35.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/debuginfo.mli
#20 35.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/compilation_unit.mli
#20 35.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 typing/ident.ml -I typing
#20 35.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compenv.ml -I driver
#20 35.37 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/main_args.ml -I driver
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/numbers.ml -I utils
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/clflags.ml -I utils
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c utils/strongly_connected_components.ml -I utils
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/outcometree.mli
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/docstrings.ml -I parsing
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_helper.mli
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/printast.ml -I parsing
#20 35.40 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/attr_helper.ml -I parsing
#20 35.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/builtin_attributes.ml -I parsing
#20 35.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/depend.ml -I parsing
#20 35.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/type_immediacy.ml -I typing
#20 35.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_iterator.ml -I parsing
#20 35.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/ast_invariants.ml -I parsing
#20 35.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 lambda/debuginfo.ml -I lambda
#20 35.41 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/pparse.ml -I driver
#20 35.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/shape.mli
#20 35.42 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/backend_var.mli
#20 35.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/path.ml -I typing
#20 35.43 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_id.mli
#20 35.43 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/export_id.mli
#20 35.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 typing/primitive.mli
#20 35.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 typing/oprint.mli
#20 35.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/ast_helper.ml -I parsing
#20 35.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/pprintast.ml -I parsing
#20 35.48 sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.ml > parsing/parser.ml
#20 35.48 sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.mli > parsing/parser.mli
#20 35.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/ast_mapper.ml -I parsing
#20 35.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 typing/oprint.ml -I typing
#20 35.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/parser.mli
#20 35.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 typing/primitive.ml -I typing
#20 35.48 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_origin.mli
#20 35.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 typing/types.mli
#20 35.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 typing/shape.ml -I typing
#20 35.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/parser.ml -I parsing
#20 35.53 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/lexer.mli
#20 35.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/lexer.ml -I parsing
#20 35.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c parsing/parse.ml -I parsing
#20 35.57 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/makedepend.ml -I driver
#20 35.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 typing/subst.mli
#20 35.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 file_formats/cmi_format.mli
#20 35.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 typing/types.ml -I typing
#20 35.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 typing/btype.mli
#20 35.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 typing/predef.mli
#20 35.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 typing/datarepr.mli
#20 35.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 typing/errortrace.mli
#20 35.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 typing/signature_group.mli
#20 35.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 file_formats/cmi_format.ml -I file_formats
#20 35.68 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/persistent_env.mli
#20 35.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/env.mli
#20 35.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/errortrace.ml -I typing
#20 35.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 typing/btype.ml -I typing
#20 35.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 typing/subst.ml -I typing
#20 35.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 typing/predef.ml -I typing
#20 35.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 typing/datarepr.ml -I typing
#20 35.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 typing/signature_group.ml -I typing
#20 35.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/persistent_env.ml -I typing
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/lambda.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/env.ml -I typing
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedtree.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/ctype.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printtyp.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/mtype.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/envaux.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_properties.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_unboxed.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compmisc.mli
#20 35.79 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.mli
#20 35.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/typedecl_properties.ml -I typing
#20 35.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/typedecl_immediacy.mli
#20 35.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/typedecl_separability.mli
#20 35.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 typing/envaux.ml -I typing
#20 35.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 typing/ctype.ml -I typing
#20 35.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 typing/printtyp.ml -I typing
#20 35.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 typing/includeclass.mli
#20 35.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 typing/mtype.ml -I typing
#20 35.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 typing/typedecl_unboxed.ml -I typing
#20 35.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 file_formats/cmo_format.mli
#20 35.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 middle_end/internal_variable_names.mli
#20 35.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 middle_end/clambda_primitives.mli
#20 35.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 lambda/lambda.ml -I lambda
#20 35.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 lambda/printlambda.mli
#20 35.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 lambda/translobj.mli
#20 35.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 lambda/tmc.mli
#20 35.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 lambda/simplif.mli
#20 35.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 bytecomp/instruct.mli
#20 35.88 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_separability.ml -I typing
#20 35.88 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_immediacy.ml -I typing
#20 35.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/variable.mli
#20 35.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/tmc.ml -I lambda
#20 35.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/simplif.ml -I lambda
#20 35.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/symtable.mli
#20 35.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includeclass.ml -I typing
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/translobj.ml -I lambda
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/meta.mli
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/instruct.ml -I bytecomp
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.mli
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.mli
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.mli
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/clambda.mli
#20 35.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/printlambda.ml -I lambda
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedtree.ml -I typing
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printtyped.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includecore.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/tast_iterator.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/tast_mapper.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/stypes.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmt_format.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/untypeast.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typetexp.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printpat.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/patterns.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/parmatch.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typedecl_variance.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typeopt.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/rec_check.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typecore.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typeclass.mli
#20 35.93 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c lambda/matching.mli
#20 35.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 lambda/translattribute.mli
#20 35.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 lambda/translprim.mli
#20 35.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 lambda/translcore.mli
#20 35.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 lambda/translclass.mli
#20 35.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 lambda/translmod.mli
#20 35.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 driver/compile_common.mli
#20 35.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 bytecomp/meta.ml -I bytecomp
#20 35.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 bytecomp/symtable.ml -I bytecomp
#20 35.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 bytecomp/bytelink.mli
#20 35.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 bytecomp/printinstr.ml -I bytecomp
#20 35.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/printtyped.ml -I typing
#20 35.97 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/stypes.ml -I typing
#20 35.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/printpat.ml -I typing
#20 35.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/tast_iterator.ml -I typing
#20 35.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/tast_mapper.ml -I typing
#20 35.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/includecore.ml -I typing
#20 35.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/includemod.mli
#20 35.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 bytecomp/bytegen.ml -I bytecomp
#20 35.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 bytecomp/emitcode.ml -I bytecomp
#20 35.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/patterns.ml -I typing
#20 35.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 lambda/translattribute.ml -I lambda
#20 36.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/typedecl_variance.ml -I typing
#20 36.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/typedecl.mli
#20 36.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/typeopt.ml -I typing
#20 36.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/rec_check.ml -I typing
#20 36.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 bytecomp/bytelink.ml -I bytecomp
#20 36.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 bytecomp/bytelibrarian.ml -I bytecomp
#20 36.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 file_formats/cmt_format.ml -I file_formats
#20 36.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/cmt2annot.ml -I typing
#20 36.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/untypeast.ml -I typing
#20 36.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 driver/compile.mli
#20 36.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/parmatch.ml -I typing
#20 36.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 lambda/matching.ml -I lambda
#20 36.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 lambda/translclass.ml -I lambda
#20 36.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/typetexp.ml -I typing
#20 36.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 lambda/translprim.ml -I lambda
#20 36.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 lambda/translmod.ml -I lambda
#20 36.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/base_types/closure_element.mli
#20 36.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/symbol.mli
#20 36.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/parameter.mli
#20 36.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/base_types/mutable_variable.mli
#20 36.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 lambda/translcore.ml -I lambda
#20 36.05 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compile.ml -I driver
#20 36.05 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/maindriver.ml -I driver
#20 36.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/base_types/var_within_closure.mli
#20 36.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/base_types/closure_id.mli
#20 36.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 typing/typedecl.ml -I typing
#20 36.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 typing/typecore.ml -I typing
#20 36.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/typeclass.ml -I typing
#20 36.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/includemod.ml -I typing
#20 36.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/includemod_errorprinter.mli
#20 36.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/typemod.mli
#20 36.12 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/includemod_errorprinter.ml -I typing
#20 36.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/projection.mli
#20 36.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_origin.mli
#20 36.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c typing/typemod.ml -I typing
#20 36.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/compmisc.ml -I driver
#20 36.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 driver/compile_common.ml -I driver
#20 36.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 bytecomp/bytepackager.ml -I bytecomp
#20 36.22 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda.mli
#20 36.35 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/freshening.mli
#20 36.39 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simple_value_approx.mli
#20 36.42 ./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 36.49 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info.mli
#20 36.58 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/cmx_format.mli
#20 41.85 ./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 41.92 ./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 42.51 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 42.52 make -j ocamllex ocamltools library
#20 42.52 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 42.53 make -j -C yacc  all
#20 42.54 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 42.54 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 42.54   -o closure.o closure.c
#20 42.54 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 42.54   -o error.o error.c
#20 42.54 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 42.54   -o lalr.o lalr.c
#20 42.54 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 42.54   -o lr0.o lr0.c
#20 42.54 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/backend_intf.mli
#20 42.54 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_cost.mli
#20 42.54 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 42.54   -o main.o main.c
#20 42.54 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/internal_variable_names.ml -I middle_end
#20 42.54 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 42.54   -o mkpar.o mkpar.c
#20 42.54 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/linkage_name.ml -I middle_end
#20 42.54 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 42.54   -o output.o output.c
#20 42.54 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/compilation_unit.ml -I middle_end
#20 42.54 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 42.54   -o reader.o reader.c
#20 42.54 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/variable.ml -I middle_end
#20 42.55 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 42.55   -o skeleton.o skeleton.c
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_element.ml -I middle_end/flambda/base_types
#20 42.55 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 42.55   -o symtab.o symtab.c
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_id.ml -I middle_end/flambda/base_types
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/symbol.ml -I middle_end
#20 42.55 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 42.55   -o verbose.o verbose.c
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/backend_var.ml -I middle_end
#20 42.55 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 42.55   -o warshall.o warshall.c
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/clambda_primitives.ml -I middle_end
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda_primitives.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/clambda.ml -I middle_end
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/semantics_of_primitives.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/convert_primitives.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/id_types.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/tag.ml -I middle_end/flambda/base_types
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/mutable_variable.ml -I middle_end/flambda/base_types
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_origin.ml -I middle_end/flambda/base_types
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/closure_origin.ml -I middle_end/flambda/base_types
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/var_within_closure.ml -I middle_end/flambda/base_types
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/static_exception.ml -I middle_end/flambda/base_types
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/pass_wrapper.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/allocated_const.ml -I middle_end/flambda
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/parameter.ml -I middle_end/flambda
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/projection.ml -I middle_end/flambda
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_iterators.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_utils.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/effect_analysis.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info.ml -I middle_end/flambda
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info_for_pack.mli
#20 42.55 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/compilenv.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/import_approx.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_code.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_conversion_aux.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/initialize_symbol_to_let_symbol.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/alias_analysis.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/share_constants.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_closure_vars.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_program_constructs.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_free_vars_equal_to_args.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/ref_to_variables.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_invariants.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/traverse_for_exported_symbols.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_offsets.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/un_anf.mli
#20 42.56 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_to_clambda.mli
#20 42.56 make -j -C stdlib  all
#20 42.57 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 42.58 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalFormatBasics.mli
#20 42.58 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalAtomic.mli
#20 42.58 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure/closure.mli
#20 42.58 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/closure/closure_middle_end.mli
#20 42.58 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_conversion.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_let_to_initialize_symbol.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/find_recursive_functions.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/invariant_params.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inconstant_idents.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_constants.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_arguments.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/build_export_info.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_middle_end.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda_primitives.ml -I middle_end
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/printclambda.ml -I middle_end
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/semantics_of_primitives.ml -I middle_end
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/convert_primitives.ml -I middle_end
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/id_types.ml -I middle_end/flambda/base_types
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/export_id.ml -I middle_end/flambda/base_types
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/base_types/set_of_closures_id.ml -I middle_end/flambda/base_types
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda.ml -I middle_end/flambda
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_common.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_primitives.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats_types.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops_intf.mli
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/pass_wrapper.ml -I middle_end/flambda
#20 42.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/effect_analysis.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/initialize_symbol_to_let_symbol.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/remove_unused_program_constructs.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_iterators.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_cost.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/export_info_for_pack.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_code.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/share_constants.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/ref_to_variables.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_invariants.ml -I middle_end/flambda
#20 42.60 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/un_anf.ml -I middle_end/flambda
#20 42.61 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nopervasives -c camlinternalAtomic.ml
#20 42.61 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/closure_conversion_aux.ml -I middle_end/flambda
#20 42.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/compilenv.ml -I middle_end
#20 42.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/closure/closure.ml -I middle_end/closure
#20 42.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/import_approx.ml -I middle_end/flambda
#20 42.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/flambda_utils.ml -I middle_end/flambda
#20 42.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/freshening.ml -I middle_end/flambda
#20 42.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/simple_value_approx.ml -I middle_end/flambda
#20 42.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/lift_let_to_initialize_symbol.ml -I middle_end/flambda
#20 42.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/remove_unused_closure_vars.ml -I middle_end/flambda
#20 42.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/remove_free_vars_equal_to_args.ml -I middle_end/flambda
#20 42.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/closure_offsets.ml -I middle_end/flambda
#20 42.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/flambda_to_clambda.ml -I middle_end/flambda
#20 42.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/alias_analysis.ml -I middle_end/flambda
#20 42.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/closure_conversion.ml -I middle_end/flambda
#20 42.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/find_recursive_functions.ml -I middle_end/flambda
#20 42.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/traverse_for_exported_symbols.ml -I middle_end/flambda
#20 42.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/inconstant_idents.ml -I middle_end/flambda
#20 42.63 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/lift_constants.ml -I middle_end/flambda
#20 42.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/simplify_boxed_integer_ops.mli
#20 42.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/closure/closure_middle_end.ml -I middle_end/closure
#20 42.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/invariant_params.ml -I middle_end/flambda
#20 42.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/remove_unused_arguments.ml -I middle_end/flambda
#20 42.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/simplify_common.ml -I middle_end/flambda
#20 42.64 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify_aux.mli
#20 42.64 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats_types.ml -I middle_end/flambda
#20 42.64 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats.mli
#20 42.66 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_boxed_integer_ops.ml -I middle_end/flambda
#20 42.66 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/simplify_primitives.ml -I middle_end/flambda
#20 42.67 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_stats.ml -I middle_end/flambda
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_decision_intf.mli
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify_aux.ml -I middle_end/flambda
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/extract_projections.mli
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/augment_specialised_args.mli
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_free_vars_of_closures.mli
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_specialised_args.mli
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_closures.mli
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify.mli
#20 42.70 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/build_export_info.ml -I middle_end/flambda
#20 42.70 ../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 42.71 ../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 42.74 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/extract_projections.ml -I middle_end/flambda
#20 42.74 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/unbox_free_vars_of_closures.ml -I middle_end/flambda
#20 42.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/inlining_transforms.mli
#20 42.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/inlining_decision.mli
#20 42.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/augment_specialised_args.ml -I middle_end/flambda
#20 42.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/unbox_specialised_args.ml -I middle_end/flambda
#20 42.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/unbox_closures.ml -I middle_end/flambda
#20 42.75 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/flambda_middle_end.ml -I middle_end/flambda
#20 42.79 ../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 42.79 ../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 42.79          -o stdlib__Pervasives.cmo -c pervasives.ml
#20 42.79 ../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 42.79          -o stdlib__Either.cmi -c either.mli
#20 42.79 ../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 42.79          -o stdlib__Sys.cmi -c sys.mli
#20 42.79 ../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 42.79          -o stdlib__Nativeint.cmi -c nativeint.mli
#20 42.79 ../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 42.79          -o stdlib__Int32.cmi -c int32.mli
#20 42.79 ../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 42.80 ../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 42.80          -o stdlib__Bool.cmi -c bool.mli
#20 42.80 ../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 42.80          -o stdlib__Char.cmi -c char.mli
#20 42.80 ../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 42.80          -o stdlib__Uchar.cmi -c uchar.mli
#20 42.80 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inline_and_simplify.ml -I middle_end/flambda
#20 42.80 ../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 42.80          -o stdlib__Int.cmi -c int.mli
#20 42.80 ../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 42.80          -o stdlib__Unit.cmi -c unit.mli
#20 42.80 ../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 42.80          -o stdlib__Marshal.cmi -c marshal.mli
#20 42.80 ../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 42.80          -o stdlib__Int64.cmi -c int64.mli
#20 42.81 ../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 42.81          -o stdlib__Lexing.cmi -c lexing.mli
#20 42.81 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_transforms.ml -I middle_end/flambda
#20 42.81 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c middle_end/flambda/inlining_decision.ml -I middle_end/flambda
#20 42.81 ../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 42.81          -o stdlib__Stream.cmi -c stream.mli
#20 42.81 ../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 42.81          -o stdlib__Arg.cmi -c arg.mli
#20 42.81 ../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 42.81          -o stdlib__Atomic.cmi -c atomic.mli
#20 42.81 ../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 42.81          -o stdlib__Printexc.cmi -c printexc.mli
#20 42.81 ../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 42.81          -o stdlib__Fun.cmi -c fun.mli
#20 42.81 ../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 42.81          -o stdlib__Digest.cmi -c digest.mli
#20 42.82 ../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 42.82          -o stdlib__Scanf.cmi -c scanf.mli
#20 42.82 ../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 42.82          -o stdlib__Callback.cmi -c callback.mli
#20 42.82 ../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 42.82          -o stdlib__Filename.cmi -c filename.mli
#20 42.82 ../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 42.82          -o stdlib__Complex.cmi -c complex.mli
#20 42.82 ../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 42.82          -o stdlib__In_channel.cmi -c in_channel.mli
#20 42.82 ../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 42.82          -o stdlib__Out_channel.cmi -c out_channel.mli
#20 42.82 ../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 42.83 ../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 42.83          -o stdlib__Lazy.cmi -c lazy.mli
#20 42.83 ../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 42.83          -o stdlib__Either.cmo -c either.ml
#20 42.83 ../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 42.83          -o stdlib__Obj.cmi -c obj.mli
#20 42.83 ../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 42.83          -o stdlib__Seq.cmi -c seq.mli
#20 42.83 ../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 42.83          -o stdlib__Bool.cmo -c bool.ml
#20 42.83 ../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 42.83          -o stdlib__Char.cmo -c char.ml
#20 42.83 ../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 42.83          -o stdlib__Int.cmo -c int.ml
#20 42.83 ../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 42.83          -o stdlib__Unit.cmo -c unit.ml
#20 42.84 ../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 42.84          -o stdlib__Int32.cmo -c int32.ml
#20 42.84 ../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 42.84          -o stdlib__Nativeint.cmo -c nativeint.ml
#20 42.84 ../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 42.84          -o stdlib__Atomic.cmo -c atomic.ml
#20 42.84 ../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 42.84          -o stdlib__Sys.cmo -c sys.ml
#20 42.84 ../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 42.84          -o stdlib__Uchar.cmo -c uchar.ml
#20 42.84 ../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 42.84          -o stdlib__Int64.cmo -c int64.ml
#20 42.84 ../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 42.84          -o stdlib__Random.cmi -c random.mli
#20 42.84 ../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 42.84          -o stdlib__Genlex.cmi -c genlex.mli
#20 42.85 ../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 42.85          -o stdlib__Complex.cmo -c complex.ml
#20 42.85 ../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 42.85          -o stdlib__Bigarray.cmi -c bigarray.mli
#20 42.85 ../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 42.85          -o stdlib__Fun.cmo -c fun.ml
#20 42.85 ../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 42.85          -o stdlib__Gc.cmi -c gc.mli
#20 42.86 ../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 42.86          -o stdlib__Out_channel.cmo -c out_channel.ml
#20 42.86 ../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 42.86          -o stdlib__Obj.cmo -c obj.ml
#20 42.86 ../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 42.86 ../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 42.86          -o stdlib__Parsing.cmi -c parsing.mli
#20 42.86 ../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 42.86          -o stdlib__Callback.cmo -c callback.ml
#20 42.87 ../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 42.87 ../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 42.87 ../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 42.87          -o stdlib__Lazy.cmo -c lazy.ml
#20 42.87 ../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 42.87          -o stdlib__Seq.cmo -c seq.ml
#20 42.87 ../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 42.87          -o stdlib__Option.cmi -c option.mli
#20 42.88 ../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 42.88          -o stdlib__Result.cmi -c result.mli
#20 42.88 ../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 42.88          -o stdlib__List.cmi -c list.mli
#20 42.88 ../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 42.88          -o stdlib__Bytes.cmi -c bytes.mli
#20 42.88 ../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 42.88          -o stdlib__String.cmi -c string.mli
#20 42.88 ../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 42.88          -o stdlib__Array.cmi -c array.mli
#20 42.88 ../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 42.88          -o stdlib__Float.cmi -c float.mli
#20 42.88 ../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 42.88          -o stdlib__Set.cmi -c set.mli
#20 42.88 ../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 42.88          -o stdlib__Map.cmi -c map.mli
#20 42.88 ../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 42.88          -o stdlib__Stack.cmi -c stack.mli
#20 42.88 ../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 42.88          -o stdlib__Queue.cmi -c queue.mli
#20 42.89 ../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 42.89          -o stdlib__Buffer.cmi -c buffer.mli
#20 42.89 ../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 42.89          -o stdlib__Hashtbl.cmi -c hashtbl.mli
#20 42.89 ../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 42.89          -o stdlib__ArrayLabels.cmi -c arrayLabels.mli
#20 42.89 ../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 42.89          -o stdlib__ListLabels.cmi -c listLabels.mli
#20 42.89 ../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 42.89          -o stdlib__BytesLabels.cmi -c bytesLabels.mli
#20 42.89 ../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 42.89          -o stdlib__StringLabels.cmi -c stringLabels.mli
#20 42.90 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -no-principal \
#20 42.90          -o stdlib__Oo.cmi -c oo.mli
#20 42.90 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.90          -o stdlib__Result.cmo -c result.ml
#20 42.91 ../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 42.91          -o stdlib__Option.cmo -c option.ml
#20 42.92 ../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 42.92          -o stdlib__Array.cmo -c array.ml
#20 42.92 ../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 42.92          -o stdlib__Parsing.cmo -c parsing.ml
#20 42.92 ../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 42.92          -o stdlib__Set.cmo -c set.ml
#20 42.92 ../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 42.92          -o stdlib__Stack.cmo -c stack.ml
#20 42.92 ../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 42.92          -o stdlib__Queue.cmo -c queue.ml
#20 42.93 ../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 42.93 ../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 42.93          -o stdlib__Printf.cmi -c printf.mli
#20 42.93 ../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 42.93          -o stdlib__Digest.cmo -c digest.ml
#20 42.93 ../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 42.93          -o stdlib__Random.cmo -c random.ml
#20 42.93 ../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 42.93          -o stdlib__Format.cmi -c format.mli
#20 42.93 ../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 42.93          -o stdlib__Oo.cmo -c oo.ml
#20 42.93 ../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 42.94 ../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 42.94          -o stdlib__Bigarray.cmo -c bigarray.ml
#20 42.94 ../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 42.94          -o stdlib__In_channel.cmo -c in_channel.ml
#20 42.94 ../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 42.94          -o stdlib__List.cmo -c list.ml
#20 42.94 ../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 42.94          -o stdlib__Bytes.cmo -c bytes.ml
#20 42.94 ../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 42.94          -o stdlib__String.cmo -c string.ml
#20 42.94 ../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 42.94          -o stdlib__Marshal.cmo -c marshal.ml
#20 42.94 ../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 42.94          -o stdlib__Float.cmo -c float.ml
#20 42.94 ../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 42.94          -o stdlib__Lexing.cmo -c lexing.ml
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.95          -o stdlib__Map.cmo -c map.ml
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.95          -o stdlib__Stream.cmo -c stream.ml
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A \
#20 42.95          -o stdlib__Buffer.cmo -c buffer.ml
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.95          -o stdlib__Hashtbl.cmo -c hashtbl.ml
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.95          -o stdlib__Weak.cmi -c weak.mli
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   -c camlinternalOO.ml
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.95          -o stdlib__Genlex.cmo -c genlex.ml
#20 42.95 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.95          -o stdlib__Ephemeron.cmi -c ephemeron.mli
#20 42.96 ../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 42.96          -o stdlib__ArrayLabels.cmo -c arrayLabels.ml
#20 42.96 ../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 42.96          -o stdlib__ListLabels.cmo -c listLabels.ml
#20 42.96 ../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 42.96          -o stdlib__BytesLabels.cmo -c bytesLabels.ml
#20 42.96 ../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 42.96          -o stdlib__StringLabels.cmo -c stringLabels.ml
#20 42.96 ../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 42.96          -o stdlib__MoreLabels.cmi -c moreLabels.mli
#20 42.96 ../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 42.96          -o stdlib__StdLabels.cmi -c stdLabels.mli
#20 42.97 ../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 42.97          -o stdlib__Arg.cmo -c arg.ml
#20 42.97 ../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 42.97          -o stdlib__Printexc.cmo -c printexc.ml
#20 42.97 ../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 42.97          -o stdlib__Gc.cmo -c gc.ml
#20 42.98 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 42.98          -o stdlib__Scanf.cmo -c scanf.ml
#20 42.98 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats   \
#20 42.98          -o stdlib__Filename.cmo -c filename.ml
#20 42.98 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match -c camlinternalFormat.ml
#20 42.98 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -w +A -w -fragile-match \
#20 42.98          -o stdlib__Printf.cmo -c printf.ml
#20 42.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  -nolabels -no-alias-deps \
#20 42.99          -o stdlib__StdLabels.cmo -c stdLabels.ml
#20 42.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   \
#20 42.99          -o stdlib__Weak.cmo -c weak.ml
#20 43.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  -w +A -w -fragile-match \
#20 43.01          -o stdlib__Format.cmo -c format.ml
#20 43.06 ../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 43.06          -o stdlib__Ephemeron.cmo -c ephemeron.ml
#20 43.08 ../boot/ocamlrun ../ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats  -nolabels -no-alias-deps \
#20 43.08          -o stdlib__MoreLabels.cmo -c moreLabels.ml
#20 43.15 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 43.18 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 43.18 make -j -C lex all
#20 43.18 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 43.19 ../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 43.19 ../yacc/ocamlyacc -v parser.mly
#20 43.19 ../boot/ocamlrun ../boot/ocamllex -q lexer.mll
#20 43.19 ../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 43.21 ../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 43.21 ../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 43.22 ../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 43.24 ../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 43.24 ../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 43.24 ../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 43.27 ../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 43.27 ../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 43.27 ../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 43.27 ../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 43.27 ../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 43.29 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot lexer.ml
#20 43.29 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot common.ml
#20 43.29 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.mli
#20 43.30 ../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 43.30 ../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 43.32 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot outputbis.ml
#20 43.32 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot output.ml
#20 43.32 ../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -c -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot main.ml
#20 43.36 ./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 43.52 ../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 43.55 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 43.55 make -j -C tools all
#20 43.55 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 43.57 ../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 43.57 ../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 43.57 ../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 43.57 ../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 43.58 ../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 43.58 ../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 43.58 ../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 43.58 ../runtime/ocamlrun make_opcodes -opnames < ../runtime/caml/instruct.h > opnames.ml
#20 43.58 ../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 43.58 ../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 43.58 ../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 43.58 ../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 43.58 ../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 43.59 ../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 43.60 ../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 43.62 ../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 43.62 ../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 43.62 ../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 43.64 ../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 43.65 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -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 43.65 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -I .. -o primreq ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma primreq.cmo
#20 43.65 ../boot/ocamlrun ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../middle_end -I ../middle_end/closure -I ../middle_end/flambda -I ../middle_end/flambda/base_types -I ../driver -I ../toplevel -I ../file_formats -I ../lambda -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 43.66 ../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 43.72 ../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 43.73 ../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 43.82 ../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 43.83 ../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 43.87 ../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 44.51 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 44.70 ../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 44.73 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 44.73 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.74 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.74 make -j ocaml
#20 44.74 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 44.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/expunge.ml -I toplevel
#20 44.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/genprintval.mli
#20 44.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/trace.mli
#20 44.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/toploop.mli
#20 44.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topdirs.mli
#20 44.76 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topmain.mli
#20 44.80 cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/byte
#20 44.80 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topstart.ml -I toplevel
#20 44.81 cp toplevel/trace.cmi toplevel/trace.mli toplevel/byte
#20 44.82 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topcommon.mli
#20 44.82 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/genprintval.ml -I toplevel
#20 44.82 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -o expunge compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma toplevel/expunge.cmo
#20 44.89 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topeval.mli
#20 44.89 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topcommon.ml -I toplevel
#20 44.94 cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/byte
#20 44.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/toploop.ml -I toplevel
#20 44.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/topdirs.ml -I toplevel
#20 44.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/byte/topeval.ml -I toplevel/byte
#20 44.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/byte/trace.ml -I toplevel/byte
#20 44.94 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c toplevel/byte/topmain.ml -I toplevel/byte
#20 45.22 ./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 45.24 ./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 45.89 ./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 45.94 rm ocaml.tmp
#20 45.94 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 45.94 make -j opt-core
#20 45.94 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 45.96 make -j -C runtime  allopt
#20 45.96 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_aux.n.o startup_aux.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_nat.n.o startup_nat.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o main.n.o main.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o fail_nat.n.o fail_nat.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o roots_nat.n.o roots_nat.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals.n.o signals.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals_nat.n.o signals_nat.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o misc.n.o misc.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o freelist.n.o freelist.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o major_gc.n.o major_gc.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o minor_gc.n.o minor_gc.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memory.n.o memory.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o alloc.n.o alloc.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compare.n.o compare.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o ints.n.o ints.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o floats.n.o floats.c
#20 46.03 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o str.n.o str.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o array.n.o array.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o io.n.o io.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o extern.n.o extern.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o intern.n.o intern.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o hash.n.o hash.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o sys.n.o sys.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o parsing.n.o parsing.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o gc_ctrl.n.o gc_ctrl.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o eventlog.n.o eventlog.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o md5.n.o md5.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o obj.n.o obj.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o lexing.n.o lexing.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o unix.n.o unix.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o printexc.n.o printexc.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o callback.n.o callback.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o weak.n.o weak.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compact.n.o compact.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o finalise.n.o finalise.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o custom.n.o custom.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o globroots.n.o globroots.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace_nat.n.o backtrace_nat.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace.n.o backtrace.c
#20 46.04 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink_nat.n.o dynlink_nat.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o debugger.n.o debugger.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o meta.n.o meta.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink.n.o dynlink.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o clambda_checks.n.o clambda_checks.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o afl.n.o afl.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o bigarray.n.o bigarray.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memprof.n.o memprof.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o domain.n.o domain.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o skiplist.n.o skiplist.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o codefrag.n.o codefrag.c
#20 46.05 gcc -c -DSYS_linux -I../runtime -DMODEL_default -o arm64.o arm64.S || \
#20 46.05 { echo "If your assembler produced syntax errors, it is probably";\
#20 46.05           echo "unhappy with the preprocessor. Check your assembler, or";\
#20 46.05           echo "try producing arm64.o by hand.";\
#20 46.05           exit 2; }
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o startup_aux.nd.o startup_aux.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o startup_nat.nd.o startup_nat.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o main.nd.o main.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o fail_nat.nd.o fail_nat.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o roots_nat.nd.o roots_nat.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o signals.nd.o signals.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o signals_nat.nd.o signals_nat.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o misc.nd.o misc.c
#20 46.05 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o freelist.nd.o freelist.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o major_gc.nd.o major_gc.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o minor_gc.nd.o minor_gc.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o memory.nd.o memory.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o alloc.nd.o alloc.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o compare.nd.o compare.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o ints.nd.o ints.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o floats.nd.o floats.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o str.nd.o str.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o array.nd.o array.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o io.nd.o io.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o extern.nd.o extern.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o intern.nd.o intern.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o hash.nd.o hash.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o sys.nd.o sys.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o parsing.nd.o parsing.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o gc_ctrl.nd.o gc_ctrl.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o eventlog.nd.o eventlog.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o md5.nd.o md5.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o obj.nd.o obj.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o lexing.nd.o lexing.c
#20 46.06 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o unix.nd.o unix.c
#20 46.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o printexc.nd.o printexc.c
#20 46.07 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o callback.nd.o callback.c
#20 46.08 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o weak.nd.o weak.c
#20 46.09 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o compact.nd.o compact.c
#20 46.10 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o finalise.nd.o finalise.c
#20 46.10 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o custom.nd.o custom.c
#20 46.10 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o globroots.nd.o globroots.c
#20 46.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o backtrace_nat.nd.o backtrace_nat.c
#20 46.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o backtrace.nd.o backtrace.c
#20 46.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o dynlink_nat.nd.o dynlink_nat.c
#20 46.11 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o debugger.nd.o debugger.c
#20 46.12 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o meta.nd.o meta.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o dynlink.nd.o dynlink.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o clambda_checks.nd.o clambda_checks.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o afl.nd.o afl.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o bigarray.nd.o bigarray.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o memprof.nd.o memprof.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o domain.nd.o domain.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o skiplist.nd.o skiplist.c
#20 46.13 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DDEBUG  -o codefrag.nd.o codefrag.c
#20 46.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o startup_aux.ni.o startup_aux.c
#20 46.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o startup_nat.ni.o startup_nat.c
#20 46.14 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o main.ni.o main.c
#20 46.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o fail_nat.ni.o fail_nat.c
#20 46.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o roots_nat.ni.o roots_nat.c
#20 46.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o signals.ni.o signals.c
#20 46.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o signals_nat.ni.o signals_nat.c
#20 46.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o misc.ni.o misc.c
#20 46.15 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o freelist.ni.o freelist.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o major_gc.ni.o major_gc.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o minor_gc.ni.o minor_gc.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o memory.ni.o memory.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o alloc.ni.o alloc.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o compare.ni.o compare.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o ints.ni.o ints.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o floats.ni.o floats.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o str.ni.o str.c
#20 46.17 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o array.ni.o array.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o io.ni.o io.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o extern.ni.o extern.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o intern.ni.o intern.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o hash.ni.o hash.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o sys.ni.o sys.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o parsing.ni.o parsing.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o gc_ctrl.ni.o gc_ctrl.c
#20 46.18 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o eventlog.ni.o eventlog.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o md5.ni.o md5.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o obj.ni.o obj.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o lexing.ni.o lexing.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o unix.ni.o unix.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o printexc.ni.o printexc.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o callback.ni.o callback.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o weak.ni.o weak.c
#20 46.20 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o compact.ni.o compact.c
#20 46.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o finalise.ni.o finalise.c
#20 46.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o custom.ni.o custom.c
#20 46.21 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o globroots.ni.o globroots.c
#20 46.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o backtrace_nat.ni.o backtrace_nat.c
#20 46.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o backtrace.ni.o backtrace.c
#20 46.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o dynlink_nat.ni.o dynlink_nat.c
#20 46.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o debugger.ni.o debugger.c
#20 46.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o meta.ni.o meta.c
#20 46.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o dynlink.ni.o dynlink.c
#20 46.22 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o clambda_checks.ni.o clambda_checks.c
#20 46.23 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o afl.ni.o afl.c
#20 46.23 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o bigarray.ni.o bigarray.c
#20 46.23 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o memprof.ni.o memprof.c
#20 46.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o domain.ni.o domain.c
#20 46.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o skiplist.ni.o skiplist.c
#20 46.24 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DCAML_INSTR  -o codefrag.ni.o codefrag.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_aux.npic.o startup_aux.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o startup_nat.npic.o startup_nat.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o main.npic.o main.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o fail_nat.npic.o fail_nat.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o roots_nat.npic.o roots_nat.c
#20 46.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals.npic.o signals.c
#20 46.26 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o signals_nat.npic.o signals_nat.c
#20 46.27 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o misc.npic.o misc.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o freelist.npic.o freelist.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o major_gc.npic.o major_gc.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o minor_gc.npic.o minor_gc.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memory.npic.o memory.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o alloc.npic.o alloc.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compare.npic.o compare.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o ints.npic.o ints.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o floats.npic.o floats.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o str.npic.o str.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o array.npic.o array.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o io.npic.o io.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o extern.npic.o extern.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o intern.npic.o intern.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o hash.npic.o hash.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o sys.npic.o sys.c
#20 46.29 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o parsing.npic.o parsing.c
#20 46.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o gc_ctrl.npic.o gc_ctrl.c
#20 46.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o eventlog.npic.o eventlog.c
#20 46.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o md5.npic.o md5.c
#20 46.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o obj.npic.o obj.c
#20 46.30 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o lexing.npic.o lexing.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o unix.npic.o unix.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o printexc.npic.o printexc.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o callback.npic.o callback.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o weak.npic.o weak.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o compact.npic.o compact.c
#20 46.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  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o finalise.npic.o finalise.c
#20 46.32 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o custom.npic.o custom.c
#20 46.32 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o globroots.npic.o globroots.c
#20 46.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace_nat.npic.o backtrace_nat.c
#20 46.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o backtrace.npic.o backtrace.c
#20 46.33 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink_nat.npic.o dynlink_nat.c
#20 46.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o debugger.npic.o debugger.c
#20 46.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o meta.npic.o meta.c
#20 46.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o dynlink.npic.o dynlink.c
#20 46.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o clambda_checks.npic.o clambda_checks.c
#20 46.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o afl.npic.o afl.c
#20 46.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= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o bigarray.npic.o bigarray.c
#20 46.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= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o memprof.npic.o memprof.c
#20 46.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= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o domain.npic.o domain.c
#20 46.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= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o skiplist.npic.o skiplist.c
#20 46.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= -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  -o codefrag.npic.o codefrag.c
#20 46.36 gcc -c -DSYS_linux -I../runtime -DMODEL_default -fPIC -o arm64_libasmrunpic.o arm64.S
#20 46.58 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 46.66 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 46.74 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 46.80 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 46.80 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 46.87 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 46.87 cp runtime/libasmrun.a stdlib/libasmrun.a
#20 46.88 make -j ocamlopt
#20 46.88 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 46.91 cd asmcomp; ln -sf arm64/arch.ml .
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm.mli
#20 46.91 cd asmcomp; ln -sf arm64/proc.ml .
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_ast.mli
#20 46.91 cd asmcomp; ln -sf arm64/selection.ml .
#20 46.91 cd asmcomp; ln -sf arm64/CSE.ml .
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/coloring.mli
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linscan.mli
#20 46.91 cd asmcomp; ln -sf arm64/reload.ml .
#20 46.91 cd asmcomp; ln -sf arm64/scheduling.ml .
#20 46.91 make -j -C tools cvt_emit
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.mli
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.mli
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.mli
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/opterrors.mli
#20 46.91 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/optcompile.mli
#20 46.91 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c driver/optmaindriver.mli
#20 46.92 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/arch.ml -I asmcomp
#20 46.93 ../boot/ocamlrun ../boot/ocamllex -q cvt_emit.mll
#20 46.94 ../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 46.95 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.ml -I asmcomp
#20 46.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 driver/optmain.ml -I driver
#20 46.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 driver/opterrors.ml -I driver
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_proc.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_masm.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_gas.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/x86_dsl.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reg.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/afl_instrument.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen_state.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.mli
#20 46.96 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_invariants.mli
#20 46.99 ../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 47.00 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_invariants.ml -I asmcomp
#20 47.00 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/afl_instrument.ml -I asmcomp
#20 47.00 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.ml -I asmcomp
#20 47.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen_state.ml -I asmcomp
#20 47.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_helpers.mli
#20 47.01 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reg.ml -I asmcomp
#20 47.02 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 47.02 echo \# 1 \"arm64/emit.mlp\" > asmcomp/emit.ml
#20 47.02 ./boot/ocamlrun tools/cvt_emit < asmcomp/arm64/emit.mlp >> asmcomp/emit.ml \
#20 47.02 || { rm -f asmcomp/emit.ml; exit 2; }
#20 47.04 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm.ml -I asmcomp
#20 47.04 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/mach.mli
#20 47.04 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.ml -I asmcomp
#20 47.08 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.ml -I asmcomp
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/mach.ml -I asmcomp
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/proc.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interval.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printmach.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/dataflow.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/polling.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selection.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/liveness.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spill.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/split.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interf.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.mli
#20 47.09 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reload.mli
#20 47.10 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.mli
#20 47.10 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linear.mli
#20 47.12 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/proc.ml -I asmcomp
#20 47.12 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/cmm_helpers.ml -I asmcomp
#20 47.12 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/coloring.ml -I asmcomp
#20 47.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 driver/optmaindriver.ml -I driver
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interval.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printmach.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linscan.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/dataflow.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/liveness.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/split.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/interf.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/CSE.ml -I asmcomp
#20 47.13 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/spill.ml -I asmcomp
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/polling.ml -I asmcomp
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.ml -I asmcomp
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/reload.ml -I asmcomp
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linear.ml -I asmcomp
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.mli
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linearize.mli
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c file_formats/linear_format.mli
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.mli
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.mli
#20 47.14 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation_intf.ml -I asmcomp
#20 47.15 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitenv.mli
#20 47.15 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emit.mli
#20 47.16 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.ml -I asmcomp
#20 47.16 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/selection.ml -I asmcomp
#20 47.17 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/linearize.ml -I asmcomp
#20 47.18 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.ml -I asmcomp
#20 47.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 file_formats/linear_format.ml -I file_formats
#20 47.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.ml -I asmcomp
#20 47.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.ml -I asmcomp
#20 47.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.mli
#20 47.19 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.mli
#20 47.22 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.ml -I asmcomp
#20 47.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 asmcomp/emitaux.ml -I asmcomp
#20 47.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 asmcomp/emit.ml -I asmcomp
#20 47.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 asmcomp/asmgen.mli
#20 47.28 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.ml -I asmcomp
#20 47.28 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.ml -I asmcomp
#20 47.28 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.ml -I asmcomp
#20 47.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 driver/optcompile.ml -I driver
#20 48.54 ./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 48.59 ./boot/ocamlrun ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives  -o ocamlopt compilerlibs/ocamlcommon.cma compilerlibs/ocamloptcomp.cma driver/optmain.cmo
#20 49.36 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 49.36 make -j libraryopt
#20 49.36 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 49.38 make -j -C stdlib  allopt
#20 49.38 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 49.39 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nopervasives -c camlinternalFormatBasics.ml
#20 49.39 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nopervasives -c camlinternalAtomic.ml
#20 49.67 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nopervasives -no-alias-deps -w -49  -pp "$AWK -f ./expand_module_aliases.awk" -c stdlib.ml
#20 49.86 ../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 49.86            -o stdlib__Pervasives.cmx -c pervasives.ml
#20 49.86 ../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 49.86            -o stdlib__Either.cmx -c either.ml
#20 49.86 ../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 49.86            -o stdlib__Sys.cmx -c sys.ml
#20 49.86 ../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 49.86            -o stdlib__Bool.cmx -c bool.ml
#20 49.86 ../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 49.86            -o stdlib__Char.cmx -c char.ml
#20 49.86 ../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 49.86            -o stdlib__Int.cmx -c int.ml
#20 49.87 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 49.87            -o stdlib__Unit.cmx -c unit.ml
#20 49.87 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 49.87            -o stdlib__Int64.cmx -c int64.ml
#20 49.87 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 49.87            -o stdlib__Atomic.cmx -c atomic.ml
#20 49.87 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 49.87            -o stdlib__Complex.cmx -c complex.ml
#20 49.87 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   -c std_exit.ml
#20 49.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 49.92            -o stdlib__Nativeint.cmx -c nativeint.ml
#20 49.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   \
#20 49.93            -o stdlib__Int32.cmx -c int32.ml
#20 49.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   \
#20 49.93            -o stdlib__Uchar.cmx -c uchar.ml
#20 49.99 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 49.99            -o stdlib__Obj.cmx -c obj.ml
#20 50.08 ../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 50.08 ../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 50.08            -o stdlib__Callback.cmx -c callback.ml
#20 50.13 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 50.13            -o stdlib__Lazy.cmx -c lazy.ml
#20 50.18 ../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 50.18            -o stdlib__Seq.cmx -c seq.ml
#20 50.44 ../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 50.44            -o stdlib__Option.cmx -c option.ml
#20 50.44 ../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 50.44            -o stdlib__Result.cmx -c result.ml
#20 50.44 ../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 50.44            -o stdlib__List.cmx -c list.ml
#20 50.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 50.45            -o stdlib__Bytes.cmx -c bytes.ml
#20 50.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 50.45            -o stdlib__Array.cmx -c array.ml
#20 50.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 50.45            -o stdlib__Map.cmx -c map.ml
#20 50.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 50.45            -o stdlib__Queue.cmx -c queue.ml
#20 50.71 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 50.71            -o stdlib__ArrayLabels.cmx -c arrayLabels.ml
#20 50.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 50.72            -o stdlib__Bigarray.cmx -c bigarray.ml
#20 50.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  -nolabels -no-alias-deps \
#20 50.79            -o stdlib__Float.cmx -c float.ml
#20 50.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 50.79            -o stdlib__Set.cmx -c set.ml
#20 50.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 50.79            -o stdlib__Stack.cmx -c stack.ml
#20 50.80 ../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 50.80            -o stdlib__ListLabels.cmx -c listLabels.ml
#20 50.94 ../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 50.94            -o stdlib__String.cmx -c string.ml
#20 50.94 ../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 50.94            -o stdlib__Marshal.cmx -c marshal.ml
#20 50.94 ../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 50.94            -o stdlib__BytesLabels.cmx -c bytesLabels.ml
#20 51.14 ../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 51.14            -o stdlib__Lexing.cmx -c lexing.ml
#20 51.14 ../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 51.14            -o stdlib__Stream.cmx -c stream.ml
#20 51.14 ../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 51.14            -o stdlib__Buffer.cmx -c buffer.ml
#20 51.15 ../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 51.15            -o stdlib__Digest.cmx -c digest.ml
#20 51.15 ../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 51.15 ../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 51.15            -o stdlib__StringLabels.cmx -c stringLabels.ml
#20 51.20 ../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 51.20            -o stdlib__StdLabels.cmx -c stdLabels.ml
#20 51.22 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 51.22            -o stdlib__Random.cmx -c random.ml
#20 51.25 ../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 51.25            -o stdlib__Parsing.cmx -c parsing.ml
#20 51.33 ../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 51.35 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 51.35            -o stdlib__Hashtbl.cmx -c hashtbl.ml
#20 51.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 51.48            -o stdlib__Oo.cmx -c oo.ml
#20 51.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   -c camlinternalMod.ml
#20 51.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 51.68            -o stdlib__Weak.cmx -c weak.ml
#20 51.69 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 51.69            -o stdlib__Genlex.cmx -c genlex.ml
#20 51.69 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 51.69            -o stdlib__Ephemeron.cmx -c ephemeron.ml
#20 51.69 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections  -nolabels -no-alias-deps \
#20 51.69            -o stdlib__MoreLabels.cmx -c moreLabels.ml
#20 53.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 53.79            -o stdlib__Printf.cmx -c printf.ml
#20 53.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 53.79            -o stdlib__Format.cmx -c format.ml
#20 53.85 ../boot/ocamlrun ../ocamlopt -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats -function-sections   \
#20 53.85            -o stdlib__Arg.cmx -c arg.ml
#20 53.86 ../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 53.86            -o stdlib__Printexc.cmx -c printexc.ml
#20 53.86 ../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 53.86            -o stdlib__Scanf.cmx -c scanf.ml
#20 53.86 ../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 53.86            -o stdlib__Filename.cmx -c filename.ml
#20 54.03 ../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 54.03            -o stdlib__Fun.cmx -c fun.ml
#20 54.04 ../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 54.04            -o stdlib__Gc.cmx -c gc.ml
#20 54.08 ../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 54.08            -o stdlib__In_channel.cmx -c in_channel.ml
#20 54.08 ../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 54.08            -o stdlib__Out_channel.cmx -c out_channel.ml
#20 54.76 ../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 54.83 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 54.83 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 54.83 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 54.83 make -j ocamlc.opt
#20 54.83 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 54.86 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 55.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 utils/misc.ml -I utils
#20 55.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 bytecomp/bytesections.ml -I bytecomp
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/identifiable.ml -I utils
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/profile.ml -I utils
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/load_path.ml -I utils
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/warnings.ml -I utils
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/consistbl.ml -I utils
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/targetint.ml -I utils
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/diffing.ml -I utils
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/longident.ml -I parsing
#20 55.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/dll.ml -I bytecomp
#20 55.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 utils/diffing_with_keys.ml -I utils
#20 56.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 utils/numbers.ml -I utils
#20 56.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 utils/clflags.ml -I utils
#20 56.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 utils/strongly_connected_components.ml -I utils
#20 56.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c utils/ccomp.ml -I utils
#20 56.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/location.ml -I parsing
#20 56.64 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/ident.ml -I typing
#20 56.90 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/path.ml -I typing
#20 57.03 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/shape.ml -I typing
#20 57.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/docstrings.ml -I parsing
#20 57.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/syntaxerr.ml -I parsing
#20 57.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/ast_iterator.ml -I parsing
#20 57.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/attr_helper.ml -I parsing
#20 57.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/builtin_attributes.ml -I parsing
#20 57.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 lambda/debuginfo.ml -I lambda
#20 57.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 driver/compenv.ml -I driver
#20 57.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 driver/errors.ml -I driver
#20 57.22 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 57.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 parsing/ast_helper.ml -I parsing
#20 57.36 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 57.36 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 57.44 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/types.ml -I typing
#20 57.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 driver/main_args.ml -I driver
#20 57.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 parsing/ast_invariants.ml -I parsing
#20 57.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/btype.ml -I typing
#20 57.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 file_formats/cmi_format.ml -I file_formats
#20 57.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/errortrace.ml -I typing
#20 57.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 typing/persistent_env.ml -I typing
#20 58.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 parsing/pprintast.ml -I parsing
#20 58.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 parsing/parser.ml -I parsing
#20 58.03 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/ast_mapper.ml -I parsing
#20 58.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 typing/predef.ml -I typing
#20 58.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 typing/datarepr.ml -I typing
#20 58.29 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/signature_group.ml -I typing
#20 59.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 typing/subst.ml -I typing
#20 59.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/env.ml -I typing
#20 60.88 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c parsing/printast.ml -I parsing
#20 60.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 typing/oprint.ml -I typing
#20 61.48 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.48 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.48 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.48 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 61.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 62.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 lambda/translobj.ml -I lambda
#20 62.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 lambda/translattribute.ml -I lambda
#20 62.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 lambda/tmc.ml -I lambda
#20 62.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 bytecomp/instruct.ml -I bytecomp
#20 62.05 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/printtyped.ml -I typing
#20 62.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 bytecomp/meta.ml -I bytecomp
#20 62.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 bytecomp/symtable.ml -I bytecomp
#20 62.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 lambda/simplif.ml -I lambda
#20 64.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 typing/printtyp.ml -I typing
#20 64.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 typing/mtype.ml -I typing
#20 64.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 typing/patterns.ml -I typing
#20 64.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 typing/typedecl_variance.ml -I typing
#20 64.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 typing/typedecl_unboxed.ml -I typing
#20 64.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 typing/typedecl_separability.ml -I typing
#20 64.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/typedecl_immediacy.ml -I typing
#20 64.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/typeopt.ml -I typing
#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 typing/parmatch.ml -I typing
#20 64.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 typing/rec_check.ml -I typing
#20 66.42 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includeclass.ml -I typing
#20 66.42 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/envaux.ml -I typing
#20 66.42 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includecore.ml -I typing
#20 66.42 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/stypes.ml -I typing
#20 66.42 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typetexp.ml -I typing
#20 66.42 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c lambda/printlambda.ml -I lambda
#20 66.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 parsing/lexer.ml -I parsing
#20 66.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 parsing/parse.ml -I parsing
#20 66.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 file_formats/cmt_format.ml -I file_formats
#20 67.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 driver/pparse.ml -I driver
#20 67.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/typedecl.ml -I typing
#20 67.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/cmt2annot.ml -I typing
#20 67.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includemod.ml -I typing
#20 67.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 lambda/matching.ml -I lambda
#20 67.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/printinstr.ml -I bytecomp
#20 67.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 driver/makedepend.ml -I driver
#20 67.91 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c typing/includemod_errorprinter.ml -I typing
#20 68.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/typecore.ml -I typing
#20 69.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 lambda/translprim.ml -I lambda
#20 69.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 bytecomp/bytegen.ml -I bytecomp
#20 72.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 typing/typeclass.ml -I typing
#20 72.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 lambda/translcore.ml -I lambda
#20 73.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 lambda/translclass.ml -I lambda
#20 73.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 typing/typemod.ml -I typing
#20 74.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/translmod.ml -I lambda
#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 bytecomp/emitcode.ml -I bytecomp
#20 75.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 bytecomp/bytelink.ml -I bytecomp
#20 75.76 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/compmisc.ml -I driver
#20 75.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 driver/compile_common.ml -I driver
#20 75.94 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/bytelibrarian.ml -I bytecomp
#20 75.94 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c bytecomp/bytepackager.ml -I bytecomp
#20 76.02 ./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 76.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 driver/compile.ml -I driver
#20 76.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 driver/maindriver.ml -I driver
#20 76.33 ./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 76.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 driver/main.ml -I driver
#20 76.39 ./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 77.16 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 77.16 make -j otherlibraries ocamldebugger ocamldoc \
#20 77.16   
#20 77.17 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 77.19 make -j -C yacc  all
#20 77.19 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 77.20 make[3]: Nothing to be done for 'all'.
#20 77.20 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 77.20 make -j -C lex all
#20 77.20 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 77.21 make[3]: Nothing to be done for 'all'.
#20 77.21 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 77.21 make -j -C tools all
#20 77.21 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 77.23 make[3]: Nothing to be done for 'all'.
#20 77.23 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 77.23 make -j -C otherlibs all
#20 77.23 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 77.24 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 77.24 cp -f dynlink_compilerlibs/Makefile.copy-sources dynlink_compilerlibs/Makefile
#20 77.25 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 77.25           echo "dynlink_compilerlibs/$(basename $ml): ../../$ml" \
#20 77.25             >> dynlink_compilerlibs/Makefile; \
#20 77.25           echo "dynlink_compilerlibs/$(basename $ml)i: ../../${ml}i" \
#20 77.25             >> dynlink_compilerlibs/Makefile; \
#20 77.25         done;
#20 77.35 for mli in parsing/asttypes.mli parsing/parsetree.mli typing/outcometree.mli file_formats/cmo_format.mli file_formats/cmxs_format.mli; do \
#20 77.35           echo "dynlink_compilerlibs/$(basename $mli): ../../$mli" \
#20 77.35             >> dynlink_compilerlibs/Makefile; \
#20 77.35           echo \
#20 77.35             "dynlink_compilerlibs/$(basename $mli .mli).ml: ../../$mli"\
#20 77.35             >> dynlink_compilerlibs/Makefile; \
#20 77.35         done
#20 77.36 cp ../../utils/binutils.ml dynlink_compilerlibs/binutils.ml
#20 77.36 cp ../../utils/config.ml dynlink_compilerlibs/config.ml
#20 77.37 cp ../../utils/build_path_prefix_map.ml dynlink_compilerlibs/build_path_prefix_map.ml
#20 77.37 cp ../../utils/misc.ml dynlink_compilerlibs/misc.ml
#20 77.37 cp ../../utils/identifiable.ml dynlink_compilerlibs/identifiable.ml
#20 77.37 cp ../../utils/numbers.ml dynlink_compilerlibs/numbers.ml
#20 77.37 cp ../../utils/arg_helper.ml dynlink_compilerlibs/arg_helper.ml
#20 77.37 cp ../../utils/clflags.ml dynlink_compilerlibs/clflags.ml
#20 77.37 cp ../../utils/profile.ml dynlink_compilerlibs/profile.ml
#20 77.37 cp ../../utils/consistbl.ml dynlink_compilerlibs/consistbl.ml
#20 77.37 cp ../../utils/terminfo.ml dynlink_compilerlibs/terminfo.ml
#20 77.37 cp ../../utils/warnings.ml dynlink_compilerlibs/warnings.ml
#20 77.37 cp ../../utils/local_store.ml dynlink_compilerlibs/local_store.ml
#20 77.37 cp ../../utils/load_path.ml dynlink_compilerlibs/load_path.ml
#20 77.37 cp ../../utils/int_replace_polymorphic_compare.ml dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 77.37 cp ../../utils/lazy_backtrack.ml dynlink_compilerlibs/lazy_backtrack.ml
#20 77.37 cp ../../parsing/location.ml dynlink_compilerlibs/location.ml
#20 77.37 cp ../../parsing/longident.ml dynlink_compilerlibs/longident.ml
#20 77.37 cp ../../parsing/docstrings.ml dynlink_compilerlibs/docstrings.ml
#20 77.37 cp ../../parsing/syntaxerr.ml dynlink_compilerlibs/syntaxerr.ml
#20 77.37 cp ../../parsing/ast_helper.ml dynlink_compilerlibs/ast_helper.ml
#20 77.37 cp ../../parsing/ast_mapper.ml dynlink_compilerlibs/ast_mapper.ml
#20 77.37 cp ../../parsing/attr_helper.ml dynlink_compilerlibs/attr_helper.ml
#20 77.37 cp ../../parsing/builtin_attributes.ml dynlink_compilerlibs/builtin_attributes.ml
#20 77.37 cp ../../typing/ident.ml dynlink_compilerlibs/ident.ml
#20 77.37 cp ../../typing/path.ml dynlink_compilerlibs/path.ml
#20 77.37 cp ../../typing/primitive.ml dynlink_compilerlibs/primitive.ml
#20 77.38 cp ../../typing/type_immediacy.ml dynlink_compilerlibs/type_immediacy.ml
#20 77.38 cp ../../typing/shape.ml dynlink_compilerlibs/shape.ml
#20 77.38 cp ../../typing/types.ml dynlink_compilerlibs/types.ml
#20 77.38 cp ../../typing/btype.ml dynlink_compilerlibs/btype.ml
#20 77.38 cp ../../typing/subst.ml dynlink_compilerlibs/subst.ml
#20 77.38 cp ../../typing/predef.ml dynlink_compilerlibs/predef.ml
#20 77.38 cp ../../typing/datarepr.ml dynlink_compilerlibs/datarepr.ml
#20 77.38 cp ../../file_formats/cmi_format.ml dynlink_compilerlibs/cmi_format.ml
#20 77.38 cp ../../typing/persistent_env.ml dynlink_compilerlibs/persistent_env.ml
#20 77.38 cp ../../typing/env.ml dynlink_compilerlibs/env.ml
#20 77.38 cp ../../lambda/debuginfo.ml dynlink_compilerlibs/debuginfo.ml
#20 77.38 cp ../../lambda/lambda.ml dynlink_compilerlibs/lambda.ml
#20 77.38 cp ../../lambda/runtimedef.ml dynlink_compilerlibs/runtimedef.ml
#20 77.38 cp ../../bytecomp/instruct.ml dynlink_compilerlibs/instruct.ml
#20 77.38 cp ../../bytecomp/opcodes.ml dynlink_compilerlibs/opcodes.ml
#20 77.38 cp ../../bytecomp/bytesections.ml dynlink_compilerlibs/bytesections.ml
#20 77.38 cp ../../bytecomp/dll.ml dynlink_compilerlibs/dll.ml
#20 77.38 cp ../../bytecomp/meta.ml dynlink_compilerlibs/meta.ml
#20 77.38 cp ../../bytecomp/symtable.ml dynlink_compilerlibs/symtable.ml
#20 77.38 cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.ml
#20 77.38 cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.ml
#20 77.38 cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.ml
#20 77.38 cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.ml
#20 77.38 cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.ml
#20 77.38 cp ../../utils/binutils.mli dynlink_compilerlibs/binutils.mli
#20 77.38 cp ../../utils/config.mli dynlink_compilerlibs/config.mli
#20 77.38 cp ../../utils/build_path_prefix_map.mli dynlink_compilerlibs/build_path_prefix_map.mli
#20 77.39 cp ../../utils/misc.mli dynlink_compilerlibs/misc.mli
#20 77.39 cp ../../utils/identifiable.mli dynlink_compilerlibs/identifiable.mli
#20 77.39 cp ../../utils/numbers.mli dynlink_compilerlibs/numbers.mli
#20 77.39 cp ../../utils/arg_helper.mli dynlink_compilerlibs/arg_helper.mli
#20 77.39 cp ../../utils/clflags.mli dynlink_compilerlibs/clflags.mli
#20 77.39 cp ../../utils/profile.mli dynlink_compilerlibs/profile.mli
#20 77.39 cp ../../utils/consistbl.mli dynlink_compilerlibs/consistbl.mli
#20 77.39 cp ../../utils/terminfo.mli dynlink_compilerlibs/terminfo.mli
#20 77.39 cp ../../utils/warnings.mli dynlink_compilerlibs/warnings.mli
#20 77.39 cp ../../utils/local_store.mli dynlink_compilerlibs/local_store.mli
#20 77.39 cp ../../utils/load_path.mli dynlink_compilerlibs/load_path.mli
#20 77.39 cp ../../utils/int_replace_polymorphic_compare.mli dynlink_compilerlibs/int_replace_polymorphic_compare.mli
#20 77.39 cp ../../utils/lazy_backtrack.mli dynlink_compilerlibs/lazy_backtrack.mli
#20 77.39 cp ../../parsing/location.mli dynlink_compilerlibs/location.mli
#20 77.39 cp ../../parsing/longident.mli dynlink_compilerlibs/longident.mli
#20 77.39 cp ../../parsing/docstrings.mli dynlink_compilerlibs/docstrings.mli
#20 77.39 cp ../../parsing/syntaxerr.mli dynlink_compilerlibs/syntaxerr.mli
#20 77.39 cp ../../parsing/ast_helper.mli dynlink_compilerlibs/ast_helper.mli
#20 77.39 cp ../../parsing/ast_mapper.mli dynlink_compilerlibs/ast_mapper.mli
#20 77.39 cp ../../parsing/attr_helper.mli dynlink_compilerlibs/attr_helper.mli
#20 77.39 cp ../../parsing/builtin_attributes.mli dynlink_compilerlibs/builtin_attributes.mli
#20 77.39 cp ../../typing/ident.mli dynlink_compilerlibs/ident.mli
#20 77.39 cp ../../typing/path.mli dynlink_compilerlibs/path.mli
#20 77.39 cp ../../typing/primitive.mli dynlink_compilerlibs/primitive.mli
#20 77.39 cp ../../typing/type_immediacy.mli dynlink_compilerlibs/type_immediacy.mli
#20 77.39 cp ../../typing/shape.mli dynlink_compilerlibs/shape.mli
#20 77.39 cp ../../typing/types.mli dynlink_compilerlibs/types.mli
#20 77.39 cp ../../typing/btype.mli dynlink_compilerlibs/btype.mli
#20 77.39 cp ../../typing/subst.mli dynlink_compilerlibs/subst.mli
#20 77.39 cp ../../typing/predef.mli dynlink_compilerlibs/predef.mli
#20 77.39 cp ../../typing/datarepr.mli dynlink_compilerlibs/datarepr.mli
#20 77.40 cp ../../file_formats/cmi_format.mli dynlink_compilerlibs/cmi_format.mli
#20 77.40 cp ../../typing/persistent_env.mli dynlink_compilerlibs/persistent_env.mli
#20 77.40 cp ../../typing/env.mli dynlink_compilerlibs/env.mli
#20 77.40 cp ../../lambda/debuginfo.mli dynlink_compilerlibs/debuginfo.mli
#20 77.40 cp ../../lambda/lambda.mli dynlink_compilerlibs/lambda.mli
#20 77.40 cp ../../lambda/runtimedef.mli dynlink_compilerlibs/runtimedef.mli
#20 77.40 cp ../../bytecomp/instruct.mli dynlink_compilerlibs/instruct.mli
#20 77.40 cp ../../bytecomp/opcodes.mli dynlink_compilerlibs/opcodes.mli
#20 77.40 cp ../../bytecomp/bytesections.mli dynlink_compilerlibs/bytesections.mli
#20 77.40 cp ../../bytecomp/dll.mli dynlink_compilerlibs/dll.mli
#20 77.40 cp ../../bytecomp/meta.mli dynlink_compilerlibs/meta.mli
#20 77.40 cp ../../bytecomp/symtable.mli dynlink_compilerlibs/symtable.mli
#20 77.40 cp ../../parsing/asttypes.mli dynlink_compilerlibs/asttypes.mli
#20 77.40 cp ../../parsing/parsetree.mli dynlink_compilerlibs/parsetree.mli
#20 77.40 cp ../../typing/outcometree.mli dynlink_compilerlibs/outcometree.mli
#20 77.40 cp ../../file_formats/cmo_format.mli dynlink_compilerlibs/cmo_format.mli
#20 77.40 cp ../../file_formats/cmxs_format.mli dynlink_compilerlibs/cmxs_format.mli
#20 77.40 ../../ocamlc.opt -depend -slash -I dynlink_compilerlibs \
#20 77.40 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 77.40 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 77.40         > dynlink_compilerlibs/.depend
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmi dynlink_compilerlibs/binutils.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmi dynlink_compilerlibs/config.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmi dynlink_compilerlibs/build_path_prefix_map.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmi dynlink_compilerlibs/identifiable.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmi dynlink_compilerlibs/arg_helper.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmi dynlink_compilerlibs/profile.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmi dynlink_compilerlibs/terminfo.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmi dynlink_compilerlibs/warnings.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmi dynlink_compilerlibs/local_store.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmi dynlink_compilerlibs/load_path.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmi dynlink_compilerlibs/int_replace_polymorphic_compare.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmi dynlink_compilerlibs/lazy_backtrack.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmi dynlink_compilerlibs/longident.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmi dynlink_compilerlibs/runtimedef.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmi dynlink_compilerlibs/opcodes.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmi dynlink_compilerlibs/bytesections.mli
#20 77.57 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.57           -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmi dynlink_compilerlibs/dll.mli
#20 77.57 ../../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 77.57 cp dynlink_platform_intf.ml dynlink_platform_intf.mli
#20 77.57 ../../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 77.58 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.58           -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmo dynlink_compilerlibs/binutils.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmo dynlink_compilerlibs/config.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmo dynlink_compilerlibs/build_path_prefix_map.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmi dynlink_compilerlibs/misc.mli
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmo dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmo dynlink_compilerlibs/local_store.ml
#20 77.59 ../../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 77.59 ../../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 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmo dynlink_compilerlibs/arg_helper.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmo dynlink_compilerlibs/terminfo.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmo dynlink_compilerlibs/runtimedef.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmo dynlink_compilerlibs/lazy_backtrack.ml
#20 77.59 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.59           -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmo dynlink_compilerlibs/bytesections.ml
#20 77.59 cp dynlink.cmi dynlink.mli byte/
#20 77.60 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.60           -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmo dynlink_compilerlibs/opcodes.ml
#20 77.60 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.60           -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmi dynlink_compilerlibs/location.mli
#20 77.61 ../../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 77.61 ../../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 77.61 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.61           -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmi dynlink_compilerlibs/asttypes.mli
#20 77.61 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.61           -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmi dynlink_compilerlibs/syntaxerr.mli
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmo dynlink_compilerlibs/syntaxerr.ml
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmo dynlink_compilerlibs/misc.ml
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmi dynlink_compilerlibs/clflags.mli
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmo dynlink_compilerlibs/profile.ml
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmi dynlink_compilerlibs/consistbl.mli
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmo dynlink_compilerlibs/warnings.ml
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmo dynlink_compilerlibs/load_path.ml
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmo dynlink_compilerlibs/longident.ml
#20 77.62 ../../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 77.62           -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmi dynlink_compilerlibs/ident.mli
#20 77.63 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.63           -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmo dynlink_compilerlibs/dll.ml
#20 77.63 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.63           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmi dynlink_compilerlibs/cmxs_format.mli
#20 77.63 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.63           -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmo dynlink_compilerlibs/identifiable.ml
#20 77.63 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.63           -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmi dynlink_compilerlibs/numbers.mli
#20 77.63 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.63           -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmi dynlink_compilerlibs/parsetree.mli
#20 77.63 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.63           -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmo dynlink_compilerlibs/asttypes.ml
#20 77.64 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.64           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmo dynlink_compilerlibs/cmxs_format.ml
#20 77.64 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.64           -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmo dynlink_compilerlibs/consistbl.ml
#20 77.64 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.64           -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmo dynlink_compilerlibs/location.ml
#20 77.65 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.65           -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmo dynlink_compilerlibs/ident.ml
#20 77.65 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.65           -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmi dynlink_compilerlibs/path.mli
#20 77.65 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.65           -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmi dynlink_compilerlibs/debuginfo.mli
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmo dynlink_compilerlibs/numbers.ml
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmo dynlink_compilerlibs/clflags.ml
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmo dynlink_compilerlibs/debuginfo.ml
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmi dynlink_compilerlibs/docstrings.mli
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmi dynlink_compilerlibs/ast_mapper.mli
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmi dynlink_compilerlibs/attr_helper.mli
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmi dynlink_compilerlibs/builtin_attributes.mli
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmi dynlink_compilerlibs/type_immediacy.mli
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmo dynlink_compilerlibs/parsetree.ml
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmo dynlink_compilerlibs/path.ml
#20 77.66 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.66           -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmi dynlink_compilerlibs/shape.mli
#20 77.67 ../../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 77.67           -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmi dynlink_compilerlibs/outcometree.mli
#20 77.68 ../../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 77.68           -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmo dynlink_compilerlibs/docstrings.ml
#20 77.68 ../../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 77.68           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmi dynlink_compilerlibs/ast_helper.mli
#20 77.68 ../../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 77.68           -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmo dynlink_compilerlibs/builtin_attributes.ml
#20 77.68 ../../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 77.68           -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmo dynlink_compilerlibs/type_immediacy.ml
#20 77.68 ../../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 77.68           -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmo dynlink_compilerlibs/attr_helper.ml
#20 77.69 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.69           -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmi dynlink_compilerlibs/primitive.mli
#20 77.69 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.69           -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmo dynlink_compilerlibs/outcometree.ml
#20 77.70 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.70           -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmo dynlink_compilerlibs/shape.ml
#20 77.70 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.70           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmo dynlink_compilerlibs/ast_helper.ml
#20 77.70 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.70           -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmo dynlink_compilerlibs/ast_mapper.ml
#20 77.71 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.71           -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmo dynlink_compilerlibs/primitive.ml
#20 77.71 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.71           -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmi dynlink_compilerlibs/types.mli
#20 77.75 ../../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 77.75           -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmo dynlink_compilerlibs/types.ml
#20 77.75 ../../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 77.75           -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmi dynlink_compilerlibs/btype.mli
#20 77.75 ../../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 77.75           -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmi dynlink_compilerlibs/subst.mli
#20 77.75 ../../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 77.75           -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmi dynlink_compilerlibs/predef.mli
#20 77.75 ../../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 77.75           -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmi dynlink_compilerlibs/datarepr.mli
#20 77.75 ../../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 77.75           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmi dynlink_compilerlibs/cmi_format.mli
#20 77.77 ../../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 77.77           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmo dynlink_compilerlibs/cmi_format.ml
#20 77.77 ../../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 77.77           -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmi dynlink_compilerlibs/persistent_env.mli
#20 77.77 ../../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 77.77           -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmi dynlink_compilerlibs/env.mli
#20 77.78 ../../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 77.78           -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmo dynlink_compilerlibs/btype.ml
#20 77.78 ../../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 77.78           -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmo dynlink_compilerlibs/subst.ml
#20 77.78 ../../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 77.78           -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmo dynlink_compilerlibs/predef.ml
#20 77.78 ../../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 77.78           -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmo dynlink_compilerlibs/datarepr.ml
#20 77.80 ../../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 77.80           -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmo dynlink_compilerlibs/persistent_env.ml
#20 77.80 ../../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 77.80           -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmo dynlink_compilerlibs/env.ml
#20 77.80 ../../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 77.80           -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmi dynlink_compilerlibs/lambda.mli
#20 77.83 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.83           -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmo dynlink_compilerlibs/lambda.ml
#20 77.83 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.83           -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmi dynlink_compilerlibs/instruct.mli
#20 77.83 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.83           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmi dynlink_compilerlibs/cmo_format.mli
#20 77.85 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.85           -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmi dynlink_compilerlibs/symtable.mli
#20 77.85 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.85           -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmo dynlink_compilerlibs/cmo_format.ml
#20 77.85 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.85           -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmo dynlink_compilerlibs/instruct.ml
#20 77.85 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.85           -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmi dynlink_compilerlibs/meta.mli
#20 77.86 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.86           -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmo dynlink_compilerlibs/meta.ml
#20 77.87 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -c -for-pack Dynlink_compilerlibs -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +A -bin-annot -safe-string -strict-formats -I byte \
#20 77.87           -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmo dynlink_compilerlibs/symtable.ml
#20 78.13 ../../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 78.37 ../../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 78.37 ../../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 78.37 ../../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 78.43 ../../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 78.44 ../../ocamlc.opt -g -nostdlib -I ../../stdlib -o extract_crc dynlink.cma byte/dynlink_compilerlibs.cmo extract_crc.cmo
#20 78.56 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 78.56 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o accept.o accept.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o access.o access.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o addrofstr.o addrofstr.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o alarm.o alarm.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o bind.o bind.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o channels.o channels.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o chdir.o chdir.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o chmod.o chmod.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o chown.o chown.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o chroot.o chroot.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o close.o close.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o fsync.o fsync.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o closedir.o closedir.c
#20 78.57 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.57   -o connect.o connect.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o cst2constr.o cst2constr.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o cstringv.o cstringv.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o dup.o dup.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o dup2.o dup2.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o envir.o envir.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o errmsg.o errmsg.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o execv.o execv.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o execve.o execve.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o execvp.o execvp.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o exit.o exit.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o fchmod.o fchmod.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o fchown.o fchown.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o fcntl.o fcntl.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o fork.o fork.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o ftruncate.o ftruncate.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o getaddrinfo.o getaddrinfo.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o getcwd.o getcwd.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o getegid.o getegid.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o geteuid.o geteuid.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o getgid.o getgid.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o getgr.o getgr.c
#20 78.58 gcc -c -O2 -fno-strict-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 78.58   -o getgroups.o getgroups.c
#20 78.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 78.59   -o gethost.o gethost.c
#20 78.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 78.59   -o gethostname.o gethostname.c
#20 78.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 78.59   -o getlogin.o getlogin.c
#20 78.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 78.59   -o getnameinfo.o getnameinfo.c
#20 78.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 78.59   -o getpeername.o getpeername.c
#20 78.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 78.59   -o getpid.o getpid.c
#20 78.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 78.59   -o getppid.o getppid.c
#20 78.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 78.59   -o getproto.o getproto.c
#20 78.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 78.59   -o getpw.o getpw.c
#20 78.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 78.59   -o gettimeofday.o gettimeofday.c
#20 78.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 78.59   -o getserv.o getserv.c
#20 78.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 78.59   -o getsockname.o getsockname.c
#20 78.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 78.59   -o getuid.o getuid.c
#20 78.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 78.59   -o gmtime.o gmtime.c
#20 78.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 78.59   -o initgroups.o initgroups.c
#20 78.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 78.59   -o isatty.o isatty.c
#20 78.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 78.59   -o itimer.o itimer.c
#20 78.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 78.59   -o kill.o kill.c
#20 78.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 78.59   -o link.o link.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o listen.o listen.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o lockf.o lockf.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o lseek.o lseek.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o mkdir.o mkdir.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o mkfifo.o mkfifo.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o mmap.o mmap.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o mmap_ba.o mmap_ba.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o nice.o nice.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o open.o open.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o opendir.o opendir.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o pipe.o pipe.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o putenv.o putenv.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o read.o read.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o realpath.o realpath.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o readdir.o readdir.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o readlink.o readlink.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o rename.o rename.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o rewinddir.o rewinddir.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o rmdir.o rmdir.c
#20 78.60 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.60   -o select.o select.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o sendrecv.o sendrecv.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o setgid.o setgid.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o setgroups.o setgroups.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o setsid.o setsid.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o setuid.o setuid.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o shutdown.o shutdown.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o signals.o signals.c
#20 78.61 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.61   -o sleep.o sleep.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o socket.o socket.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o socketaddr.o socketaddr.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o socketpair.o socketpair.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o sockopt.o sockopt.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o spawn.o spawn.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o stat.o stat.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o strofaddr.o strofaddr.c
#20 78.62 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.62   -o symlink.o symlink.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o termios.o termios.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o time.o time.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o times.o times.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o truncate.o truncate.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o umask.o umask.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o unixsupport.o unixsupport.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o unlink.o unlink.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o utimes.o utimes.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o wait.o wait.c
#20 78.63 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC   -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime   \
#20 78.63   -o write.o write.c
#20 78.63 ../../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 78.67 ../../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 78.67 ../../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 78.71 ../../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 78.74 ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib' -linkall \
#20 78.74          unix.cmo unixLabels.cmo 
#20 78.75 ../../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 78.83 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 78.84 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 78.85 ../../ocamlc.opt -nostdlib -I ../../stdlib -c -absname -w +a-4-9-41-42-44-45-48 -warn-error +A -bin-annot -g -safe-string -strict-sequence -strict-formats  bigarray.mli
#20 78.86 ../../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 78.88 ../../ocamlc.opt -nostdlib -I ../../stdlib -o bigarray.cma -a -linkall bigarray.cmo 
#20 78.89 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 78.89 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 78.90 gcc -c -O2 -fno-strict-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 78.90   -o strstubs.o strstubs.c
#20 78.90 ../../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 78.91 ../../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 78.97 ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib' -linkall \
#20 78.97          str.cmo 
#20 79.07 ../../boot/ocamlrun ../../tools/ocamlmklib -oc camlstr strstubs.o 
#20 79.10 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 79.10 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 79.12 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime  \
#20 79.12   -o st_stubs.b.o st_stubs.c
#20 79.12 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string thread.mli
#20 79.12 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string mutex.mli
#20 79.12 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string event.mli
#20 79.12 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string threadUnix.mli
#20 79.12 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string semaphore.mli
#20 79.13 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string mutex.ml
#20 79.13 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string condition.mli
#20 79.13 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string thread.ml
#20 79.14 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string threadUnix.ml
#20 79.15 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string condition.ml
#20 79.15 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string event.ml
#20 79.15 ../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error +A -g -bin-annot -safe-string semaphore.ml
#20 79.17 ../../boot/ocamlrun ../../tools/ocamlmklib -o threads -ocamlc '../../ocamlc.opt -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -cclib -lunix -linkall \
#20 79.17   -cclib -lpthread thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo semaphore.cmo
#20 79.41 ../../boot/ocamlrun ../../tools/ocamlmklib -o threads st_stubs.b.o -lpthread
#20 79.44 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 79.45 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 79.45 make -j -C debugger all
#20 79.45 make -j -C ocamldoc all
#20 79.45 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 79.45 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 79.46 ../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 79.46 ../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 79.46 ../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 79.46 ../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 79.46 ../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 79.46 ../yacc/ocamlyacc --strict -v odoc_text_parser.mly
#20 79.46 ../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 79.46 ../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 79.46 ../boot/ocamlrun ../lex/ocamllex -q odoc_text_lexer.mll
#20 79.46 ../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 79.46 ../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 79.46 ../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 79.46 ../boot/ocamlrun ../lex/ocamllex -q debugger_lexer.mll
#20 79.46 ../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 79.46 ../yacc/ocamlyacc  debugger_parser.mly
#20 79.46 ../yacc/ocamlyacc --strict -v odoc_parser.mly
#20 79.46 ../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 79.46 ../boot/ocamlrun ../lex/ocamllex -q odoc_lexer.mll
#20 79.46 ../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 79.46 ../boot/ocamlrun ../lex/ocamllex -q odoc_see_lexer.mll
#20 79.46 ../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 79.46 ../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 79.46 ../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 79.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_inherit.ml
#20 79.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug trap_barrier.mli
#20 79.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug history.mli
#20 79.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_source.mli
#20 79.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_latex_style.ml
#20 79.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug program_management.mli
#20 79.47 ../boot/ocamlrun ../lex/ocamllex -q odoc_ocamlhtml.mll
#20 79.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug loadprinter.mli
#20 79.47 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug command_line.mli
#20 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.48 ../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 79.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug frames.mli
#20 79.49 ../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 79.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_information.mli
#20 79.49 ../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 79.49 ../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 79.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug primitives.ml
#20 79.49 ../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 79.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug unix_tools.ml
#20 79.49 ../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 79.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug exec.ml
#20 79.49 ../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 79.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug source.ml
#20 79.49 ../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 79.49 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_source.ml
#20 79.50 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_type.ml
#20 79.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 -for-pack ocamldebug parser_aux.mli
#20 79.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 -for-pack ocamldebug checkpoints.mli
#20 79.50 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_env.mli
#20 79.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 -for-pack ocamldebug symbols.mli
#20 79.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 -for-pack ocamldebug breakpoints.mli
#20 79.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 -for-pack ocamldebug pos.ml
#20 79.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 -for-pack ocamldebug input_handling.ml
#20 79.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 -for-pack ocamldebug debugcom.ml
#20 79.50 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text_parser.ml
#20 79.50 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_name.ml
#20 79.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 -for-pack ocamldebug program_loading.ml
#20 79.51 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_value.ml
#20 79.51 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_parser.ml
#20 79.51 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_see_lexer.ml
#20 79.51 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug frames.ml
#20 79.51 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ocamlhtml.ml
#20 79.51 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_parser.mli
#20 79.51 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug printval.mli
#20 79.51 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug eval.mli
#20 79.51 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug main.ml
#20 79.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_global.ml
#20 79.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug checkpoints.ml
#20 79.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_types.ml
#20 79.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug symbols.ml
#20 79.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_misc.ml
#20 79.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug breakpoints.ml
#20 79.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_lexer.ml
#20 79.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug trap_barrier.ml
#20 79.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug history.ml
#20 79.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug time_travel.ml
#20 79.52 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug program_management.ml
#20 79.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_extension.ml
#20 79.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_exception.ml
#20 79.52 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_env.ml
#20 79.53 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_class.ml
#20 79.53 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_lexer.mli
#20 79.53 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_parser.ml
#20 79.53 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text_lexer.ml
#20 79.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug printval.ml
#20 79.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug eval.ml
#20 79.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug show_information.ml
#20 79.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug loadprinter.ml
#20 79.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug debugger_lexer.ml
#20 79.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug question.ml
#20 79.54 ../ocamlc.opt -g -nostdlib -I ../stdlib -c -I ../otherlibs/unix -I ../otherlibs/dynlink -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../toplevel -I ../driver -I ../file_formats -I ../lambda -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -for-pack ocamldebug command_line.ml
#20 79.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_module.ml
#20 79.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_str.mli
#20 79.58 ../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 79.60 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_text.ml
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_merge.mli
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_sig.mli
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_search.mli
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_scan.ml
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_cross.mli
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments.mli
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dep.ml
#20 79.60 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_analyse.mli
#20 79.61 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_merge.ml
#20 79.62 ../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 79.62 ../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 79.63 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_comments.ml
#20 79.63 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_sig.ml
#20 79.63 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ast.mli
#20 79.64 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_cross.ml
#20 79.65 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_ast.ml
#20 79.65 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_analyse.ml
#20 79.67 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_info.ml
#20 79.67 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_to_text.ml
#20 79.67 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_man.ml
#20 79.67 ../ocamlc.opt -nostdlib -I ../stdlib  -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dag2html.mli
#20 79.67 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_dot.ml
#20 79.68 ../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 79.69 ../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 79.70 ../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 79.74 ../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 79.76 ../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 79.77 ../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 79.77 ../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 79.83 ../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 80.04 ../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 80.07 ../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 80.07 ../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 80.09 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_test.ml
#20 80.09 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc_args.ml
#20 80.09 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c odoc.ml
#20 80.09 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c generators/odoc_todo.ml
#20 80.09 ../ocamlc.opt -nostdlib -I ../stdlib -I ../utils -I ../parsing -I ../typing -I ../driver -I ../bytecomp -I ../toplevel -I ../stdlib -I ../compilerlibs -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/dynlink/native -I ../otherlibs/unix -absname -w +a-4-9-41-42-44-45-48-70 -warn-error +A -safe-string -strict-sequence -strict-formats -bin-annot -principal -c generators/odoc_literate.ml
#20 80.25 ../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 80.31 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 80.34 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 80.34 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 80.34 make -j ocamlopt.opt
#20 80.34 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/internal_variable_names.ml -I middle_end
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/linkage_name.ml -I middle_end
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/backend_var.ml -I middle_end
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/clambda_primitives.ml -I middle_end
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/id_types.ml -I middle_end/flambda/base_types
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/tag.ml -I middle_end/flambda/base_types
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/base_types/static_exception.ml -I middle_end/flambda/base_types
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/pass_wrapper.ml -I middle_end/flambda
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/allocated_const.ml -I middle_end/flambda
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/arch.ml -I asmcomp
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_proc.ml -I asmcomp
#20 80.37 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/opterrors.ml -I driver
#20 80.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/printclambda_primitives.ml -I middle_end
#20 80.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/semantics_of_primitives.ml -I middle_end
#20 80.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/convert_primitives.ml -I middle_end
#20 80.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 middle_end/clambda.ml -I middle_end
#20 80.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 middle_end/compilation_unit.ml -I middle_end
#20 80.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_masm.ml -I asmcomp
#20 80.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_gas.ml -I asmcomp
#20 80.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/x86_dsl.ml -I asmcomp
#20 80.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.ml -I asmcomp
#20 80.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 middle_end/variable.ml -I middle_end
#20 80.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 middle_end/flambda/base_types/export_id.ml -I middle_end/flambda/base_types
#20 80.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 middle_end/flambda/base_types/set_of_closures_id.ml -I middle_end/flambda/base_types
#20 80.72 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 80.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 middle_end/printclambda.ml -I middle_end
#20 80.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 asmcomp/printcmm.ml -I asmcomp
#20 80.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 asmcomp/reg.ml -I asmcomp
#20 80.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 asmcomp/afl_instrument.ml -I asmcomp
#20 80.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 asmcomp/strmatch.ml -I asmcomp
#20 80.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 asmcomp/cmm_invariants.ml -I asmcomp
#20 80.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 asmcomp/emitaux.ml -I asmcomp
#20 80.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 middle_end/flambda/base_types/closure_element.ml -I middle_end/flambda/base_types
#20 80.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 middle_end/symbol.ml -I middle_end
#20 80.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 middle_end/flambda/base_types/mutable_variable.ml -I middle_end/flambda/base_types
#20 80.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 middle_end/flambda/parameter.ml -I middle_end/flambda
#20 80.90 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/mach.ml -I asmcomp
#20 80.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/base_types/closure_id.ml -I middle_end/flambda/base_types
#20 80.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/base_types/var_within_closure.ml -I middle_end/flambda/base_types
#20 80.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 middle_end/flambda/closure_conversion_aux.ml -I middle_end/flambda
#20 80.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/proc.ml -I asmcomp
#20 80.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/dataflow.ml -I asmcomp
#20 80.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/comballoc.ml -I asmcomp
#20 80.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/split.ml -I asmcomp
#20 80.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/reloadgen.ml -I asmcomp
#20 80.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/linear.ml -I asmcomp
#20 81.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/base_types/closure_origin.ml -I middle_end/flambda/base_types
#20 81.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/projection.ml -I middle_end/flambda
#20 81.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 file_formats/linear_format.ml -I file_formats
#20 81.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 asmcomp/branch_relaxation_intf.ml -I asmcomp
#20 81.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 asmcomp/polling.ml -I asmcomp
#20 81.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/branch_relaxation.ml -I asmcomp
#20 81.15 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/reload.ml -I asmcomp
#20 81.17 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 81.17 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 81.17 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 81.17 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 81.17 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 81.17 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 81.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 asmcomp/linearize.ml -I asmcomp
#20 81.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 asmcomp/schedgen.ml -I asmcomp
#20 81.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/flambda.ml -I middle_end/flambda
#20 81.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 middle_end/flambda/un_anf.ml -I middle_end/flambda
#20 81.30 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/printmach.ml -I asmcomp
#20 81.30 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/linscan.ml -I asmcomp
#20 81.30 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/selectgen.ml -I asmcomp
#20 81.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 asmcomp/CSE.ml -I asmcomp
#20 81.46 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c asmcomp/scheduling.ml -I asmcomp
#20 81.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 asmcomp/liveness.ml -I asmcomp
#20 81.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 asmcomp/printlinear.ml -I asmcomp
#20 82.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/flambda_iterators.ml -I middle_end/flambda
#20 82.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/effect_analysis.ml -I middle_end/flambda
#20 82.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/initialize_symbol_to_let_symbol.ml -I middle_end/flambda
#20 82.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/alias_analysis.ml -I middle_end/flambda
#20 82.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 middle_end/flambda/remove_unused_program_constructs.ml -I middle_end/flambda
#20 82.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/selection.ml -I asmcomp
#20 82.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 middle_end/flambda/flambda_utils.ml -I middle_end/flambda
#20 82.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 middle_end/flambda/inlining_cost.ml -I middle_end/flambda
#20 82.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 middle_end/flambda/lift_code.ml -I middle_end/flambda
#20 82.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 middle_end/flambda/share_constants.ml -I middle_end/flambda
#20 82.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 middle_end/flambda/ref_to_variables.ml -I middle_end/flambda
#20 82.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 middle_end/flambda/flambda_invariants.ml -I middle_end/flambda
#20 82.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/inlining_stats_types.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/inlining_stats.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/freshening.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/closure_conversion.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/lift_let_to_initialize_symbol.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/find_recursive_functions.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/invariant_params.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/inconstant_idents.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/remove_unused_closure_vars.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/remove_free_vars_equal_to_args.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/closure_offsets.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/remove_unused_arguments.ml -I middle_end/flambda
#20 83.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 middle_end/flambda/simple_value_approx.ml -I middle_end/flambda
#20 84.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/export_info.ml -I middle_end/flambda
#20 84.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/lift_constants.ml -I middle_end/flambda
#20 84.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/simplify_common.ml -I middle_end/flambda
#20 84.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/inline_and_simplify_aux.ml -I middle_end/flambda
#20 84.12 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/simplify_boxed_integer_ops.ml -I middle_end/flambda
#20 84.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/simplify_primitives.ml -I middle_end/flambda
#20 84.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/export_info_for_pack.ml -I middle_end/flambda
#20 84.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/compilenv.ml -I middle_end
#20 84.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/traverse_for_exported_symbols.ml -I middle_end/flambda
#20 84.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/extract_projections.ml -I middle_end/flambda
#20 84.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/augment_specialised_args.ml -I middle_end/flambda
#20 84.55 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c middle_end/flambda/inlining_transforms.ml -I middle_end/flambda
#20 84.72 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 84.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 84.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 84.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 84.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 84.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 84.80 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 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 asmcomp/cmm_helpers.ml -I asmcomp
#20 84.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/inlining_decision.ml -I middle_end/flambda
#20 84.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 middle_end/flambda/unbox_specialised_args.ml -I middle_end/flambda
#20 84.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 middle_end/flambda/unbox_closures.ml -I middle_end/flambda
#20 85.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 middle_end/flambda/inline_and_simplify.ml -I middle_end/flambda
#20 85.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 middle_end/closure/closure_middle_end.ml -I middle_end/closure
#20 86.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/flambda/flambda_middle_end.ml -I middle_end/flambda
#20 86.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 asmcomp/cmmgen.ml -I asmcomp
#20 87.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/asmgen.ml -I asmcomp
#20 88.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/asmlink.ml -I asmcomp
#20 88.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 driver/optcompile.ml -I driver
#20 88.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 asmcomp/asmlibrarian.ml -I asmcomp
#20 88.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 asmcomp/asmpackager.ml -I asmcomp
#20 88.59 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c driver/optmaindriver.ml -I driver
#20 88.72 ./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 88.72 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 88.81 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink  -o ocamlopt.opt compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa driver/optmain.cmx
#20 89.96 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 89.96 make -j otherlibrariesopt
#20 89.97 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 89.98 make -j -C otherlibs allopt
#20 89.98 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 89.99 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/binutils.cmx dynlink_compilerlibs/binutils.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/config.cmx dynlink_compilerlibs/config.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/build_path_prefix_map.cmx dynlink_compilerlibs/build_path_prefix_map.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/arg_helper.cmx dynlink_compilerlibs/arg_helper.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/terminfo.cmx dynlink_compilerlibs/terminfo.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/local_store.cmx dynlink_compilerlibs/local_store.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/int_replace_polymorphic_compare.cmx dynlink_compilerlibs/int_replace_polymorphic_compare.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/lazy_backtrack.cmx dynlink_compilerlibs/lazy_backtrack.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/runtimedef.cmx dynlink_compilerlibs/runtimedef.ml
#20 90.00 ../../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 90.00           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/opcodes.cmx dynlink_compilerlibs/opcodes.ml
#20 90.00 ../../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 90.00 cp dynlink.cmi dynlink.mli native/
#20 90.04 ../../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 90.05 ../../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 90.05           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/misc.cmx dynlink_compilerlibs/misc.ml
#20 90.05 ../../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 90.05           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/bytesections.cmx dynlink_compilerlibs/bytesections.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/identifiable.cmx dynlink_compilerlibs/identifiable.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/profile.cmx dynlink_compilerlibs/profile.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/consistbl.cmx dynlink_compilerlibs/consistbl.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/warnings.cmx dynlink_compilerlibs/warnings.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/load_path.cmx dynlink_compilerlibs/load_path.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/longident.cmx dynlink_compilerlibs/longident.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/dll.cmx dynlink_compilerlibs/dll.ml
#20 90.25 ../../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 90.25           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmxs_format.cmx dynlink_compilerlibs/cmxs_format.ml
#20 90.38 ../../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 90.38           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/numbers.cmx dynlink_compilerlibs/numbers.ml
#20 90.43 ../../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 90.43           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/clflags.cmx dynlink_compilerlibs/clflags.ml
#20 90.56 ../../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 90.56           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/location.cmx dynlink_compilerlibs/location.ml
#20 90.56 ../../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 90.56           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ident.cmx dynlink_compilerlibs/ident.ml
#20 90.65 ../../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 90.65           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/path.cmx dynlink_compilerlibs/path.ml
#20 90.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 90.71           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/shape.cmx dynlink_compilerlibs/shape.ml
#20 90.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 90.71           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/asttypes.cmx dynlink_compilerlibs/asttypes.ml
#20 90.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 90.71           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/syntaxerr.cmx dynlink_compilerlibs/syntaxerr.ml
#20 90.73 ../../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 90.73           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/parsetree.cmx dynlink_compilerlibs/parsetree.ml
#20 90.73 ../../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 90.73           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/debuginfo.cmx dynlink_compilerlibs/debuginfo.ml
#20 90.78 ../../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 90.78           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/docstrings.cmx dynlink_compilerlibs/docstrings.ml
#20 90.78 ../../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 90.78           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/attr_helper.cmx dynlink_compilerlibs/attr_helper.ml
#20 90.78 ../../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 90.78           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/builtin_attributes.cmx dynlink_compilerlibs/builtin_attributes.ml
#20 90.85 ../../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 90.85           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_helper.cmx dynlink_compilerlibs/ast_helper.ml
#20 90.85 ../../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 90.85           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/type_immediacy.cmx dynlink_compilerlibs/type_immediacy.ml
#20 90.88 ../../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 90.88           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/outcometree.cmx dynlink_compilerlibs/outcometree.ml
#20 90.91 ../../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 90.91           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/primitive.cmx dynlink_compilerlibs/primitive.ml
#20 90.97 ../../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 90.97           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/types.cmx dynlink_compilerlibs/types.ml
#20 91.05 ../../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 91.05           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/ast_mapper.cmx dynlink_compilerlibs/ast_mapper.ml
#20 91.10 ../../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 91.10           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/btype.cmx dynlink_compilerlibs/btype.ml
#20 91.10 ../../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 91.10           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmi_format.cmx dynlink_compilerlibs/cmi_format.ml
#20 91.14 ../../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 91.14           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/persistent_env.cmx dynlink_compilerlibs/persistent_env.ml
#20 91.26 ../../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 91.26           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/predef.cmx dynlink_compilerlibs/predef.ml
#20 91.26 ../../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 91.26           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/datarepr.cmx dynlink_compilerlibs/datarepr.ml
#20 91.32 ../../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 91.32           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/subst.cmx dynlink_compilerlibs/subst.ml
#20 91.47 ../../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 91.47           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/env.cmx dynlink_compilerlibs/env.ml
#20 92.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 92.01           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/lambda.cmx dynlink_compilerlibs/lambda.ml
#20 92.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 92.16           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/instruct.cmx dynlink_compilerlibs/instruct.ml
#20 92.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 92.16           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/cmo_format.cmx dynlink_compilerlibs/cmo_format.ml
#20 92.19 ../../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 92.19           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/meta.cmx dynlink_compilerlibs/meta.ml
#20 92.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 92.21           -function-sections -I native -I dynlink_compilerlibs -o dynlink_compilerlibs/symtable.cmx dynlink_compilerlibs/symtable.ml
#20 92.32 ../../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 92.53 ../../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 92.64 ../../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 92.68 ../../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 92.68             -o dynlink.cmxa native/dynlink_compilerlibs.cmx dynlink_types.cmx dynlink_platform_intf.cmx dynlink_common.cmx native/dynlink.cmx
#20 92.72 cp native/dynlink.cmx dynlink.cmx
#20 92.72 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 92.73 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 92.75 ../../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 92.87 ../../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 92.91 ../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlopt '../../ocamlopt.opt -nostdlib -I ../../stdlib' -linkall \
#20 92.91          unix.cmx unixLabels.cmx 
#20 92.93 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o unix.cmxs -I . unix.cmxa
#20 93.02 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 93.03 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 93.04 ../../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 93.06 ../../ocamlopt.opt -nostdlib -I ../../stdlib -o bigarray.cmxa -a -linkall bigarray.cmx 
#20 93.08 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o bigarray.cmxs -I . bigarray.cmxa
#20 93.12 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 93.12 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 93.13 ../../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 93.25 ../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlopt '../../ocamlopt.opt -nostdlib -I ../../stdlib' -linkall \
#20 93.25          str.cmx 
#20 93.27 ../../ocamlopt.opt -nostdlib -I ../../stdlib -shared -o str.cmxs -I . str.cmxa
#20 93.33 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 93.33 make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 93.34 gcc -c -O2 -fno-strict-aliasing -fwrapv -pthread -Wall -Wdeclaration-after-statement -fno-common -fexcess-precision=standard -ffunction-sections -g -fPIC  -D_FILE_OFFSET_BITS=64 -DCAML_NAME_SPACE  -I../../runtime -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux -DNATIVE_CODE -DTARGET_arm64 -DMODEL_default -DSYS_linux  \
#20 93.34   -o st_stubs.n.o st_stubs.c
#20 93.34 ../../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 93.34 ../../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 93.37 ../../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 93.38 ../../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 93.40 ../../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 93.40 ../../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 93.46 ../../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 93.63 ../../boot/ocamlrun ../../tools/ocamlmklib -o threadsnat st_stubs.n.o
#20 93.67 make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 93.67 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs'
#20 93.67 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 93.67 make -j ocamllex.opt ocamltoolsopt ocamltoolsopt.opt ocamldoc.opt \
#20 93.67    ocamlnat
#20 93.67 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 93.71 make -j -C lex allopt
#20 93.71 make -j -C tools opt
#20 93.71 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 93.71 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 93.71 ./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 93.71 make -j -C yacc  all
#20 93.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 toplevel/native/tophooks.mli
#20 93.71 cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/native
#20 93.71 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 93.71 cp toplevel/trace.cmi toplevel/trace.mli toplevel/native
#20 93.71 cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/native
#20 93.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 toplevel/genprintval.ml -I toplevel
#20 93.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 toplevel/native/trace.ml -I toplevel/native
#20 93.71 ../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 93.72 ../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 93.72 make[3]: Nothing to be done for 'all'.
#20 93.72 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/yacc'
#20 93.72 make -j -C lex all
#20 93.72 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 93.72 ../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 93.73 make[3]: Nothing to be done for 'all'.
#20 93.73 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 93.73 make -j -C ocamldoc opt.opt
#20 93.73 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 93.74 ../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 93.74 ../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 93.74 ../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 93.74 ../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 93.74 ../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 93.74 ../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 93.75 ../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 93.75 ../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 93.78 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 93.79 ../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 93.83 ../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 93.83 ../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 93.84 ../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 93.87 ../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 93.87 ../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 93.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_parameter.ml
#20 93.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_parser.ml
#20 93.93 ../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 93.93 ../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 93.98 ../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 94.00 ../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 94.00 ../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 94.06 ../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 94.06 ../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 94.06 ../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 94.06 ../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 94.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_extension.ml
#20 94.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_exception.ml
#20 94.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_class.ml
#20 94.14 ../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 94.14 ../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 94.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -c toplevel/topcommon.ml -I toplevel
#20 94.16 ../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 94.21 ../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 94.21 ../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 94.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_scan.ml
#20 94.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_dep.ml
#20 94.30 ../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 94.30 ../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 94.34 ../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 94.37 ../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 94.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/tophooks.ml -I toplevel/native
#20 94.43 ../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 94.43 ../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 94.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 toplevel/native/topeval.ml -I toplevel/native
#20 94.56 ../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 94.67 ../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 94.75 ../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 94.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 -I toplevel/native -c toplevel/toploop.ml
#20 94.85 ../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 94.95 ../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 95.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 -I toplevel/native -c toplevel/topdirs.ml
#20 95.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 toplevel/native/topmain.ml -I toplevel/native
#20 95.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_info.ml
#20 95.13 ../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 95.13 ../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 95.13 ../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 95.13 ../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 95.13 ../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 95.14 ./boot/ocamlrun ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -I middle_end/closure -I middle_end/flambda -I middle_end/flambda/base_types -I asmcomp -I driver -I toplevel -function-sections -I toplevel/native -c toplevel/topstart.ml
#20 95.14 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/lex'
#20 95.14 make -j -C tools opt.opt
#20 95.14 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 95.16 ../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 95.16 ../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 95.16 ../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 95.16 ../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 95.16 ../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 95.16 ../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 95.17 ../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 95.17 ../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 95.17 ../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 95.17 ../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 95.17 ../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 95.17 ../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 95.18 ../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib \
#20 95.18   -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 95.21 ../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 95.22 ../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 95.23 ../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 95.24 ../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 95.27 ../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 95.28 ../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 95.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 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 95.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 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 95.30 ../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 95.30 ../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 95.37 ../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 95.43 ../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 95.44 ./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 95.48 ./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 95.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 ocamlmklib.opt ../utils/config.cmx ../utils/build_path_prefix_map.cmx ../utils/misc.cmx ocamlmklib.cmx
#20 95.51 ../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 95.54 ../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 95.57 ../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 96.30 ../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 96.36 ../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 96.45 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 96.57 ../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 96.57 ../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 96.57 ../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 96.61 ../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 97.44 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 97.44 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 97.44 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 97.46 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 97.46 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.46 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"
#20 97.47 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 97.47 mkdir -p "/tmp/opam/bootstrap/ocaml/share/doc/ocaml"
#20 97.47 make -j -C runtime install
#20 97.47 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 97.54 /usr/bin/install -c -p ocamlrun ocamlrund ocamlruni "/tmp/opam/bootstrap/ocaml/bin"
#20 97.55 /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 97.57 /usr/bin/install -c -p libcamlrun_shared.so "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.58 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 97.58 /usr/bin/install -c -p -m 644 caml/domain_state.tbl caml/*.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 97.59 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 97.59 /usr/bin/install -c -p ocaml "/tmp/opam/bootstrap/ocaml/bin"
#20 97.61 /usr/bin/install -c -p ocamlc "/tmp/opam/bootstrap/ocaml/bin/ocamlc.byte"
#20 97.64 make -j -C stdlib install
#20 97.64 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 97.65 stale=""; \
#20 97.65   if test -n "$stale" ; then \
#20 97.65     echo "/tmp/opam/bootstrap/ocaml/lib/ocaml contains stale stdlib artefacts"; \
#20 97.65     echo "Please rm /tmp/opam/bootstrap/ocaml/lib/ocaml/stdlib__*.cm* and re-run make install"; \
#20 97.65     exit 1; \
#20 97.65   fi
#20 97.65 /usr/bin/install -c -p -m 644 \
#20 97.65   stdlib.cma std_exit.cmo *.cmi camlheader_ur \
#20 97.65   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.66 /usr/bin/install -c -p -m 644 \
#20 97.66   *.cmt *.cmti *.mli *.ml \
#20 97.66   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.70 /usr/bin/install -c -p -m 644 target_camlheader "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheader"
#20 97.70 /usr/bin/install -c -p -m 644 target_camlheaderd "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheaderd"
#20 97.71 /usr/bin/install -c -p -m 644 target_camlheaderi "/tmp/opam/bootstrap/ocaml/lib/ocaml/camlheaderi"
#20 97.71 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 97.71 /usr/bin/install -c -p lex/ocamllex \
#20 97.71   "/tmp/opam/bootstrap/ocaml/bin/ocamllex.byte"
#20 97.71 /usr/bin/install -c -p yacc/ocamlyacc "/tmp/opam/bootstrap/ocaml/bin"
#20 97.72 /usr/bin/install -c -p -m 644 \
#20 97.72    utils/*.cmi \
#20 97.72    parsing/*.cmi \
#20 97.72    typing/*.cmi \
#20 97.72    bytecomp/*.cmi \
#20 97.72    file_formats/*.cmi \
#20 97.72    lambda/*.cmi \
#20 97.72    driver/*.cmi \
#20 97.72    toplevel/*.cmi \
#20 97.72    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 97.73 /usr/bin/install -c -p -m 644 \
#20 97.73    toplevel/byte/*.cmi \
#20 97.73    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 97.74 /usr/bin/install -c -p -m 644 \
#20 97.74    utils/*.cmt utils/*.cmti utils/*.mli \
#20 97.74    parsing/*.cmt parsing/*.cmti parsing/*.mli \
#20 97.74    typing/*.cmt typing/*.cmti typing/*.mli \
#20 97.74    file_formats/*.cmt file_formats/*.cmti file_formats/*.mli \
#20 97.74    lambda/*.cmt lambda/*.cmti lambda/*.mli \
#20 97.74    bytecomp/*.cmt bytecomp/*.cmti bytecomp/*.mli \
#20 97.74    driver/*.cmt driver/*.cmti driver/*.mli \
#20 97.74    toplevel/*.cmt toplevel/*.cmti toplevel/*.mli \
#20 97.74    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 97.82 /usr/bin/install -c -p -m 644 \
#20 97.82    toplevel/byte/*.cmt \
#20 97.82    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 97.83 /usr/bin/install -c -p -m 644 \
#20 97.83   compilerlibs/*.cma \
#20 97.83   "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 97.86 /usr/bin/install -c -p -m 644 \
#20 97.86    driver/main.cmo toplevel/topstart.cmo \
#20 97.86    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 97.87 /usr/bin/install -c -p expunge "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.89 /usr/bin/install -c -p -m 644 \
#20 97.89    toplevel/topdirs.cmi \
#20 97.89    "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.89 /usr/bin/install -c -p -m 644 \
#20 97.89    toplevel/topdirs.cmt \
#20 97.89    toplevel/topdirs.cmti toplevel/topdirs.mli \
#20 97.89    "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.89 make -j -C tools install
#20 97.89 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 97.91 /usr/bin/install -c -p -m 644 \
#20 97.91   profiling.cmi profiling.cmo \
#20 97.91   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.91 /usr/bin/install -c -p -m 644 \
#20 97.91   profiling.cmt profiling.cmti \
#20 97.91   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 97.91 for i in ocamldep ocamlprof ocamlcp ocamloptp ocamlmklib ocamlmktop ocamlobjinfo; \
#20 97.91 do \
#20 97.91   /usr/bin/install -c -p "$i" "/tmp/opam/bootstrap/ocaml/bin/$i.byte"; \
#20 97.91   if test -f "$i".opt; then \
#20 97.91     /usr/bin/install -c -p "$i.opt" "/tmp/opam/bootstrap/ocaml/bin" && \
#20 97.91     (cd "/tmp/opam/bootstrap/ocaml/bin" && ln -sf "$i.opt" "$i"); \
#20 97.91   else \
#20 97.91     (cd "/tmp/opam/bootstrap/ocaml/bin" && ln -sf "$i.byte" "$i"); \
#20 97.91   fi; \
#20 97.91 done
#20 98.08 if test -f ocamlcmt.opt; then \
#20 98.08   /usr/bin/install -c -p\
#20 98.08     ocamlcmt.opt "/tmp/opam/bootstrap/ocaml/bin/ocamlcmt"; \
#20 98.08 else \
#20 98.08   /usr/bin/install -c -p ocamlcmt "/tmp/opam/bootstrap/ocaml/bin"; \
#20 98.08 fi
#20 98.10 /usr/bin/install -c -p -m 644 \
#20 98.10   eventlog_metadata \
#20 98.10   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.10 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 98.11 make -j -C man install
#20 98.11 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/man'
#20 98.11 mkdir -p /tmp/opam/bootstrap/ocaml/man/man1
#20 98.11 /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 98.12 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/man'
#20 98.12 for i in dynlink unix bigarray str systhreads; do \
#20 98.12   make -j -C otherlibs/$i install || exit $?; \
#20 98.12 done
#20 98.12 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 98.14 /usr/bin/install -c -p -m 644 \
#20 98.14   dynlink.cmi dynlink.cma \
#20 98.14   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.14 /usr/bin/install -c -p -m 644 \
#20 98.14   dynlink.cmti dynlink.mli \
#20 98.14   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.15 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 98.15 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 98.16 if test -f dllunix.so; then \
#20 98.16   /usr/bin/install -c -p \
#20 98.16     dllunix.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 98.16 fi
#20 98.16 /usr/bin/install -c -p -m 644 libunix.a "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.17 /usr/bin/install -c -p -m 644 \
#20 98.17   unix.cma unix.cmi unixLabels.cmi \
#20 98.17   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.17 /usr/bin/install -c -p -m 644 \
#20 98.17   unix.mli unixLabels.mli \
#20 98.17           unix.cmti unixLabels.cmti \
#20 98.17   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.18 if test -n "unixsupport.h socketaddr.h"; then \
#20 98.18   /usr/bin/install -c -p -m 644 unixsupport.h socketaddr.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 98.18 fi
#20 98.18 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 98.18 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 98.19 if test -f dllbigarray.so; then \
#20 98.19   /usr/bin/install -c -p \
#20 98.19     dllbigarray.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 98.19 fi
#20 98.19 /usr/bin/install -c -p -m 644 \
#20 98.19   bigarray.cma bigarray.cmi \
#20 98.19   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.19 /usr/bin/install -c -p -m 644 \
#20 98.19   bigarray.mli \
#20 98.19           bigarray.cmti \
#20 98.19   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.20 if test -n ""; then \
#20 98.20   /usr/bin/install -c -p -m 644  "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 98.20 fi
#20 98.20 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 98.20 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 98.21 if test -f dllcamlstr.so; then \
#20 98.21   /usr/bin/install -c -p \
#20 98.21     dllcamlstr.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 98.21 fi
#20 98.21 /usr/bin/install -c -p -m 644 libcamlstr.a "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.22 /usr/bin/install -c -p -m 644 \
#20 98.22   str.cma str.cmi \
#20 98.22   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.22 /usr/bin/install -c -p -m 644 \
#20 98.22   str.mli \
#20 98.22           str.cmti \
#20 98.22   "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.22 if test -n ""; then \
#20 98.22   /usr/bin/install -c -p -m 644  "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml/"; \
#20 98.22 fi
#20 98.22 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 98.23 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 98.23 if test -f dllthreads.so; then \
#20 98.23   /usr/bin/install -c -p dllthreads.so "/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs"; \
#20 98.23 fi
#20 98.24 /usr/bin/install -c -p -m 644 libthreads.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.24 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 98.24 /usr/bin/install -c -p -m 644 \
#20 98.24   thread.cmi mutex.cmi condition.cmi event.cmi threadUnix.cmi semaphore.cmi threads.cma \
#20 98.24   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 98.24 /usr/bin/install -c -p -m 644 \
#20 98.24   thread.cmti mutex.cmti condition.cmti event.cmti threadUnix.cmti semaphore.cmti \
#20 98.24   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 98.25 /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 98.25 /usr/bin/install -c -p -m 644 threads.h "/tmp/opam/bootstrap/ocaml/lib/ocaml/caml"
#20 98.25 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 98.25 make -j -C ocamldoc install
#20 98.26 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 98.27 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 98.27 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.27 /usr/bin/install -c -p ../ocamldoc/ocamldoc "/tmp/opam/bootstrap/ocaml/bin"
#20 98.28 /usr/bin/install -c -p -m 644 \
#20 98.28   ocamldoc.hva *.cmi odoc_info.cma \
#20 98.28   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.29 /usr/bin/install -c -p -m 644 \
#20 98.29   odoc_info.cmi \
#20 98.29   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.29 /usr/bin/install -c -p -m 644 \
#20 98.29   odoc_info.mli odoc_info.cmt odoc_info.cmti \
#20 98.29   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.29 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 98.29 if test -n "ocamldebugger"; then \
#20 98.29   make -j -C debugger install; \
#20 98.29 fi
#20 98.30 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 98.31 /usr/bin/install -c -p ocamldebug "/tmp/opam/bootstrap/ocaml/bin"
#20 98.34 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/debugger'
#20 98.34 /usr/bin/install -c -p -m 644 Makefile.config "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.34 /usr/bin/install -c -p -m 644 Changes README.adoc README.win32.adoc LICENSE "/tmp/opam/bootstrap/ocaml/share/doc/ocaml"
#20 98.35 if test -f ocamlopt; then make -j installopt; else \
#20 98.35    cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 98.35    ln -sf ocamlc.byte ocamlc; \
#20 98.35    ln -sf ocamllex.byte ocamllex; \
#20 98.35    (test -f flexlink.byte && \
#20 98.35       ln -sf flexlink.byte flexlink) || true; \
#20 98.35 fi
#20 98.35 make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 98.36 make -j -C runtime installopt
#20 98.37 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 98.43 /usr/bin/install -c -p -m 644 libasmrun.a libasmrund.a libasmruni.a libasmrun_pic.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.45 /usr/bin/install -c -p libasmrun_shared.so "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.46 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/runtime'
#20 98.46 /usr/bin/install -c -p ocamlopt "/tmp/opam/bootstrap/ocaml/bin/ocamlopt.byte"
#20 98.48 make -j -C stdlib installopt
#20 98.48 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 98.49 stale=""; \
#20 98.49   if test -n "$stale" ; then \
#20 98.49     echo "/tmp/opam/bootstrap/ocaml/lib/ocaml contains stale stdlib artefacts"; \
#20 98.49     echo "Please rm /tmp/opam/bootstrap/ocaml/lib/ocaml/stdlib__*.cmx and re-run make install"; \
#20 98.49     exit 1; \
#20 98.49   fi
#20 98.49 /usr/bin/install -c -p -m 644 \
#20 98.49   stdlib.cmxa stdlib.a std_exit.o *.cmx \
#20 98.49   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.51 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/stdlib'
#20 98.51 /usr/bin/install -c -p -m 644 \
#20 98.51     middle_end/*.cmi \
#20 98.51     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.51 /usr/bin/install -c -p -m 644 \
#20 98.51     middle_end/closure/*.cmi \
#20 98.51     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.51 /usr/bin/install -c -p -m 644 \
#20 98.51     middle_end/flambda/*.cmi \
#20 98.51     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.52 /usr/bin/install -c -p -m 644 \
#20 98.52     middle_end/flambda/base_types/*.cmi \
#20 98.52     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.53 /usr/bin/install -c -p -m 644 \
#20 98.53     asmcomp/*.cmi \
#20 98.53     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.54 /usr/bin/install -c -p -m 644 \
#20 98.54     middle_end/*.cmt middle_end/*.cmti \
#20 98.54     middle_end/*.mli \
#20 98.54     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.55 /usr/bin/install -c -p -m 644 \
#20 98.55     middle_end/closure/*.cmt middle_end/closure/*.cmti \
#20 98.55     middle_end/closure/*.mli \
#20 98.55     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.55 /usr/bin/install -c -p -m 644 \
#20 98.55     middle_end/flambda/*.cmt middle_end/flambda/*.cmti \
#20 98.55     middle_end/flambda/*.mli \
#20 98.55     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.58 /usr/bin/install -c -p -m 644 \
#20 98.58     middle_end/flambda/base_types/*.cmt \
#20 98.58             middle_end/flambda/base_types/*.cmti \
#20 98.58     middle_end/flambda/base_types/*.mli \
#20 98.58     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.59 /usr/bin/install -c -p -m 644 \
#20 98.59     asmcomp/*.cmt asmcomp/*.cmti \
#20 98.59     asmcomp/*.mli \
#20 98.59     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.61 /usr/bin/install -c -p -m 644 \
#20 98.61     driver/optmain.cmo \
#20 98.61     "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.61 make -j -C ocamldoc installopt
#20 98.62 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 98.63 if test -f ../ocamldoc/ocamldoc.opt; then make -j installopt_really ; fi
#20 98.63 make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 98.64 mkdir -p "/tmp/opam/bootstrap/ocaml/bin"
#20 98.64 mkdir -p "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.64 /usr/bin/install -c -p ../ocamldoc/ocamldoc.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 98.67 /usr/bin/install -c -p -m 644 \
#20 98.67   odoc_info.cmi \
#20 98.67   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.67 /usr/bin/install -c -p -m 644 \
#20 98.67   odoc_info.mli odoc_info.cmt odoc_info.cmti \
#20 98.67   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.68 /usr/bin/install -c -p -m 644 \
#20 98.68   ocamldoc.hva *.cmx odoc_info.a odoc_info.cmxa \
#20 98.68   "/tmp/opam/bootstrap/ocaml/lib/ocaml/ocamldoc"
#20 98.69 make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 98.69 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/ocamldoc'
#20 98.69 for i in dynlink unix bigarray str systhreads; do \
#20 98.69   make -j -C otherlibs/$i installopt || exit $?; \
#20 98.69 done
#20 98.69 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 98.71 /usr/bin/install -c -p -m 644 \
#20 98.71   native/dynlink_compilerlibs.cmx dynlink_types.cmx dynlink_platform_intf.cmx dynlink_common.cmx native/dynlink.cmx dynlink.cmxa dynlink.a \
#20 98.71   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.72 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/dynlink'
#20 98.72 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 98.73 /usr/bin/install -c -p -m 644 \
#20 98.73    unix.cmx unixLabels.cmx unix.cmxa unix.a \
#20 98.73    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.73 if test -f unix.cmxs; then \
#20 98.73   /usr/bin/install -c -p unix.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 98.73 fi
#20 98.74 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/unix'
#20 98.74 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 98.75 /usr/bin/install -c -p -m 644 \
#20 98.75    bigarray.cmx bigarray.cmxa bigarray.a \
#20 98.75    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.75 if test -f bigarray.cmxs; then \
#20 98.75   /usr/bin/install -c -p bigarray.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 98.75 fi
#20 98.75 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/bigarray'
#20 98.76 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 98.76 /usr/bin/install -c -p -m 644 \
#20 98.76    str.cmx str.cmxa str.a \
#20 98.76    "/tmp/opam/bootstrap/ocaml/lib/ocaml/"
#20 98.77 if test -f str.cmxs; then \
#20 98.77   /usr/bin/install -c -p str.cmxs "/tmp/opam/bootstrap/ocaml/lib/ocaml"; \
#20 98.77 fi
#20 98.77 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/str'
#20 98.77 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 98.78 /usr/bin/install -c -p -m 644 libthreadsnat.a "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.78 /usr/bin/install -c -p -m 644 \
#20 98.78   thread.cmx mutex.cmx condition.cmx event.cmx threadUnix.cmx semaphore.cmx threads.cmxa threads.a \
#20 98.78   "/tmp/opam/bootstrap/ocaml/lib/ocaml/threads"
#20 98.79 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/otherlibs/systhreads'
#20 98.79 if test -f ocamlopt.opt; then make -j installoptopt; else \
#20 98.79    cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 98.79    ln -sf ocamlc.byte ocamlc; \
#20 98.79    ln -sf ocamlopt.byte ocamlopt; \
#20 98.79    ln -sf ocamllex.byte ocamllex; \
#20 98.79    (test -f flexlink.byte && \
#20 98.79      ln -sf flexlink.byte flexlink) || true; \
#20 98.79 fi
#20 98.79 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 98.80 /usr/bin/install -c -p ocamlc.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 98.83 /usr/bin/install -c -p ocamlopt.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 98.85 /usr/bin/install -c -p lex/ocamllex.opt "/tmp/opam/bootstrap/ocaml/bin"
#20 98.86 cd "/tmp/opam/bootstrap/ocaml/bin"; \
#20 98.86    ln -sf ocamlc.opt ocamlc; \
#20 98.86    ln -sf ocamlopt.opt ocamlopt; \
#20 98.86    ln -sf ocamllex.opt ocamllex
#20 98.87 /usr/bin/install -c -p -m 644 \
#20 98.87    utils/*.cmx parsing/*.cmx typing/*.cmx bytecomp/*.cmx \
#20 98.87    toplevel/*.cmx toplevel/native/*.cmx \
#20 98.87    toplevel/native/tophooks.cmi \
#20 98.87    file_formats/*.cmx \
#20 98.87    lambda/*.cmx \
#20 98.87    driver/*.cmx asmcomp/*.cmx middle_end/*.cmx \
#20 98.87            middle_end/closure/*.cmx \
#20 98.87            middle_end/flambda/*.cmx \
#20 98.87            middle_end/flambda/base_types/*.cmx \
#20 98.87           "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.89 /usr/bin/install -c -p -m 644 \
#20 98.89    compilerlibs/*.cmxa compilerlibs/*.a \
#20 98.89    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.93 /usr/bin/install -c -p -m 644 \
#20 98.93    driver/main.cmx driver/main.o \
#20 98.93    driver/optmain.cmx driver/optmain.o \
#20 98.93    toplevel/topstart.o \
#20 98.93    "/tmp/opam/bootstrap/ocaml/lib/ocaml/compiler-libs"
#20 98.93 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 98.93 make -j -C tools installopt
#20 98.93 make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 98.95 /usr/bin/install -c -p -m 644 \
#20 98.95           profiling.cmx profiling.o \
#20 98.95   "/tmp/opam/bootstrap/ocaml/lib/ocaml"
#20 98.95 make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1/tools'
#20 98.95 make[1]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.1'
#20 98.96 make: Entering directory '/tmp/opam/src_ext'
#20 99.00  * Downloading cppo...
#20 99.65 cppo.tar.gz has the expected MD5.
#20 99.65  * Downloading base64...
#20 100.2 base64.tbz has the expected MD5.
#20 100.3  * Downloading extlib...
#20 100.8 extlib.tar.gz has the expected MD5.
#20 100.8  * Downloading re...
#20 101.2 re.tbz has the expected MD5.
#20 101.2  * Downloading cmdliner...
#20 101.3 cmdliner.tbz has the expected MD5.
#20 101.3  * Downloading ocamlgraph...
#20 101.9 ocamlgraph.tbz has the expected MD5.
#20 101.9  * Downloading cudf...
#20 102.3 cudf.tar.gz has the expected MD5.
#20 102.3  * Downloading dose3...
#20 102.9 dose3.tar.gz has the expected MD5.
#20 102.9  * Downloading opam-file-format...
#20 103.5 opam-file-format.tar.gz has the expected MD5.
#20 103.5  * Downloading seq...
#20 104.2 seq.tar.gz has the expected MD5.
#20 104.2  * Downloading stdlib-shims...
#20 104.5 stdlib-shims.tbz has the expected MD5.
#20 104.5  * Downloading spdx_licenses...
#20 105.1 spdx_licenses.tar.gz has the expected MD5.
#20 105.1  * Downloading opam-0install-cudf...
#20 105.6 opam-0install-cudf.tbz has the expected MD5.
#20 105.6  * Downloading 0install-solver...
#20 107.3 0install-solver.tbz has the expected MD5.
#20 107.3  * Downloading uutf...
#20 107.5 uutf.tbz has the expected MD5.
#20 107.5  * Downloading jsonm...
#20 107.6 jsonm.tbz has the expected MD5.
#20 107.6  * Downloading sha...
#20 108.2 sha.tbz has the expected MD5.
#20 108.2  * Downloading swhid_core...
#20 108.9 swhid_core.tar.gz has the expected MD5.
#20 109.0  * Downloading dune-local...
#20 109.7 dune-local.tbz has the expected MD5.
#20 109.7  * Downloading findlib...
#20 111.0 findlib.tar.gz has the expected MD5.
#20 111.0  * Downloading ocamlbuild...
#20 111.6 ocamlbuild.tar.gz has the expected MD5.
#20 111.6  * Downloading topkg...
#20 111.8 topkg.tbz has the expected MD5.
#20 111.8  * Downloading mccs...
#20 112.6 mccs.tar.gz has the expected MD5.
#20 112.6  * Downloading ocaml...
#20 112.9 ocaml.tar.gz has the expected MD5.
#20 112.9  * Downloading flexdll...
#20 113.5 flexdll.tar.gz has the expected MD5.
#20 113.5 make: Leaving directory '/tmp/opam/src_ext'
#20 DONE 114.2s

#21 [stage-0  8/10] RUN cd /tmp/opam-sources && cp -P -R -p . ../opam-build-2.0 && cd ../opam-build-2.0 && git checkout 7d4a0f2e0fefe748efbd7358775b1a0bd8267544 && ln -s ../opam/src_ext/archives src_ext/archives && env PATH="/tmp/opam/bootstrap/ocaml/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ./configure --enable-cold-check && env PATH="/tmp/opam/bootstrap/ocaml/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" make lib-ext all && mkdir -p /usr/local/bin && cp /tmp/opam-build-2.0/opam /usr/local/bin/opam-2.0 && chmod a+x /usr/local/bin/opam-2.0 && rm -rf /tmp/opam-build-2.0
#21 sha256:d56a51467504648fef66621ba635544e82f3917ce57c02c06193ff58fa9318ff
#21 0.525 Note: switching to '7d4a0f2e0fefe748efbd7358775b1a0bd8267544'.
#21 0.525 
#21 0.525 You are in 'detached HEAD' state. You can look around, make experimental
#21 0.525 changes and commit them, and you can discard any commits you make in this
#21 0.525 state without impacting any branches by switching back to a branch.
#21 0.525 
#21 0.525 If you want to create a new branch to retain commits you create, you may
#21 0.525 do so (now or later) by using -c with the switch command. Example:
#21 0.525 
#21 0.525   git switch -c <new-branch-name>
#21 0.525 
#21 0.525 Or undo this operation with:
#21 0.525 
#21 0.525   git switch -
#21 0.525 
#21 0.525 Turn off this advice by setting config variable advice.detachedHead to false
#21 0.525 
#21 0.525 HEAD is now at 7d4a0f2e Merge pull request #4874 from rjbou/2010
#21 0.671 checking for ocamlc... ocamlc
#21 0.682 OCaml version is 4.14.1
#21 0.691 OCaml library path is /tmp/opam/bootstrap/ocaml/lib/ocaml
#21 0.691 checking for ocamlopt... ocamlopt
#21 0.710 checking for ocamlc.opt... ocamlc.opt
#21 0.720 checking for ocamlopt.opt... ocamlopt.opt
#21 0.731 checking for ocaml... ocaml
#21 0.731 checking for ocamldep... ocamldep
#21 0.732 checking for ocamldep.opt... ocamldep.opt
#21 0.749 checking for ocamlmktop... ocamlmktop
#21 0.749 checking for ocamlmklib... ocamlmklib
#21 0.750 checking for ocamldoc... ocamldoc
#21 0.750 checking for ocamldoc.opt... ocamldoc.opt
#21 0.768 checking for ocamlbuild... no
#21 0.769 checking OCaml Sys.os_type... Unix
#21 0.799 checking for gawk... no
#21 0.799 checking for mawk... mawk
#21 0.810 checking for compiler type... cc
#21 1.088 checking for compiler architecture... arm64
#21 1.367 checking for compiler system... linux
#21 1.653 checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
#21 1.687 checking whether the C compiler works... yes
#21 1.741 checking for C compiler default output file name... a.out
#21 1.742 checking for suffix of executables... 
#21 1.797 checking whether we are cross compiling... no
#21 1.858 checking for suffix of object files... o
#21 1.889 checking whether we are using the GNU C compiler... yes
#21 1.918 checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
#21 1.952 checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to accept ISO C89... none needed
#21 2.001 checking for ocamlobjinfo... ocamlobjinfo
#21 2.001 checking for ocamlfind... no
#21 2.002 checking for curl... curl
#21 2.003 checking for dune... no
#21 2.003 checking for cppo... no
#21 2.004 checking for patch... patch
#21 2.005 checking for bunzip2... bunzip2
#21 2.005 
#21 2.005 checking for OCaml findlib package unix... not found
#21 2.007 checking for OCaml findlib package bigarray... not found
#21 2.008 checking for OCaml findlib package extlib... not found
#21 2.009 checking for OCaml findlib package re... not found
#21 2.010 checking for OCaml findlib package re.glob... not found
#21 2.011 checking for OCaml findlib package cmdliner... not found
#21 2.012 checking for OCaml findlib package ocamlgraph... not found
#21 2.013 checking for OCaml findlib package cudf... not found
#21 2.014 checking for OCaml findlib package dose3.common... not found
#21 2.015 checking for OCaml findlib package dose3.algo... not found
#21 2.017 checking for OCaml findlib package opam-file-format... not found
#21 2.018 checking for OCaml findlib package mccs... not found
#21 2.020 checking for g++... g++
#21 2.052 checking whether we are using the GNU C++ compiler... yes
#21 2.092 checking whether g++ accepts -g... yes
#21 2.125 
#21 2.125 ============================================================================
#21 2.125 Some dependencies are missing. If you are just interested in the stand-alone
#21 2.125 'opam' binary, run 'make lib-ext' to download and include them.
#21 2.125 ============================================================================
#21 2.125 
#21 2.153 configure: creating ./config.status
#21 2.263 config.status: creating Makefile.config
#21 2.280 config.status: creating src/client/opamManifest.inc
#21 2.305 
#21 2.309 Opam will be built WITH a built-in solver
#21 2.309 
#21 2.309 Executables will be installed in /usr/local/bin
#21 2.309 Manual pages will be installed in /usr/local/share/man
#21 2.345 make -j -C src_ext lib-ext
#21 2.347 make[1]: Entering directory '/tmp/opam-build-2.0/src_ext'
#21 2.388 [ -e dune-local.tbz ] || \
#21 2.388 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.389 [ -e cppo.tbz ] || \
#21 2.389 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.395 [ -e extlib.tar.gz ] || \
#21 2.395 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.398 [ -e re.tbz ] || \
#21 2.398 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.402 [ -e cmdliner.tbz ] || \
#21 2.402 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.405 [ -e ocamlgraph.tar.gz ] || \
#21 2.405 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.410 [ -e cudf.tar.gz ] || \
#21 2.410 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.411 [ -e dose3.tar.gz ] || \
#21 2.411 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.417 [ -e opam-file-format.tar.gz ] || \
#21 2.417 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.421 [ -e result.tar.gz ] || \
#21 2.421 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.422 [ -e seq.tar.gz ] || \
#21 2.422 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.425 [ -e mccs.tar.gz ] || \
#21 2.425 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.618 ocamlgraph.tar.gz has the expected MD5.
#21 2.619 mkdir -p tmp-ocamlgraph
#21 2.621 cd tmp-ocamlgraph && gunzip -c ../ocamlgraph.tar.gz | tar xf -
#21 2.640 rm -rf ocamlgraph
#21 2.641 cmdliner.tbz has the expected MD5.
#21 2.642 mkdir -p tmp-cmdliner
#21 2.643 cd tmp-cmdliner && bunzip2 -c ../cmdliner.tbz | tar xf -
#21 2.648 patching file src/imperative.ml
#21 2.649 patching file src/persistent.ml
#21 2.661 rm -rf cmdliner
#21 2.722 extlib.tar.gz has the expected MD5.
#21 2.723 mkdir -p tmp-extlib
#21 2.725 cd tmp-extlib && gunzip -c ../extlib.tar.gz | tar xf -
#21 2.736 rm -rf extlib
#21 2.740 patching file src/extList.ml
#21 2.741 patching file src/extHashtbl.ml
#21 2.744 patching file src/configure.ml
#21 2.843 dose3.tar.gz has the expected MD5.
#21 2.844 mkdir -p tmp-dose3
#21 2.846 cd tmp-dose3 && gunzip -c ../dose3.tar.gz | tar xf -
#21 2.870 rm -rf dose3
#21 2.877 patching file common/criteria_lexer.mll
#21 2.877 patching file common/input.ml
#21 3.029 cppo.tbz has the expected MD5.
#21 3.030 mkdir -p tmp-cppo
#21 3.032 cd tmp-cppo && bunzip2 -c ../cppo.tbz | tar xf -
#21 3.044 rm -rf cppo
#21 3.050 patching file src/compat.ml
#21 3.051 patching file src/dune
#21 3.052 patching file Changes
#21 3.053 patching file src/cppo_main.ml
#21 3.062 result.tar.gz has the expected MD5.
#21 3.062 cudf.tar.gz has the expected MD5.
#21 3.063 mkdir -p tmp-result
#21 3.064 mkdir -p tmp-cudf
#21 3.065 cd tmp-result && gunzip -c ../result.tar.gz | tar xf -
#21 3.065 cd tmp-cudf && gunzip -c ../cudf.tar.gz | tar xf -
#21 3.070 rm -rf result
#21 3.074 seq.tar.gz has the expected MD5.
#21 3.075 mkdir -p tmp-seq
#21 3.077 cd tmp-seq && gunzip -c ../seq.tar.gz | tar xf -
#21 3.078 rm -rf cudf
#21 3.081 rm -rf seq
#21 3.082 re.tbz has the expected MD5.
#21 3.083 mkdir -p tmp-re
#21 3.084 cd tmp-re && bunzip2 -c ../re.tbz | tar xf -
#21 3.089 opam-file-format.tar.gz has the expected MD5.
#21 3.089 patching file .gitignore
#21 3.090 patching file Makefile
#21 3.090 patching file select_version.ml
#21 3.090 mkdir -p tmp-opam-file-format
#21 3.090 patching file seq.opam
#21 3.090 patching file src/seq.ml
#21 3.091 patching file src/seq.mli
#21 3.091 patching file src/seq_alias.ml
#21 3.091 patching file src/seq_alias.mli
#21 3.091 patching file src/seq_redef.ml
#21 3.091 patching file src/seq_redef.mli
#21 3.091 cd tmp-opam-file-format && gunzip -c ../opam-file-format.tar.gz | tar xf -
#21 3.099 rm -rf opam-file-format
#21 3.102 rm -f seq/src/seq.ml seq/src/seq.mli
#21 3.105 rm -rf re
#21 3.123 dune-local.tbz has the expected MD5.
#21 3.124 mkdir -p tmp-dune-local
#21 3.125 cd tmp-dune-local && bunzip2 -c ../dune-local.tbz | tar xf -
#21 3.264 rm -rf dune-local
#21 3.334 mccs.tar.gz has the expected MD5.
#21 3.335 mkdir -p tmp-mccs
#21 3.337 cd tmp-mccs && gunzip -c ../mccs.tar.gz | tar xf -
#21 3.374 rm -rf mccs
#21 3.388 rm dune-local.download
#21 3.388 make[1]: Leaving directory '/tmp/opam-build-2.0/src_ext'
#21 3.389 cd src_ext/dune-local && ocaml bootstrap.ml && ./boot.exe --release
#21 3.498 File "./bootstrap.ml", line 186, characters 29-41:
#21 3.498 186 |              let base, ext = String.break base i in
#21 3.498                                    ^^^^^^^^^^^^
#21 3.498 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 3.499 File "./bootstrap.ml", line 191, characters 28-40:
#21 3.499 191 |                  let a, b = String.break ext i in
#21 3.499                                   ^^^^^^^^^^^^
#21 3.499 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 3.513 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/meta_lexer.mll
#21 3.520 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/dune_lexer.mll
#21 3.525 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/dune_lang/dune_lexer.mll
#21 3.556 '/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 3.678 '/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 3.688 '/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 3.712 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/fiber/fiber.ml > boot-depends.txt
#21 3.727 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/ocaml-config/ocaml_config.ml > boot-depends.txt
#21 3.743 '/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 3.774 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/which_program/which_program.boot.ml > boot-depends.txt
#21 3.784 '/tmp/opam/bootstrap/ocaml/bin/ocamldep.opt' -modules src/xdg/xdg.ml > boot-depends.txt
#21 3.809 '/tmp/opam/bootstrap/ocaml/bin/ocamllex.opt' -q src/let-syntax/lexer.mll
#21 4.156 '/tmp/opam/bootstrap/ocaml/bin/ocamlc.opt' -g -w -40 -o boot.exe unix.cma threads.cma -I +threads boot.ml
#21 4.408 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 4.408 Alert deprecated: module Stdlib.Pervasives
#21 4.408 Use Stdlib instead.
#21 4.408 
#21 4.408 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 4.408 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 4.408 File "src/stdune/caml/result.mli", line 6, characters 7-17:
#21 4.408 Alert deprecated: module Stdlib.Pervasives
#21 4.408 Use Stdlib instead.
#21 4.408 
#21 4.408 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 4.408 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 4.413 File "src/stdune/list.ml", line 129, characters 23-38:
#21 4.413 Alert deprecated: module Stdlib.Pervasives
#21 4.413 Use Stdlib instead.
#21 4.413 
#21 4.413 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 4.413 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 4.510 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 4.510 Alert deprecated: Stdlib.Format.pp_open_tag
#21 4.510 Use Format.pp_open_stag.
#21 4.510 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 4.510 Alert deprecated: Stdlib.Format.pp_close_tag
#21 4.510 Use Format.pp_close_stag.
#21 4.510 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 4.510 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 4.510 Use Format.pp_get_formatter_stag_functions.
#21 4.510 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 4.510 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 4.510 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 4.559 File "src/stdune/io.ml", line 1, characters 11-21:
#21 4.559 Alert deprecated: module Stdlib.Pervasives
#21 4.559 Use Stdlib instead.
#21 4.559 
#21 4.559 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 4.559 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 4.632 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 4.632 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 4.632 Use Format.pp_get_formatter_stag_functions.
#21 4.632 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 4.632 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 4.632 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 4.800 File "src/colors.ml", line 105, characters 18-48:
#21 4.800 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 4.800 Use Format.pp_get_formatter_stag_functions.
#21 4.800 File "src/colors.ml", line 107, characters 6-36:
#21 4.800 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 4.800 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 5.388 File "src/super_context.ml", line 251, characters 7-11:
#21 5.388 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 7.705       ocamlc src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmi,cmti}
#21 7.705 File "src/stdune/caml/result.mli", line 6, characters 7-17:
#21 7.705 6 |   open Pervasives
#21 7.705            ^^^^^^^^^^
#21 7.705 Alert deprecated: module Stdlib.Pervasives
#21 7.705 Use Stdlib instead.
#21 7.705 
#21 7.705 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.705 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 7.732       ocamlc src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmo,cmt}
#21 7.732 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 7.732 4 |   open Pervasives
#21 7.732            ^^^^^^^^^^
#21 7.732 Alert deprecated: module Stdlib.Pervasives
#21 7.732 Use Stdlib instead.
#21 7.732 
#21 7.732 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.732 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 7.758     ocamlopt src/stdune/caml/.dune_caml.objs/dune_caml__Result.{cmx,o}
#21 7.758 File "src/stdune/caml/result.ml", line 4, characters 7-17:
#21 7.758 4 |   open Pervasives
#21 7.758            ^^^^^^^^^^
#21 7.758 Alert deprecated: module Stdlib.Pervasives
#21 7.758 Use Stdlib instead.
#21 7.758 
#21 7.758 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.758 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 7.907       ocamlc src/stdune/.stdune.objs/stdune__List.{cmo,cmt}
#21 7.907 File "src/stdune/list.ml", line 129, characters 23-38:
#21 7.907 129 | let physically_equal = Pervasives.(==)
#21 7.907                              ^^^^^^^^^^^^^^^
#21 7.907 Alert deprecated: module Stdlib.Pervasives
#21 7.907 Use Stdlib instead.
#21 7.907 
#21 7.907 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 7.907 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 8.001     ocamlopt src/stdune/.stdune.objs/stdune__List.{cmx,o}
#21 8.001 File "src/stdune/list.ml", line 129, characters 23-38:
#21 8.001 129 | let physically_equal = Pervasives.(==)
#21 8.001                              ^^^^^^^^^^^^^^^
#21 8.001 Alert deprecated: module Stdlib.Pervasives
#21 8.001 Use Stdlib instead.
#21 8.001 
#21 8.001 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 8.001 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 9.169       ocamlc src/stdune/.stdune.objs/stdune__Pp.{cmo,cmt}
#21 9.169 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 9.169 114 |         pp_open_tag ppf (embed_tag ~opening ~closing);
#21 9.169               ^^^^^^^^^^^
#21 9.169 Alert deprecated: Stdlib.Format.pp_open_tag
#21 9.169 Use Format.pp_open_stag.
#21 9.169 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 9.169 116 |         pp_close_tag ppf ()
#21 9.169               ^^^^^^^^^^^^
#21 9.169 Alert deprecated: Stdlib.Format.pp_close_tag
#21 9.169 Use Format.pp_close_stag.
#21 9.169 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 9.169 119 |       let funcs = pp_get_formatter_tag_functions ppf () in
#21 9.169                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 9.169 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 9.169 Use Format.pp_get_formatter_stag_functions.
#21 9.169 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 9.169 121 |       pp_set_formatter_tag_functions ppf
#21 9.169             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 9.169 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 9.169 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 9.295       ocamlc src/stdune/.stdune.objs/stdune__Io.{cmo,cmt}
#21 9.295 File "src/stdune/io.ml", line 1, characters 11-21:
#21 9.295 1 | module P = Pervasives
#21 9.295                ^^^^^^^^^^
#21 9.295 Alert deprecated: module Stdlib.Pervasives
#21 9.295 Use Stdlib instead.
#21 9.295 
#21 9.295 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 9.295 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 9.324     ocamlopt src/stdune/.stdune.objs/stdune__Pp.{cmx,o}
#21 9.324 File "src/stdune/pp.ml", line 114, characters 8-19:
#21 9.324 114 |         pp_open_tag ppf (embed_tag ~opening ~closing);
#21 9.324               ^^^^^^^^^^^
#21 9.324 Alert deprecated: Stdlib.Format.pp_open_tag
#21 9.324 Use Format.pp_open_stag.
#21 9.324 File "src/stdune/pp.ml", line 116, characters 8-20:
#21 9.324 116 |         pp_close_tag ppf ()
#21 9.324               ^^^^^^^^^^^^
#21 9.324 Alert deprecated: Stdlib.Format.pp_close_tag
#21 9.324 Use Format.pp_close_stag.
#21 9.324 File "src/stdune/pp.ml", line 119, characters 18-48:
#21 9.324 119 |       let funcs = pp_get_formatter_tag_functions ppf () in
#21 9.324                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 9.324 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 9.324 Use Format.pp_get_formatter_stag_functions.
#21 9.324 File "src/stdune/pp.ml", line 121, characters 6-36:
#21 9.324 121 |       pp_set_formatter_tag_functions ppf
#21 9.324             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 9.324 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 9.324 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 9.515       ocamlc src/dune_lang/.dune_lang.objs/dune_lang.{cmo,cmt}
#21 9.515 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 9.515 107 |   let tfuncs = Format.pp_get_formatter_tag_functions ppf () in
#21 9.515                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 9.515 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 9.515 Use Format.pp_get_formatter_stag_functions.
#21 9.515 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 9.515 108 |   Format.pp_set_formatter_tag_functions ppf
#21 9.515         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 9.515 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 9.515 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 9.561     ocamlopt src/stdune/.stdune.objs/stdune__Io.{cmx,o}
#21 9.561 File "src/stdune/io.ml", line 1, characters 11-21:
#21 9.561 1 | module P = Pervasives
#21 9.561                ^^^^^^^^^^
#21 9.561 Alert deprecated: module Stdlib.Pervasives
#21 9.561 Use Stdlib instead.
#21 9.561 
#21 9.561 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 9.561 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 10.14     ocamlopt src/dune_lang/.dune_lang.objs/dune_lang.{cmx,o}
#21 10.14 File "src/dune_lang/dune_lang.ml", line 107, characters 15-52:
#21 10.14 107 |   let tfuncs = Format.pp_get_formatter_tag_functions ppf () in
#21 10.14                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 10.14 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 10.14 Use Format.pp_get_formatter_stag_functions.
#21 10.14 File "src/dune_lang/dune_lang.ml", line 108, characters 2-39:
#21 10.14 108 |   Format.pp_set_formatter_tag_functions ppf
#21 10.14         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 10.14 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 10.14 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 10.32     ocamlopt src/.dune.objs/dune__Colors.{cmx,o}
#21 10.32 File "src/colors.ml", line 105, characters 18-48:
#21 10.32 Alert deprecated: Stdlib.Format.pp_get_formatter_tag_functions
#21 10.32 Use Format.pp_get_formatter_stag_functions.
#21 10.32 File "src/colors.ml", line 107, characters 6-36:
#21 10.32 Alert deprecated: Stdlib.Format.pp_set_formatter_tag_functions
#21 10.32 This function will erase non-string tag formatting functions. Use Format.pp_set_formatter_stag_functions.
#21 12.31     ocamlopt src/.dune.objs/dune__Super_context.{cmx,o}
#21 12.31 File "src/super_context.ml", line 251, characters 7-11:
#21 12.31 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 14.83 src_ext/dune-local/_build_bootstrap/install/default/bin/dune build --profile=release  opam-installer.install opam.install
#21 15.82        ocaml src_ext/extlib/src/compat-level
#21 15.82 sh: 1: ocamlfind: not found
#21 16.49       ocamlc src_ext/ocamlgraph/src/.graph.objs/graph__Dot_lexer.{cmi,cmo,cmt}
#21 16.49 File "src/dot_lexer.mll", line 38, characters 21-37:
#21 16.49 Alert deprecated: Stdlib.String.lowercase
#21 16.49 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 16.56     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Dot_lexer.{cmx,o}
#21 16.56 File "src/dot_lexer.mll", line 38, characters 21-37:
#21 16.56 Alert deprecated: Stdlib.String.lowercase
#21 16.56 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 16.56     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Graphviz.{cmx,o}
#21 16.56 File "src_ext/ocamlgraph/src/graphviz.ml", line 27, characters 5-15:
#21 16.56 27 | open Pervasives (* for compatibility with ocaml 3.12.0+dev17
#21 16.56           ^^^^^^^^^^
#21 16.56 Alert deprecated: module Stdlib.Pervasives
#21 16.56 Use Stdlib instead.
#21 16.56 
#21 16.56 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 16.56 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 16.62     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_base.{cmx,o}
#21 16.62 File "src_ext/cmdliner/src/cmdliner_base.ml", line 14, characters 16-32:
#21 16.62 14 | let lowercase = String.lowercase
#21 16.62                      ^^^^^^^^^^^^^^^^
#21 16.62 Alert deprecated: Stdlib.String.lowercase
#21 16.62 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 16.62 File "src_ext/cmdliner/src/cmdliner_base.ml", line 15, characters 16-32:
#21 16.62 15 | let uppercase = String.lowercase
#21 16.62                      ^^^^^^^^^^^^^^^^
#21 16.62 Alert deprecated: Stdlib.String.lowercase
#21 16.62 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 16.62 File "src_ext/cmdliner/src/cmdliner_base.ml", line 16, characters 17-34:
#21 16.62 16 | let capitalize = String.capitalize
#21 16.62                       ^^^^^^^^^^^^^^^^^
#21 16.62 Alert deprecated: Stdlib.String.capitalize
#21 16.62 Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
#21 16.62 File "src_ext/cmdliner/src/cmdliner_base.ml", line 158, characters 14-27:
#21 16.62 158 |       `Error (err_ambiguous "enum value" s ambs)
#21 16.62                     ^^^^^^^^^^^^^
#21 16.62 Warning 6 [labels-omitted]: labels kind, ambs were omitted in the application of this function.
#21 16.63     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Dot.{cmx,o}
#21 16.63 File "src_ext/ocamlgraph/src/dot.ml", line 61, characters 40-58:
#21 16.63 61 |           let compare : t -> t -> int = Pervasives.compare
#21 16.63                                              ^^^^^^^^^^^^^^^^^^
#21 16.63 Alert deprecated: module Stdlib.Pervasives
#21 16.63 Use Stdlib instead.
#21 16.63 
#21 16.63 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 16.63 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 16.79       ocamlc src/core/.opam_core.objs/opamStubsTypes.{cmi,cmo,cmt}
#21 16.79 File "src/core/opamStubsTypes.ml", line 1:
#21 16.79 Warning 70 [missing-mli]: Cannot find interface file.
#21 16.93     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_docgen.{cmx,o}
#21 16.93 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 278, characters 23-39:
#21 16.93 278 |   if Cmdliner_manpage.(smap_has_section sm s_name) then sm else
#21 16.93                              ^^^^^^^^^^^^^^^^
#21 16.93 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 16.93 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 293, characters 22-56:
#21 16.93 293 |   let ins sm (s, b) = Cmdliner_manpage.smap_append_block sm s b in
#21 16.93                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 16.93 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 16.93 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 294, characters 35-51:
#21 16.93 294 |   let has_senv = Cmdliner_manpage.(smap_has_section sm s_environment) in
#21 16.93                                          ^^^^^^^^^^^^^^^^
#21 16.93 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 16.93 File "src_ext/cmdliner/src/cmdliner_docgen.ml", line 295, characters 36-52:
#21 16.93 295 |   let has_sexit = Cmdliner_manpage.(smap_has_section sm s_exit_status) in
#21 16.93                                           ^^^^^^^^^^^^^^^^
#21 16.93 Warning 6 [labels-omitted]: label sec was omitted in the application of this function.
#21 17.04     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_cline.{cmx,o}
#21 17.04 File "src_ext/cmdliner/src/cmdliner_cline.ml", line 118, characters 20-47:
#21 17.04 118 |           let err = Cmdliner_base.err_ambiguous "option" name ambs in
#21 17.04                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 17.04 Warning 6 [labels-omitted]: labels kind, ambs were omitted in the application of this function.
#21 17.17     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner_arg.{cmx,o}
#21 17.17 File "src_ext/cmdliner/src/cmdliner_arg.ml", line 166, characters 24-50:
#21 17.17 166 | | `Error e -> failwith (Cmdliner_msg.err_opt_parse f e)
#21 17.17                               ^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 17.17 Warning 6 [labels-omitted]: label err was omitted in the application of this function.
#21 17.17 File "src_ext/cmdliner/src/cmdliner_arg.ml", line 216, characters 24-50:
#21 17.17 216 | | `Error e -> failwith (Cmdliner_msg.err_pos_parse a e)
#21 17.17                               ^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 17.17 Warning 6 [labels-omitted]: label err was omitted in the application of this function.
#21 17.17 File "src_ext/cmdliner/src/cmdliner_arg.ml", line 233, characters 10-36:
#21 17.17 233 |   let a = Cmdliner_info.arg_make_pos pos a in
#21 17.17                 ^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 17.17 Warning 6 [labels-omitted]: label pos was omitted in the application of this function.
#21 17.19          gcc src_ext/mccs/src/lp_solver.o
#21 17.19 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#21 17.19 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 17.19   144 |       sprintf(command, "cat %s >> %s && %s %s | tee %s",
#21 17.19       |                                                     ^~
#21 17.19 In file included from /usr/include/stdio.h:894,
#21 17.19                  from ./cudf.h:21,
#21 17.19                  from ./abstract_solver.h:14,
#21 17.19                  from ./lp_solver.h:13,
#21 17.19                  from lp_solver.cpp:8:
#21 17.19 /usr/include/aarch64-linux-gnu/bits/stdio2.h:38:34: note: '__builtin___sprintf_chk' output 21 or more bytes (assuming 1041) into a destination of size 1024
#21 17.19    38 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#21 17.19       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 17.19    39 |                                   __glibc_objsize (__s), __fmt,
#21 17.19       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 17.19    40 |                                   __va_arg_pack ());
#21 17.19       |                                   ~~~~~~~~~~~~~~~~~
#21 17.19 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 17.19   140 |       sprintf(command, "cat %s >> %s; %s %s > %s 2> /dev/null",
#21 17.19       |                                               ^~
#21 17.19 In file included from /usr/include/stdio.h:894,
#21 17.19                  from ./cudf.h:21,
#21 17.19                  from ./abstract_solver.h:14,
#21 17.19                  from ./lp_solver.h:13,
#21 17.19                  from lp_solver.cpp:8:
#21 17.19 /usr/include/aarch64-linux-gnu/bits/stdio2.h:38:34: note: '__builtin___sprintf_chk' output 28 or more bytes (assuming 1048) into a destination of size 1024
#21 17.19    38 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#21 17.19       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 17.19    39 |                                   __glibc_objsize (__s), __fmt,
#21 17.19       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#21 17.19    40 |                                   __va_arg_pack ());
#21 17.19       |                                   ~~~~~~~~~~~~~~~~~
#21 17.36     ocamlopt src_ext/cmdliner/src/.cmdliner.objs/cmdliner.{cmx,o}
#21 17.36 File "src_ext/cmdliner/src/cmdliner.ml", line 184, characters 25-47:
#21 17.36 184 |       | `Std_help fmt -> Cmdliner_docgen.pp_man err_ppf fmt help_ppf ei; `Help
#21 17.36                                ^^^^^^^^^^^^^^^^^^^^^^
#21 17.36 Warning 6 [labels-omitted]: label errs was omitted in the application of this function.
#21 17.36 File "src_ext/cmdliner/src/cmdliner.ml", line 274, characters 25-40:
#21 17.36 274 |   let exit ?term_err r = Pervasives.exit (exit_status_of_result ?term_err r)
#21 17.36                                ^^^^^^^^^^^^^^^
#21 17.36 Alert deprecated: module Stdlib.Pervasives
#21 17.36 Use Stdlib instead.
#21 17.36 
#21 17.36 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.36 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.36 File "src_ext/cmdliner/src/cmdliner.ml", line 276, characters 4-19:
#21 17.36 276 |     Pervasives.exit (exit_status_of_status_result ?term_err r)
#21 17.36           ^^^^^^^^^^^^^^^
#21 17.36 Alert deprecated: module Stdlib.Pervasives
#21 17.36 Use Stdlib instead.
#21 17.36 
#21 17.36 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.36 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.50     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Persistent.{cmx,o}
#21 17.50 File "src_ext/ocamlgraph/src/persistent.ml", line 51, characters 20-38:
#21 17.50 51 |   let compare x y = Pervasives.compare x.tag y.tag
#21 17.50                          ^^^^^^^^^^^^^^^^^^
#21 17.50 Alert deprecated: module Stdlib.Pervasives
#21 17.50 Use Stdlib instead.
#21 17.50 
#21 17.50 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.50 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.50 File "src_ext/ocamlgraph/src/persistent.ml", line 144, characters 17-32:
#21 17.50 144 |           size = Pervasives.succ g.size }
#21 17.50                        ^^^^^^^^^^^^^^^
#21 17.50 Alert deprecated: module Stdlib.Pervasives
#21 17.50 Use Stdlib instead.
#21 17.50 
#21 17.50 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.50 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.50 File "src_ext/ocamlgraph/src/persistent.ml", line 157, characters 28-43:
#21 17.50 157 |         { edges = e; size = Pervasives.pred g.size }
#21 17.50                                   ^^^^^^^^^^^^^^^
#21 17.50 Alert deprecated: module Stdlib.Pervasives
#21 17.50 Use Stdlib instead.
#21 17.50 
#21 17.50 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.50 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.50 File "src_ext/ocamlgraph/src/persistent.ml", line 177, characters 17-32:
#21 17.50 177 |           size = Pervasives.succ g.size }
#21 17.50                        ^^^^^^^^^^^^^^^
#21 17.50 Alert deprecated: module Stdlib.Pervasives
#21 17.50 Use Stdlib instead.
#21 17.50 
#21 17.50 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.50 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.50 File "src_ext/ocamlgraph/src/persistent.ml", line 196, characters 17-32:
#21 17.50 196 |           size = Pervasives.pred g.size }
#21 17.50                        ^^^^^^^^^^^^^^^
#21 17.50 Alert deprecated: module Stdlib.Pervasives
#21 17.50 Use Stdlib instead.
#21 17.50 
#21 17.50 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.50 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.54     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Imperative.{cmx,o}
#21 17.54 File "src_ext/ocamlgraph/src/imperative.ml", line 68, characters 20-38:
#21 17.54 68 |   let compare x y = Pervasives.compare x.tag y.tag
#21 17.54                          ^^^^^^^^^^^^^^^^^^
#21 17.54 Alert deprecated: module Stdlib.Pervasives
#21 17.54 Use Stdlib instead.
#21 17.54 
#21 17.54 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.54 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.54 File "src_ext/ocamlgraph/src/imperative.ml", line 156, characters 18-33:
#21 17.54 156 |         g.size <- Pervasives.succ g.size;
#21 17.54                         ^^^^^^^^^^^^^^^
#21 17.54 Alert deprecated: module Stdlib.Pervasives
#21 17.54 Use Stdlib instead.
#21 17.54 
#21 17.54 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.54 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.54 File "src_ext/ocamlgraph/src/imperative.ml", line 172, characters 18-33:
#21 17.54 172 |         g.size <- Pervasives.pred g.size
#21 17.54                         ^^^^^^^^^^^^^^^
#21 17.54 Alert deprecated: module Stdlib.Pervasives
#21 17.54 Use Stdlib instead.
#21 17.54 
#21 17.54 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.54 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.54 File "src_ext/ocamlgraph/src/imperative.ml", line 193, characters 18-33:
#21 17.54 193 |         g.size <- Pervasives.succ g.size;
#21 17.54                         ^^^^^^^^^^^^^^^
#21 17.54 Alert deprecated: module Stdlib.Pervasives
#21 17.54 Use Stdlib instead.
#21 17.54 
#21 17.54 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.54 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.54 File "src_ext/ocamlgraph/src/imperative.ml", line 214, characters 18-33:
#21 17.54 214 |         g.size <- Pervasives.pred g.size
#21 17.54                         ^^^^^^^^^^^^^^^
#21 17.54 Alert deprecated: module Stdlib.Pervasives
#21 17.54 Use Stdlib instead.
#21 17.54 
#21 17.54 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.54 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.54 File "src_ext/ocamlgraph/src/imperative.ml", line 362, characters 36-54:
#21 17.54 362 |       let compare : t -> t -> int = Pervasives.compare
#21 17.54                                           ^^^^^^^^^^^^^^^^^^
#21 17.54 Alert deprecated: module Stdlib.Pervasives
#21 17.54 Use Stdlib instead.
#21 17.54 
#21 17.54 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.54 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.54 File "src_ext/ocamlgraph/src/imperative.ml", line 372, characters 36-54:
#21 17.54 372 |       let compare : t -> t -> int = Pervasives.compare
#21 17.54                                           ^^^^^^^^^^^^^^^^^^
#21 17.54 Alert deprecated: module Stdlib.Pervasives
#21 17.54 Use Stdlib instead.
#21 17.54 
#21 17.54 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.54 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.59     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Cliquetree.{cmx,o}
#21 17.59 File "src_ext/ocamlgraph/src/cliquetree.ml", line 106, characters 38-56:
#21 17.59 106 |         let compare : t -> t -> int = Pervasives.compare
#21 17.59                                             ^^^^^^^^^^^^^^^^^^
#21 17.59 Alert deprecated: module Stdlib.Pervasives
#21 17.59 Use Stdlib instead.
#21 17.59 
#21 17.59 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.59 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.59 File "src_ext/ocamlgraph/src/cliquetree.ml", line 114, characters 40-58:
#21 17.59 114 |     let compare (x, _ : t) (y, _ : t) = Pervasives.compare x y
#21 17.59                                               ^^^^^^^^^^^^^^^^^^
#21 17.59 Alert deprecated: module Stdlib.Pervasives
#21 17.59 Use Stdlib instead.
#21 17.59 
#21 17.59 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.59 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.67     ocamlopt src_ext/extlib/src/.extlib.objs/extString.{cmx,o}
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: set
#21 17.67 Use Bytes.set/BytesLabels.set instead.
#21 17.67 File "string.mli", lines 412-413, characters 0-63:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 179, characters 2-42:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: create
#21 17.67 Use Bytes.create/BytesLabels.create instead.
#21 17.67 File "string.mli", lines 403-404, characters 0-69:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 180, characters 2-29:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: copy
#21 17.67 Strings now immutable: no need to copy
#21 17.67 File "string.mli", lines 432-433, characters 0-63:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 182, characters 2-29:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: fill
#21 17.67 Use Bytes.fill/BytesLabels.fill instead.
#21 17.67 File "string.mli", lines 439-440, characters 0-65:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 184, characters 2-50:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: uppercase
#21 17.67 Use String.uppercase_ascii/StringLabels.uppercase_ascii instead.
#21 17.67 File "string.mli", lines 449-451, characters 0-71:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 200, characters 2-34:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: lowercase
#21 17.67 Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
#21 17.67 File "string.mli", lines 458-460, characters 0-71:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 201, characters 2-34:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: capitalize
#21 17.67 Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
#21 17.67 File "string.mli", lines 467-469, characters 0-73:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 202, characters 2-35:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: uncapitalize
#21 17.67 Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
#21 17.67 File "string.mli", lines 475-477, characters 0-77:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 203, characters 2-37:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: unsafe_set
#21 17.67 File "string.mli", lines 608-609, characters 0-22:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 219, characters 2-49:
#21 17.67   Expected signature
#21 17.67 File "src_ext/extlib/src/extString.pp.ml", line 1:
#21 17.67 Alert deprecated: unsafe_fill
#21 17.67 File "string.mli", lines 613-615, characters 0-22:
#21 17.67   Definition
#21 17.67 File "src_ext/extlib/src/extString.mli", line 221, characters 2-57:
#21 17.67   Expected signature
#21 17.70     ocamlopt src_ext/extlib/src/.extlib.objs/extList.{cmx,o}
#21 17.70 File "src_ext/extlib/src/extList.ml", line 383, characters 15-33:
#21 17.70 Alert deprecated: module Stdlib.Pervasives
#21 17.70 Use Stdlib instead.
#21 17.70 
#21 17.70 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.70 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.71     ocamlopt src_ext/ocamlgraph/src/.graph.objs/graph__Pack.{cmx,o}
#21 17.71 File "src_ext/ocamlgraph/src/pack.ml", line 52, characters 34-52:
#21 17.71 52 |     let compare : t -> t -> int = Pervasives.compare
#21 17.71                                        ^^^^^^^^^^^^^^^^^^
#21 17.71 Alert deprecated: module Stdlib.Pervasives
#21 17.71 Use Stdlib instead.
#21 17.71 
#21 17.71 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.71 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.71 File "src_ext/ocamlgraph/src/pack.ml", line 69, characters 34-52:
#21 17.71 69 |     let compare : t -> t -> int = Pervasives.compare
#21 17.71                                        ^^^^^^^^^^^^^^^^^^
#21 17.71 Alert deprecated: module Stdlib.Pervasives
#21 17.71 Use Stdlib instead.
#21 17.71 
#21 17.71 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.71 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.71 File "src_ext/ocamlgraph/src/pack.ml", line 97, characters 34-52:
#21 17.71 97 |     let compare : t -> t -> int = Pervasives.compare
#21 17.71                                        ^^^^^^^^^^^^^^^^^^
#21 17.71 Alert deprecated: module Stdlib.Pervasives
#21 17.71 Use Stdlib instead.
#21 17.71 
#21 17.71 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.71 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.71 File "src_ext/ocamlgraph/src/pack.ml", line 200, characters 32-50:
#21 17.71 200 |   let compare : t -> t -> int = Pervasives.compare
#21 17.71                                       ^^^^^^^^^^^^^^^^^^
#21 17.71 Alert deprecated: module Stdlib.Pervasives
#21 17.71 Use Stdlib instead.
#21 17.71 
#21 17.71 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.71 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.72     ocamlopt src_ext/extlib/src/.extlib.objs/extArray.{cmx,o}
#21 17.72 File "src_ext/extlib/src/extArray.pp.ml", line 1:
#21 17.72 Alert deprecated: make_float
#21 17.72 Use Array.create_float/ArrayLabels.create_float instead.
#21 17.72 File "array.mli", lines 75-77, characters 0-63:
#21 17.72   Definition
#21 17.72 File "src_ext/extlib/src/extArray.mli", line 121, characters 2-37:
#21 17.72   Expected signature
#21 17.72 File "src_ext/extlib/src/extArray.pp.ml", line 1:
#21 17.72 Alert deprecated: create
#21 17.72 Use Array.make/ArrayLabels.make instead.
#21 17.72 File "array.mli", lines 66-67, characters 0-65:
#21 17.72   Definition
#21 17.72 File "src_ext/extlib/src/extArray.mli", line 145, characters 2-60:
#21 17.72   Expected signature
#21 17.72 File "src_ext/extlib/src/extArray.pp.ml", line 1:
#21 17.72 Alert deprecated: create_matrix
#21 17.72 Use Array.make_matrix/ArrayLabels.make_matrix instead.
#21 17.72 File "array.mli", lines 103-105, characters 0-61:
#21 17.72   Definition
#21 17.72 File "src_ext/extlib/src/extArray.mli", line 148, characters 2-56:
#21 17.72   Expected signature
#21 17.83     ocamlopt src_ext/extlib/src/.extlib.objs/IO.{cmx,o}
#21 17.83 File "src_ext/extlib/src/IO.ml", line 313, characters 14-30:
#21 17.83 Alert deprecated: module Stdlib.Pervasives
#21 17.83 Use Stdlib instead.
#21 17.83 
#21 17.83 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.83 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.83 File "src_ext/extlib/src/IO.ml", line 317, characters 26-45:
#21 17.83 Alert deprecated: module Stdlib.Pervasives
#21 17.83 Use Stdlib instead.
#21 17.83 
#21 17.83 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.83 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.83 File "src_ext/extlib/src/IO.ml", line 323, characters 31-48:
#21 17.83 Alert deprecated: module Stdlib.Pervasives
#21 17.83 Use Stdlib instead.
#21 17.83 
#21 17.83 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.83 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.83 File "src_ext/extlib/src/IO.ml", line 324, characters 27-47:
#21 17.83 Alert deprecated: module Stdlib.Pervasives
#21 17.83 Use Stdlib instead.
#21 17.83 
#21 17.83 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.83 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.83 File "src_ext/extlib/src/IO.ml", line 325, characters 27-43:
#21 17.83 Alert deprecated: module Stdlib.Pervasives
#21 17.83 Use Stdlib instead.
#21 17.83 
#21 17.83 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 17.83 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 17.83 File "src_ext/extlib/src/IO.ml", line 792, characters 22-32:
#21 17.83 Warning 6 [labels-omitted]: label nbits was omitted in the application of this function.
#21 18.01       ocamlc src_ext/dose3/algo/.algo.objs/algo__Defaultgraphs.{cmi,cmo,cmt}
#21 18.01 File "src_ext/dose3/algo/defaultgraphs.ml", line 95, characters 15-33:
#21 18.01 Alert deprecated: module Stdlib.Pervasives
#21 18.01 Use Stdlib instead.
#21 18.01 
#21 18.01 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.01 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.01 File "src_ext/dose3/algo/defaultgraphs.ml", line 118, characters 22-40:
#21 18.01 Alert deprecated: module Stdlib.Pervasives
#21 18.01 Use Stdlib instead.
#21 18.01 
#21 18.01 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.01 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.01 File "src_ext/dose3/algo/defaultgraphs.ml", line 321, characters 14-32:
#21 18.01 Alert deprecated: module Stdlib.Pervasives
#21 18.01 Use Stdlib instead.
#21 18.01 
#21 18.01 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.01 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.01 File "src_ext/dose3/algo/defaultgraphs.ml", line 723, characters 18-36:
#21 18.01 Alert deprecated: module Stdlib.Pervasives
#21 18.01 Use Stdlib instead.
#21 18.01 
#21 18.01 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.01 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.07       ocamlc src_ext/dose3/algo/.algo.objs/algo__Strongconflicts_int.{cmi,cmo,cmt}
#21 18.07 File "src_ext/dose3/algo/strongconflicts_int.ml", line 29, characters 16-34:
#21 18.07 Alert deprecated: module Stdlib.Pervasives
#21 18.07 Use Stdlib instead.
#21 18.07 
#21 18.07 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.07 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.07 File "src_ext/dose3/algo/strongconflicts_int.ml", line 46, characters 55-73:
#21 18.07 Alert deprecated: module Stdlib.Pervasives
#21 18.07 Use Stdlib instead.
#21 18.07 
#21 18.07 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.07 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.10       ocamlc src/tools/.opam_installer.eobjs/opam_installer.{cmi,cmo,cmt}
#21 18.10 File "src/tools/opam_installer.ml", line 1:
#21 18.10 Warning 70 [missing-mli]: Cannot find interface file.
#21 18.10     ocamlopt src/core/.opam_core.objs/opamStd.{cmx,o}
#21 18.10 File "src/core/opamStd.ml", line 431, characters 32-46:
#21 18.10 431 |       let subs = Array.to_list (Re.get_all_ofs subs) in
#21 18.10                                       ^^^^^^^^^^^^^^
#21 18.10 Alert deprecated: Re.get_all_ofs
#21 18.10 Use Group.all_offset
#21 18.11       ocamlc src_ext/dose3/algo/.algo.objs/algo__Strongconflicts.{cmi,cmo,cmt}
#21 18.11 File "src_ext/dose3/algo/strongconflicts.ml", line 27, characters 16-34:
#21 18.11 Alert deprecated: module Stdlib.Pervasives
#21 18.11 Use Stdlib instead.
#21 18.11 
#21 18.11 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.11 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.16     ocamlopt src_ext/cudf/.cudf.objs/cudf_types_pp.{cmx,o}
#21 18.16 File "src_ext/cudf/cudf_types_pp.ml", line 92, characters 27-37:
#21 18.16 92 |     | `Enum l -> `Enum (l, parse_enum l s)
#21 18.16                                 ^^^^^^^^^^
#21 18.16 Warning 6 [labels-omitted]: label enums was omitted in the application of this function.
#21 18.16 File "src_ext/cudf/cudf_types_pp.ml", line 104, characters 20-44:
#21 18.16 104 | let string_of_int = Pervasives.string_of_int
#21 18.16                           ^^^^^^^^^^^^^^^^^^^^^^^^
#21 18.16 Alert deprecated: module Stdlib.Pervasives
#21 18.16 Use Stdlib instead.
#21 18.16 
#21 18.16 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.16 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.16 File "src_ext/cudf/cudf_types_pp.ml", line 107, characters 21-46:
#21 18.16 107 | let string_of_bool = Pervasives.string_of_bool
#21 18.16                            ^^^^^^^^^^^^^^^^^^^^^^^^^
#21 18.16 Alert deprecated: module Stdlib.Pervasives
#21 18.16 Use Stdlib instead.
#21 18.16 
#21 18.16 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.16 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.16       ocamlc src/solver/.opam_solver.objs/opamCudfSolverSig.{cmi,cmo,cmt}
#21 18.16 File "src/solver/opamCudfSolverSig.ml", line 1:
#21 18.16 Warning 70 [missing-mli]: Cannot find interface file.
#21 18.25     ocamlopt src_ext/cudf/.cudf.objs/cudf.{cmx,o}
#21 18.25 File "src_ext/cudf/cudf.ml", line 76, characters 2-20:
#21 18.25 76 |   Pervasives.compare (pkg1.package, pkg1.version) (pkg2.package, pkg2.version)
#21 18.25        ^^^^^^^^^^^^^^^^^^
#21 18.25 Alert deprecated: module Stdlib.Pervasives
#21 18.25 Use Stdlib instead.
#21 18.25 
#21 18.25 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.25 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.25 File "src_ext/cudf/cudf.ml", line 79, characters 2-20:
#21 18.25 79 |   Pervasives.compare (pkg2.package, pkg2.version) (pkg1.package, pkg1.version)
#21 18.25        ^^^^^^^^^^^^^^^^^^
#21 18.25 Alert deprecated: module Stdlib.Pervasives
#21 18.25 Use Stdlib instead.
#21 18.25 
#21 18.25 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.25 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.39     ocamlopt src/core/.opam_core.objs/opamProcess.{cmx,o}
#21 18.39 File "src/core/opamProcess.ml", line 382, characters 9-24:
#21 18.39 382 |     (let open OpamCompat in
#21 18.39                ^^^^^^^^^^^^^^^
#21 18.39 Warning 33 [unused-open]: unused open OpamCompat.
#21 18.46     ocamlopt src_ext/dose3/common/.common.objs/common__Util.{cmx,o}
#21 18.46 File "src_ext/dose3/common/util.ml", line 90, characters 6-23:
#21 18.46 Alert deprecated: Stdlib.String.capitalize
#21 18.46 Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
#21 18.46 File "src_ext/dose3/common/util.ml", line 96, characters 6-21:
#21 18.46 Alert deprecated: module Stdlib.Pervasives
#21 18.46 Use Stdlib instead.
#21 18.46 
#21 18.46 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.46 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.46 File "src_ext/dose3/common/util.ml", line 103, characters 6-21:
#21 18.46 Alert deprecated: module Stdlib.Pervasives
#21 18.46 Use Stdlib instead.
#21 18.46 
#21 18.46 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.46 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.46 File "src_ext/dose3/common/util.ml", line 163, characters 6-21:
#21 18.46 Alert deprecated: module Stdlib.Pervasives
#21 18.46 Use Stdlib instead.
#21 18.46 
#21 18.46 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.46 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.75     ocamlopt src/core/.opam_core.objs/opamFilename.{cmx,o}
#21 18.75 File "src/core/opamFilename.ml", line 349, characters 11-25:
#21 18.75 349 | let link ?(relative=false) ~target ~link =
#21 18.75                  ^^^^^^^^^^^^^^
#21 18.75 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 18.84     ocamlopt src/core/.opam_core.objs/opamUrl.{cmx,o}
#21 18.84 File "src/core/opamUrl.ml", line 56, characters 10-20:
#21 18.84 56 |     match Re.get_all (Re.exec re u) with
#21 18.84                ^^^^^^^^^^
#21 18.84 Alert deprecated: Re.get_all
#21 18.84 Use Group.all
#21 18.84 File "src/core/opamUrl.ml", line 109, characters 12-18:
#21 18.84 109 |       Some (Re.get sub 1 ^ try "/" ^ Re.get sub 2 with Not_found -> "")
#21 18.84                   ^^^^^^
#21 18.84 Alert deprecated: Re.get
#21 18.84 Use Group.get
#21 18.84 File "src/core/opamUrl.ml", line 109, characters 37-43:
#21 18.84 109 |       Some (Re.get sub 1 ^ try "/" ^ Re.get sub 2 with Not_found -> "")
#21 18.84                                            ^^^^^^
#21 18.84 Alert deprecated: Re.get
#21 18.84 Use Group.get
#21 18.84 File "src/core/opamUrl.ml", line 219, characters 6-12:
#21 18.84 219 |       Re.get (Re.exec re t.path) 1
#21 18.84             ^^^^^^
#21 18.84 Alert deprecated: Re.get
#21 18.84 Use Group.get
#21 18.96     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Defaultgraphs.{cmx,o}
#21 18.96 File "src_ext/dose3/algo/defaultgraphs.ml", line 95, characters 15-33:
#21 18.96 Alert deprecated: module Stdlib.Pervasives
#21 18.96 Use Stdlib instead.
#21 18.96 
#21 18.96 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.96 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.96 File "src_ext/dose3/algo/defaultgraphs.ml", line 118, characters 22-40:
#21 18.96 Alert deprecated: module Stdlib.Pervasives
#21 18.96 Use Stdlib instead.
#21 18.96 
#21 18.96 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.96 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.96 File "src_ext/dose3/algo/defaultgraphs.ml", line 321, characters 14-32:
#21 18.96 Alert deprecated: module Stdlib.Pervasives
#21 18.96 Use Stdlib instead.
#21 18.96 
#21 18.96 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.96 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 18.96 File "src_ext/dose3/algo/defaultgraphs.ml", line 723, characters 18-36:
#21 18.96 Alert deprecated: module Stdlib.Pervasives
#21 18.96 Use Stdlib instead.
#21 18.96 
#21 18.96 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 18.96 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.07     ocamlopt src/format/.opam_format.objs/opamFormula.{cmx,o}
#21 19.07 File "src/format/opamFormula.ml", line 31, characters 7-24:
#21 19.07 31 |       (OpamPrinter.relop r)
#21 19.07             ^^^^^^^^^^^^^^^^^
#21 19.07 Alert deprecated: OpamPrinter.relop
#21 19.07 Use OpamPrinter.FullPos.relop instead.
#21 19.07 File "src/format/opamFormula.ml", line 43, characters 7-24:
#21 19.07 43 |       (OpamPrinter.relop r)
#21 19.07             ^^^^^^^^^^^^^^^^^
#21 19.07 Alert deprecated: OpamPrinter.relop
#21 19.07 Use OpamPrinter.FullPos.relop instead.
#21 19.07 File "src/format/opamFormula.ml", line 234, characters 28-45:
#21 19.07 234 |     Printf.sprintf "%s %s" (OpamPrinter.relop relop)
#21 19.07                                   ^^^^^^^^^^^^^^^^^
#21 19.07 Alert deprecated: OpamPrinter.relop
#21 19.07 Use OpamPrinter.FullPos.relop instead.
#21 19.17     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Diagnostic.{cmx,o}
#21 19.17 File "src_ext/dose3/algo/diagnostic.ml", line 308, characters 12-30:
#21 19.17 Alert deprecated: module Stdlib.Pervasives
#21 19.17 Use Stdlib instead.
#21 19.17 
#21 19.17 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 19.17 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.17 File "src_ext/dose3/algo/diagnostic.ml", line 509, characters 20-38:
#21 19.17 Alert deprecated: module Stdlib.Pervasives
#21 19.17 Use Stdlib instead.
#21 19.17 
#21 19.17 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 19.17 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.28     ocamlopt src/format/.opam_format.objs/opamFilter.{cmx,o}
#21 19.28 File "src/format/opamFilter.ml", line 44, characters 36-53:
#21 19.28 44 |            (aux ~context:`Relop e) (OpamPrinter.relop s) (aux ~context:`Relop f))
#21 19.28                                          ^^^^^^^^^^^^^^^^^
#21 19.28 Alert deprecated: OpamPrinter.relop
#21 19.28 Use OpamPrinter.FullPos.relop instead.
#21 19.28 File "src/format/opamFilter.ml", line 109, characters 11-18:
#21 19.28 109 |         if Re.test ss 2 then
#21 19.28                  ^^^^^^^
#21 19.28 Alert deprecated: Re.test
#21 19.28 Use Group.test
#21 19.28 File "src/format/opamFilter.ml", line 110, characters 15-21:
#21 19.28 110 |           aux (Re.get ss 1 :: acc)
#21 19.28                      ^^^^^^
#21 19.28 Alert deprecated: Re.get
#21 19.28 Use Group.get
#21 19.28 File "src/format/opamFilter.ml", line 111, characters 18-28:
#21 19.28 111 |             (fst (Re.get_ofs ss 0) + String.length (Re.get ss 0))
#21 19.28                         ^^^^^^^^^^
#21 19.28 Alert deprecated: Re.get_ofs
#21 19.28 Use Group.offset
#21 19.28 File "src/format/opamFilter.ml", line 111, characters 52-58:
#21 19.28 111 |             (fst (Re.get_ofs ss 0) + String.length (Re.get ss 0))
#21 19.28                                                           ^^^^^^
#21 19.28 Alert deprecated: Re.get
#21 19.28 Use Group.get
#21 19.28 File "src/format/opamFilter.ml", line 524, characters 38-55:
#21 19.28 524 |           Printf.sprintf "%s \"%s\"" (OpamPrinter.relop op) s
#21 19.28                                             ^^^^^^^^^^^^^^^^^
#21 19.28 Alert deprecated: OpamPrinter.relop
#21 19.28 Use OpamPrinter.FullPos.relop instead.
#21 19.28 File "src/format/opamFilter.ml", line 526, characters 34-51:
#21 19.28 526 |           Printf.sprintf "%s %s" (OpamPrinter.relop op) (to_string v)
#21 19.28                                         ^^^^^^^^^^^^^^^^^
#21 19.28 Alert deprecated: OpamPrinter.relop
#21 19.28 Use OpamPrinter.FullPos.relop instead.
#21 19.28 File "src/format/opamFilter.ml", line 528, characters 36-53:
#21 19.28 528 |           Printf.sprintf "%s (%s)" (OpamPrinter.relop op) (to_string v)
#21 19.28                                           ^^^^^^^^^^^^^^^^^
#21 19.28 Alert deprecated: OpamPrinter.relop
#21 19.28 Use OpamPrinter.FullPos.relop instead.
#21 19.36     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Strongconflicts_int.{cmx,o}
#21 19.36 File "src_ext/dose3/algo/strongconflicts_int.ml", line 29, characters 16-34:
#21 19.36 Alert deprecated: module Stdlib.Pervasives
#21 19.36 Use Stdlib instead.
#21 19.36 
#21 19.36 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 19.36 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.36 File "src_ext/dose3/algo/strongconflicts_int.ml", line 46, characters 55-73:
#21 19.36 Alert deprecated: module Stdlib.Pervasives
#21 19.36 Use Stdlib instead.
#21 19.36 
#21 19.36 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 19.36 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.46     ocamlopt src_ext/dose3/algo/.algo.objs/algo__Strongconflicts.{cmx,o}
#21 19.46 File "src_ext/dose3/algo/strongconflicts.ml", line 27, characters 16-34:
#21 19.46 Alert deprecated: module Stdlib.Pervasives
#21 19.46 Use Stdlib instead.
#21 19.46 
#21 19.46 If you need to stay compatible with OCaml < 4.07, you can use the 
#21 19.46 stdlib-shims library: https://github.com/ocaml/stdlib-shims
#21 19.47     ocamlopt src/format/.opam_format.objs/opamFormat.{cmx,o}
#21 19.47 File "src/format/opamFormat.ml", line 822, characters 21-48:
#21 19.47 822 |            let str = OpamPrinter.Normalise.items items in
#21 19.47                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 19.47 Alert deprecated: module OpamPrinter.Normalise
#21 19.47 Use OpamPrinter.FullPos.Normalise instead.
#21 19.47 File "src/format/opamFormat.ml", line 829, characters 28-55:
#21 19.47 829 |          assert (check sgs (OpamPrinter.Normalise.items items));
#21 19.47                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 19.47 Alert deprecated: module OpamPrinter.Normalise
#21 19.47 Use OpamPrinter.FullPos.Normalise instead.
#21 20.32     ocamlopt src/format/.opam_format.objs/opamFile.{cmx,o}
#21 20.32 File "src/format/opamFile.ml", line 545, characters 10-33:
#21 20.32 545 |          (OpamLexer.env_update_op, OpamPrinter.env_update_op) ^+
#21 20.32                 ^^^^^^^^^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamLexer.env_update_op
#21 20.32 Use OpamLexer.FullPos.env_update_op instead.
#21 20.32 File "src/format/opamFile.ml", line 545, characters 35-60:
#21 20.32 545 |          (OpamLexer.env_update_op, OpamPrinter.env_update_op) ^+
#21 20.32                                          ^^^^^^^^^^^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamPrinter.env_update_op
#21 20.32 Use OpamPrinter.FullPos.env_update_op instead.
#21 20.32 File "src/format/opamFile.ml", line 723, characters 8-23:
#21 20.32 723 |     try OpamParser.main OpamLexer.token lexbuf filename with
#21 20.32               ^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamParser.main
#21 20.32 Use OpamParser.FullPos.main instead.
#21 20.32 File "src/format/opamFile.ml", line 735, characters 9-36:
#21 20.32 735 |          OpamPrinter.format_opamfile fmt file)
#21 20.32                ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamPrinter.format_opamfile
#21 20.32 Use OpamPrinter.FullPos.format_opamfile instead.
#21 20.32 File "src/format/opamFile.ml", line 748, characters 4-24:
#21 20.32 748 |     OpamPrinter.opamfile t
#21 20.32           ^^^^^^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamPrinter.opamfile
#21 20.32 Use OpamPrinter.FullPos.opamfile instead.
#21 20.32 File "src/format/opamFile.ml", line 823, characters 19-36:
#21 20.32 823 |                    OpamPrinter.items [f] :: strs
#21 20.32                          ^^^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamPrinter.items
#21 20.32 Use OpamPrinter.FullPos.items instead.
#21 20.32 File "src/format/opamFile.ml", line 854, characters 17-34:
#21 20.32 854 |                  OpamPrinter.items f :: strs
#21 20.32                        ^^^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamPrinter.items
#21 20.32 Use OpamPrinter.FullPos.items instead.
#21 20.32 File "src/format/opamFile.ml", line 862, characters 38-55:
#21 20.32 862 |          (if rem = [] then [""] else [OpamPrinter.items rem;""]))
#21 20.32                                             ^^^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamPrinter.items
#21 20.32 Use OpamPrinter.FullPos.items instead.
#21 20.32 File "src/format/opamFile.ml", line 1277, characters 21-36:
#21 20.32 1277 |       let opamfile = OpamParser.file (OpamFilename.to_string (filename f)) in
#21 20.32                             ^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamParser.file
#21 20.32 Use OpamParser.FullPos.file instead.
#21 20.32 File "src/format/opamFile.ml", line 1648, characters 21-36:
#21 20.32 1648 |       let opamfile = OpamParser.file (OpamFilename.to_string (filename f)) in
#21 20.32                             ^^^^^^^^^^^^^^^
#21 20.32 Alert deprecated: OpamParser.file
#21 20.32 Use OpamParser.FullPos.file instead.
#21 20.53     ocamlopt src/repository/.opam_repository.objs/opamDownload.{cmx,o}
#21 20.53 File "src/repository/opamDownload.ml", line 44, characters 36-44:
#21 20.53 44 | let download_args ~url ~out ~retry ?checksum ~compress =
#21 20.53                                          ^^^^^^^^
#21 20.53 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 20.53 File "src/repository/opamDownload.ml", line 102, characters 32-40:
#21 20.53 102 | let download_command ~compress ?checksum ~url ~dst =
#21 20.53                                       ^^^^^^^^
#21 20.53 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 20.53 File "src/repository/opamDownload.ml", line 120, characters 60-73:
#21 20.53 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 20.53                                                                   ^^^^^^^^^^^^^
#21 20.53 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 20.53 File "src/repository/opamDownload.ml", line 120, characters 49-57:
#21 20.53 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 20.53                                                        ^^^^^^^^
#21 20.53 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 20.53 File "src/repository/opamDownload.ml", line 120, characters 32-46:
#21 20.53 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 20.53                                       ^^^^^^^^^^^^^^
#21 20.53 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 20.53 File "src/repository/opamDownload.ml", line 120, characters 6-17:
#21 20.53 120 |     ?(quiet=false) ~overwrite ?(compress=false) ?checksum ?(validate=true)
#21 20.53             ^^^^^^^^^^^
#21 20.53 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 20.88     ocamlopt src/solver/.opam_solver.objs/opamCudf.{cmx,o}
#21 20.88 File "src/solver/opamCudf.ml", line 219, characters 47-64:
#21 20.88 219 |     | Some (r,v) -> Printf.sprintf " (%s %d)" (OpamPrinter.relop r) v in
#21 20.88                                                      ^^^^^^^^^^^^^^^^^
#21 20.88 Alert deprecated: OpamPrinter.relop
#21 20.88 Use OpamPrinter.FullPos.relop instead.
#21 21.03     ocamlopt src/state/.opam_state.objs/opamPinned.{cmx,o}
#21 21.03 File "src/state/opamPinned.ml", line 126, characters 34-51:
#21 21.03 126 |                                  (OpamPrinter.relop op) (OpamPackage.Version.to_string vc))
#21 21.03                                         ^^^^^^^^^^^^^^^^^
#21 21.03 Alert deprecated: OpamPrinter.relop
#21 21.03 Use OpamPrinter.FullPos.relop instead.
#21 21.73     ocamlopt src/state/.opam_state.objs/opamSwitchState.{cmx,o}
#21 21.73 File "src/state/opamSwitchState.ml", line 668, characters 41-58:
#21 21.73 668 |       (match relop with `Eq -> "" | r -> OpamPrinter.relop r)
#21 21.73                                                ^^^^^^^^^^^^^^^^^
#21 21.73 Alert deprecated: OpamPrinter.relop
#21 21.73 Use OpamPrinter.FullPos.relop instead.
#21 22.11     ocamlopt src/client/.opam_client.objs/opamConfigCommand.{cmx,o}
#21 22.11 File "src/client/opamConfigCommand.ml", line 216, characters 42-62:
#21 22.11 216 | let env gt switch ?(set_opamroot=false) ?(set_opamswitch=false)
#21 22.11                                                 ^^^^^^^^^^^^^^^^^^^^
#21 22.11 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 22.11 File "src/client/opamConfigCommand.ml", line 216, characters 20-38:
#21 22.11 216 | let env gt switch ?(set_opamroot=false) ?(set_opamswitch=false)
#21 22.11                           ^^^^^^^^^^^^^^^^^^
#21 22.11 Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
#21 22.66     ocamlopt src/client/.opam_client.objs/opamListCommand.{cmx,o}
#21 22.66 File "src/client/opamListCommand.ml", line 471, characters 20-47:
#21 22.66 471 |   if normalise then OpamPrinter.Normalise.value else
#21 22.66                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 22.66 Alert deprecated: module OpamPrinter.Normalise
#21 22.66 Use OpamPrinter.FullPos.Normalise instead.
#21 22.66 File "src/client/opamListCommand.ml", line 477, characters 19-41:
#21 22.66 477 |   | List (_, l) -> OpamPrinter.value_list l
#21 22.66                          ^^^^^^^^^^^^^^^^^^^^^^
#21 22.66 Alert deprecated: OpamPrinter.value_list
#21 22.66 Use OpamPrinter.FullPos.value_list instead.
#21 22.66 File "src/client/opamListCommand.ml", line 478, characters 9-36:
#21 22.66 478 |   | f -> OpamPrinter.Normalise.value f
#21 22.66                ^^^^^^^^^^^^^^^^^^^^^^^^^^^
#21 22.66 Alert deprecated: module OpamPrinter.Normalise
#21 22.66 Use OpamPrinter.FullPos.Normalise instead.
#21 22.91     ocamlopt src/client/.opam_client.objs/opamArg.{cmx,o}
#21 22.91 File "src/client/opamArg.ml", line 488, characters 45-51:
#21 22.91 488 |       let name = OpamPackage.Name.of_string (Re.get sub 1) in
#21 22.91                                                    ^^^^^^
#21 22.91 Alert deprecated: Re.get
#21 22.91 Use Group.get
#21 22.91 File "src/client/opamArg.ml", line 490, characters 49-55:
#21 22.91 490 |         try Some (OpamPackage.Version.of_string (Re.get sub 2))
#21 22.91                                                        ^^^^^^
#21 22.91 Alert deprecated: Re.get
#21 22.91 Use Group.get
#21 22.91 File "src/client/opamArg.ml", line 526, characters 18-24:
#21 22.91 526 |       let sname = Re.get sub 1 in
#21 22.91                         ^^^^^^
#21 22.91 Alert deprecated: Re.get
#21 22.91 Use Group.get
#21 22.91 File "src/client/opamArg.ml", line 527, characters 16-22:
#21 22.91 527 |       let sop = Re.get sub 2 in
#21 22.91                       ^^^^^^
#21 22.91 Alert deprecated: Re.get
#21 22.91 Use Group.get
#21 22.91 File "src/client/opamArg.ml", line 528, characters 21-27:
#21 22.91 528 |       let sversion = Re.get sub 3 in
#21 22.91                            ^^^^^^
#21 22.91 Alert deprecated: Re.get
#21 22.91 Use Group.get
#21 22.91 File "src/client/opamArg.ml", line 531, characters 15-30:
#21 22.91 531 |       let op = OpamLexer.relop sop in
#21 22.91                      ^^^^^^^^^^^^^^^
#21 22.91 Alert deprecated: OpamLexer.relop
#21 22.91 Use OpamLexer.FullPos.relop instead.
#21 24.55 sed -f process.sed opam.install > processed-opam.install
#21 24.56 ln -s -f _build/default/src/client/opamMain.exe opam
#21 24.56 src_ext/dune-local/_build_bootstrap/install/default/bin/dune build --profile=release  opam-installer.install
#21 24.69 sed -f process.sed opam-installer.install > processed-opam-installer.install
#21 24.69 ln -s -f _build/default/src/tools/opam_installer.exe opam-installer
#21 DONE 25.0s

#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:2ca80e9588d1f379ff143b35a0ef6d5ee117065650c2be39827ad86db18096d3
#22 0.514 Note: switching to '3dd624a69b1757279c0d04a3866d47facbb56771'.
#22 0.514 
#22 0.514 You are in 'detached HEAD' state. You can look around, make experimental
#22 0.514 changes and commit them, and you can discard any commits you make in this
#22 0.514 state without impacting any branches by switching back to a branch.
#22 0.514 
#22 0.514 If you want to create a new branch to retain commits you create, you may
#22 0.514 do so (now or later) by using -c with the switch command. Example:
#22 0.514 
#22 0.514   git switch -c <new-branch-name>
#22 0.514 
#22 0.514 Or undo this operation with:
#22 0.514 
#22 0.514   git switch -
#22 0.514 
#22 0.514 Turn off this advice by setting config variable advice.detachedHead to false
#22 0.514 
#22 0.514 HEAD is now at 3dd624a6 Merge pull request #5384 from kit-ty-kate/214
#22 0.656 checking for ocamlc... ocamlc
#22 0.667 OCaml version is 4.14.1
#22 0.678 OCaml library path is /tmp/opam/bootstrap/ocaml/lib/ocaml
#22 0.678 checking for ocamlopt... ocamlopt
#22 0.690 checking for ocamlc.opt... ocamlc.opt
#22 0.700 checking for ocamlopt.opt... ocamlopt.opt
#22 0.713 checking for ocaml... ocaml
#22 0.714 checking for ocamldep... ocamldep
#22 0.715 checking for ocamldep.opt... ocamldep.opt
#22 0.724 checking for ocamlmktop... ocamlmktop
#22 0.725 checking for ocamlmklib... ocamlmklib
#22 0.725 checking for ocamldoc... ocamldoc
#22 0.726 checking for ocamldoc.opt... ocamldoc.opt
#22 0.741 checking for ocamlbuild... no
#22 0.741 checking OCaml Sys.os_type... Unix
#22 0.771 checking for gawk... no
#22 0.772 checking for mawk... mawk
#22 0.784 checking for compiler type... cc
#22 1.061 checking for compiler architecture... arm64
#22 1.343 checking for compiler system... linux
#22 1.621 checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
#22 1.662 checking whether the C compiler works... yes
#22 1.711 checking for C compiler default output file name... a.out
#22 1.713 checking for suffix of executables... 
#22 1.771 checking whether we are cross compiling... no
#22 1.827 checking for suffix of object files... o
#22 1.859 checking whether the compiler supports GNU C... yes
#22 1.892 checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
#22 1.923 checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to enable C11 features... none needed
#22 1.991 checking for stdio.h... yes
#22 2.023 checking for stdlib.h... yes
#22 2.063 checking for string.h... yes
#22 2.100 checking for inttypes.h... yes
#22 2.139 checking for stdint.h... yes
#22 2.178 checking for strings.h... yes
#22 2.222 checking for sys/stat.h... yes
#22 2.263 checking for sys/types.h... yes
#22 2.304 checking for unistd.h... yes
#22 2.351 checking for acl/libacl.h... no
#22 2.398 checking for library containing acl_get_perm... no
#22 2.509 checking for ocamlobjinfo... ocamlobjinfo
#22 2.510 checking for ocamlfind... no
#22 2.511 checking for curl... curl
#22 2.511 checking for dune... no
#22 2.512 checking for cppo... no
#22 2.512 checking for patch... patch
#22 2.513 checking for bunzip2... bunzip2
#22 2.526 
#22 2.526 checking for OCaml findlib package unix... not found
#22 2.527 checking for OCaml findlib package bigarray... not found
#22 2.528 checking for OCaml findlib package extlib... not found
#22 2.530 checking for OCaml findlib package re... not found
#22 2.531 checking for OCaml findlib package re.glob... not found
#22 2.532 checking for OCaml findlib package cmdliner... not found
#22 2.533 checking for OCaml findlib package ocamlgraph... not found
#22 2.535 checking for OCaml findlib package cudf... not found
#22 2.536 checking for OCaml findlib package dose3.common... not found
#22 2.538 checking for OCaml findlib package dose3.algo... not found
#22 2.540 checking for OCaml findlib package opam-file-format... not found
#22 2.541 checking for OCaml findlib package mccs... not found
#22 2.542 checking for OCaml findlib package opam-0install-cudf... not found
#22 2.544 checking for g++... g++
#22 2.577 checking whether the compiler supports GNU C++... yes
#22 2.612 checking whether g++ accepts -g... yes
#22 2.643 checking for g++ option to enable C++11 features... none needed
#22 2.741 
#22 2.741 ============================================================================
#22 2.741 Some dependencies are missing. If you are just interested in the stand-alone
#22 2.741 'opam' binary, run 'make lib-ext' to download and include them.
#22 2.741 ============================================================================
#22 2.741 
#22 2.774 configure: creating ./config.status
#22 2.892 config.status: creating Makefile.config
#22 2.909 config.status: creating src/ocaml-flags-configure.sexp
#22 2.934 config.status: creating src/stubs/c-flags.sexp
#22 2.959 config.status: creating src/stubs/libacl/c-libraries.sexp
#22 2.986 
#22 2.990 Opam will be built WITH a built-in solver
#22 2.990 
#22 2.990 Executables will be installed in /usr/local/bin
#22 2.990 Manual pages will be installed in /usr/local/share/man
#22 3.029 make -j -C src_ext lib-ext
#22 3.031 make[1]: Entering directory '/tmp/opam-build-2.1/src_ext'
#22 3.065 [ -e dune-local.tbz ] || \
#22 3.065 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.068 [ -e cppo.tar.gz ] || \
#22 3.068 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.071 [ -e base64.tbz ] || \
#22 3.071 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.074 [ -e extlib.tar.gz ] || \
#22 3.074 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.077 [ -e re.tbz ] || \
#22 3.077 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.081 [ -e cmdliner.tbz ] || \
#22 3.081 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.084 [ -e ocamlgraph.tbz ] || \
#22 3.084 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.087 [ -e cudf.tar.gz ] || \
#22 3.087 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.091 [ -e dose3.tar.gz ] || \
#22 3.091 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.093 [ -e opam-file-format.tar.gz ] || \
#22 3.093 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.097 [ -e result.tbz ] || \
#22 3.097 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.100 [ -e seq.tar.gz ] || \
#22 3.100 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.103 [ -e stdlib-shims.tbz ] || \
#22 3.103 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.106 [ -e mccs.tar.gz ] || \
#22 3.106 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.108 [ -e opam-0install-cudf.tbz ] || \
#22 3.108 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.111 [ -e 0install-solver.tbz ] || \
#22 3.111 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.250 cudf.tar.gz has the expected MD5.
#22 3.251 mkdir -p tmp-cudf
#22 3.252 cd tmp-cudf && gunzip -c ../cudf.tar.gz | tar xf -
#22 3.265 rm -rf cudf
#22 3.270 patching file lib/dune
#22 3.310 cmdliner.tbz has the expected MD5.
#22 3.311 mkdir -p tmp-cmdliner
#22 3.312 cd tmp-cmdliner && bunzip2 -c ../cmdliner.tbz | tar xf -
#22 3.329 rm -rf cmdliner
#22 3.336 patching file src/cmdliner_docgen.ml
#22 3.337 patching file src/cmdliner.ml
#22 3.338 patching file src/cmdliner.mli
#22 3.339 patching file src/cmdliner_arg.ml
#22 3.339 patching file src/cmdliner_arg.mli
#22 3.340 patching file src/cmdliner_base.ml
#22 3.340 patching file src/cmdliner_cline.ml
#22 3.340 patching file src/cmdliner_cline.mli
#22 3.341 patching file src/cmdliner_docgen.ml
#22 3.341 patching file src/cmdliner_manpage.ml
#22 3.341 patching file src/cmdliner_term.ml
#22 3.342 patching file src/cmdliner_term.mli
#22 3.342 patching file src/dune
#22 3.451 result.tbz has the expected MD5.
#22 3.452 mkdir -p tmp-result
#22 3.454 cd tmp-result && bunzip2 -c ../result.tbz | tar xf -
#22 3.458 rm -rf result
#22 3.460 stdlib-shims.tbz has the expected MD5.
#22 3.461 mkdir -p tmp-stdlib-shims
#22 3.463 cd tmp-stdlib-shims && bunzip2 -c ../stdlib-shims.tbz | tar xf -
#22 3.469 rm -rf stdlib-shims
#22 3.533 dose3.tar.gz has the expected MD5.
#22 3.534 mkdir -p tmp-dose3
#22 3.535 cd tmp-dose3 && gunzip -c ../dose3.tar.gz | tar xf -
#22 3.554 ocamlgraph.tbz has the expected MD5.
#22 3.556 mkdir -p tmp-ocamlgraph
#22 3.557 cd tmp-ocamlgraph && bunzip2 -c ../ocamlgraph.tbz | tar xf -
#22 3.571 rm -rf dose3
#22 3.571 dune-local.tbz has the expected MD5.
#22 3.572 mkdir -p tmp-dune-local
#22 3.574 cd tmp-dune-local && bunzip2 -c ../dune-local.tbz | tar xf -
#22 3.577 patching file src/common/dune
#22 3.578 patching file src/common/util.ml
#22 3.617 rm -rf ocamlgraph
#22 3.624 patching file src/dot_lexer.mll
#22 3.625 patching file src/dune
#22 3.689 extlib.tar.gz has the expected MD5.
#22 3.690 mkdir -p tmp-extlib
#22 3.692 cd tmp-extlib && gunzip -c ../extlib.tar.gz | tar xf -
#22 3.701 rm -rf extlib
#22 3.709 cppo.tar.gz has the expected MD5.
#22 3.710 mkdir -p tmp-cppo
#22 3.712 cd tmp-cppo && gunzip -c ../cppo.tar.gz | tar xf -
#22 3.721 rm -rf cppo
#22 3.721 opam-0install-cudf.tbz has the expected MD5.
#22 3.723 mkdir -p tmp-opam-0install-cudf
#22 3.724 cd tmp-opam-0install-cudf && bunzip2 -c ../opam-0install-cudf.tbz | tar xf -
#22 3.730 re.tbz has the expected MD5.
#22 3.731 mkdir -p tmp-re
#22 3.731 opam-file-format.tar.gz has the expected MD5.
#22 3.732 cd tmp-re && bunzip2 -c ../re.tbz | tar xf -
#22 3.733 mkdir -p tmp-opam-file-format
#22 3.733 rm -rf opam-0install-cudf
#22 3.734 cd tmp-opam-file-format && gunzip -c ../opam-file-format.tar.gz | tar xf -
#22 3.739 base64.tbz has the expected MD5.
#22 3.739 seq.tar.gz has the expected MD5.
#22 3.740 mkdir -p tmp-base64
#22 3.741 mkdir -p tmp-seq
#22 3.741 rm -rf opam-file-format
#22 3.742 cd tmp-base64 && bunzip2 -c ../base64.tbz | tar xf -
#22 3.742 cd tmp-seq && gunzip -c ../seq.tar.gz | tar xf -
#22 3.748 rm -rf seq
#22 3.750 rm -rf base64
#22 3.758 rm -f seq/src/seq.ml seq/src/seq.mli
#22 3.758 patching file src/base64.ml
#22 3.759 patching file src/base64.mli
#22 3.759 patching file src/dune
#22 3.761 rm -rf re
#22 3.809 0install-solver.tbz has the expected MD5.
#22 3.810 mkdir -p tmp-0install-solver
#22 3.811 cd tmp-0install-solver && bunzip2 -c ../0install-solver.tbz | tar xf -
#22 3.829 mccs.tar.gz has the expected MD5.
#22 3.830 mkdir -p tmp-mccs
#22 3.832 cd tmp-mccs && gunzip -c ../mccs.tar.gz | tar xf -
#22 3.869 rm -rf mccs
#22 3.875 patching file src/lp_solver.cpp
#22 3.909 rm -rf 0install-solver
#22 3.972 rm -rf dune-local
#22 3.982 rm dune-local.download
#22 3.982 make[1]: Leaving directory '/tmp/opam-build-2.1/src_ext'
#22 3.982 cd src_ext/dune-local && ocaml bootstrap.ml
#22 4.053 ocamlc -output-complete-exe -w -24 -g -o .duneboot.exe -I boot unix.cma boot/libs.ml boot/duneboot.ml
#22 4.542 ./.duneboot.exe
#22 17.26 

src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install opam.install
#22 17.39 sh: 1: ocamlfind: not found
#22 17.39 (will skip building the GTK plugin)
#22 19.33 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#22 19.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=]
#22 19.33   145 |       sprintf(command, "cat %s >> %s && %s %s | tee %s",
#22 19.33       |                                                     ^~
#22 19.33 In file included from /usr/include/stdio.h:894,
#22 19.33                  from lp_solver.cpp:8:
#22 19.33 /usr/include/aarch64-linux-gnu/bits/stdio2.h:38:34: note: '__builtin___sprintf_chk' output 21 or more bytes (assuming 1041) into a destination of size 1024
#22 19.33    38 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#22 19.33       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.33    39 |                                   __glibc_objsize (__s), __fmt,
#22 19.33       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.33    40 |                                   __va_arg_pack ());
#22 19.33       |                                   ~~~~~~~~~~~~~~~~~
#22 19.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=]
#22 19.33   141 |       sprintf(command, "cat %s >> %s; %s %s > %s 2> /dev/null",
#22 19.33       |                                               ^~
#22 19.33 In file included from /usr/include/stdio.h:894,
#22 19.33                  from lp_solver.cpp:8:
#22 19.33 /usr/include/aarch64-linux-gnu/bits/stdio2.h:38:34: note: '__builtin___sprintf_chk' output 28 or more bytes (assuming 1048) into a destination of size 1024
#22 19.33    38 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#22 19.33       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.33    39 |                                   __glibc_objsize (__s), __fmt,
#22 19.33       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#22 19.33    40 |                                   __va_arg_pack ());
#22 19.33       |                                   ~~~~~~~~~~~~~~~~~
#22 21.06 File "src/core/opamStubsTypes.ml", line 1:
#22 21.06 Warning 70 [missing-mli]: Cannot find interface file.
#22 21.54 File "src/solver/opamCudfSolverSig.ml", line 1:
#22 21.54 Warning 70 [missing-mli]: Cannot find interface file.
#22 21.59 File "src/tools/opam_installer.ml", line 1:
#22 21.59 Warning 70 [missing-mli]: Cannot find interface file.
#22 30.22 sed -f process.sed opam.install > processed-opam.install
#22 30.22 src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install
#22 30.35 sh: 1: ocamlfind: not found
#22 30.35 (will skip building the GTK plugin)
#22 30.65 sed -f process.sed opam-installer.install > processed-opam-installer.install
#22 DONE 31.1s

#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:db794b67dbea11b16b1821eba9735e0eb9c6ff1403d3847b6ce2eff8fbe32d28
#23 0.523 Note: switching to '8bc4698fb9caded0fa5c2bf08fe67a34d732451e'.
#23 0.523 
#23 0.523 You are in 'detached HEAD' state. You can look around, make experimental
#23 0.523 changes and commit them, and you can discard any commits you make in this
#23 0.523 state without impacting any branches by switching back to a branch.
#23 0.523 
#23 0.523 If you want to create a new branch to retain commits you create, you may
#23 0.523 do so (now or later) by using -c with the switch command. Example:
#23 0.523 
#23 0.523   git switch -c <new-branch-name>
#23 0.523 
#23 0.523 Or undo this operation with:
#23 0.523 
#23 0.523   git switch -
#23 0.523 
#23 0.523 Turn off this advice by setting config variable advice.detachedHead to false
#23 0.523 
#23 0.523 HEAD is now at 8bc4698f Merge pull request #5480 from rjbou/config-invariant
#23 0.671 checking for ocamlc... ocamlc
#23 0.682 OCaml version is 4.14.1
#23 0.691 OCaml library path is /tmp/opam/bootstrap/ocaml/lib/ocaml
#23 0.691 checking for ocamlopt... ocamlopt
#23 0.702 checking for ocamlc.opt... ocamlc.opt
#23 0.710 checking for ocamlopt.opt... ocamlopt.opt
#23 0.720 checking for ocaml... ocaml
#23 0.720 checking for ocamldep... ocamldep
#23 0.721 checking for ocamldep.opt... ocamldep.opt
#23 0.732 checking for ocamlmktop... ocamlmktop
#23 0.733 checking for ocamlmklib... ocamlmklib
#23 0.733 checking for ocamldoc... ocamldoc
#23 0.734 checking for ocamldoc.opt... ocamldoc.opt
#23 0.743 checking for ocamlbuild... no
#23 0.744 checking OCaml Sys.os_type... Unix
#23 0.776 checking for gawk... no
#23 0.777 checking for mawk... mawk
#23 0.789 checking for compiler type... cc
#23 1.064 checking for compiler architecture... arm64
#23 1.340 checking for compiler system... linux
#23 1.630 checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
#23 1.676 checking whether the C compiler works... yes
#23 1.736 checking for C compiler default output file name... a.out
#23 1.738 checking for suffix of executables... 
#23 1.795 checking whether we are cross compiling... no
#23 1.855 checking for suffix of object files... o
#23 1.891 checking whether the compiler supports GNU C... yes
#23 1.921 checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
#23 1.957 checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to enable C11 features... none needed
#23 2.019 checking for stdio.h... yes
#23 2.052 checking for stdlib.h... yes
#23 2.087 checking for string.h... yes
#23 2.123 checking for inttypes.h... yes
#23 2.160 checking for stdint.h... yes
#23 2.191 checking for strings.h... yes
#23 2.226 checking for sys/stat.h... yes
#23 2.262 checking for sys/types.h... yes
#23 2.304 checking for unistd.h... yes
#23 2.349 checking for acl/libacl.h... no
#23 2.397 checking for library containing acl_get_perm... no
#23 2.507 checking for ocamlobjinfo... ocamlobjinfo
#23 2.508 checking for ocamlfind... no
#23 2.509 checking for curl... curl
#23 2.509 checking for dune... no
#23 2.510 checking for cppo... no
#23 2.510 checking for patch... patch
#23 2.511 checking for bunzip2... bunzip2
#23 2.523 
#23 2.523 checking for OCaml findlib package unix... not found
#23 2.524 checking for OCaml findlib package bigarray... not found
#23 2.525 checking for OCaml findlib package re 1.9.0 or later... no
#23 2.528 checking for OCaml findlib package base64 3.1.0 or later... no
#23 2.530 checking for OCaml findlib package cmdliner... not found
#23 2.531 checking for OCaml findlib package ocamlgraph... not found
#23 2.532 checking for OCaml findlib package cudf 0.7 or later... no
#23 2.534 checking for OCaml findlib package dose3.common 6.1 or later... no
#23 2.537 checking for OCaml findlib package dose3.algo 6.1 or later... no
#23 2.539 checking for OCaml findlib package opam-file-format 2.1.4 or later... no
#23 2.541 checking for OCaml findlib package spdx_licenses... not found
#23 2.542 checking for OCaml findlib package opam-0install-cudf 0.4 or later... no
#23 2.544 checking for OCaml findlib package jsonm... not found
#23 2.546 checking for OCaml findlib package uutf... not found
#23 2.547 checking for OCaml findlib package sha... not found
#23 2.548 checking for OCaml findlib package mccs 1.1+9 or later... no
#23 2.552 checking for g++... g++
#23 2.583 checking whether the compiler supports GNU C++... yes
#23 2.610 checking whether g++ accepts -g... yes
#23 2.639 checking for g++ option to enable C++11 features... none needed
#23 2.727 checking whether g++ really is a C++ compiler... yes
#23 2.759 
#23 2.759 ============================================================================
#23 2.759 Some dependencies are missing. Vendored mode has been automatically enabled.
#23 2.759 The sources for opam's dependencies will be extracted in src_ext and built.
#23 2.759 ============================================================================
#23 2.791 configure: creating ./config.status
#23 2.907 config.status: creating Makefile.config
#23 2.923 config.status: creating src/ocaml-flags-configure.sexp
#23 2.946 config.status: creating src/stubs/c-flags.sexp
#23 2.971 config.status: creating src/stubs/libacl/c-libraries.sexp
#23 2.999 
#23 3.003 Opam will be built WITH its default built-in solver
#23 3.003 
#23 3.003 Executables will be installed in /usr/local/bin
#23 3.003 Manual pages will be installed in /usr/local/share/man
#23 3.003 
#23 3.003 Downloading vendored source dependencies...
#23 3.051  * Downloading dune-local...
#23 3.565  * Downloading cppo...
#23 4.010  * Downloading base64...
#23 4.380  * Downloading extlib...
#23 4.769  * Downloading re...
#23 5.205  * Downloading cmdliner...
#23 5.413  * Downloading ocamlgraph...
#23 6.172  * Downloading cudf...
#23 6.566  * Downloading dose3...
#23 7.211  * Downloading opam-file-format...
#23 8.022  * Downloading seq...
#23 8.569  * Downloading stdlib-shims...
#23 8.929  * Downloading spdx_licenses...
#23 9.309  * Downloading opam-0install-cudf...
#23 9.833  * Downloading 0install-solver...
#23 10.24  * Downloading uutf...
#23 10.44  * Downloading jsonm...
#23 10.62  * Downloading sha...
#23 11.00  * Downloading swhid_core...
#23 11.52  * Downloading mccs...
#23 12.24 done
#23 12.24 Extracting vendored source dependencies in src_ext/... done
#23 13.28 make -j -C src_ext lib-ext
#23 13.28 make[1]: Entering directory '/tmp/opam-build-master/src_ext'
#23 13.32 NOTE: make lib-ext is no longer required
#23 13.32 make[1]: Leaving directory '/tmp/opam-build-master/src_ext'
#23 13.32 cd src_ext/dune-local && ocaml bootstrap.ml
#23 13.39 ocamlc -output-complete-exe -w -24 -g -o .duneboot.exe -I boot unix.cma boot/libs.ml boot/duneboot.ml
#23 13.91 ./.duneboot.exe
#23 26.59 

src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install opam.install
#23 28.87 lp_solver.cpp: In member function 'virtual int lp_solver::solve()':
#23 28.87 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.87   145 |       sprintf(command, "cat %s >> %s && %s %s | tee %s",
#23 28.87       |                                                     ^~
#23 28.87 In file included from /usr/include/stdio.h:894,
#23 28.87                  from lp_solver.cpp:8:
#23 28.87 /usr/include/aarch64-linux-gnu/bits/stdio2.h:38:34: note: '__builtin___sprintf_chk' output 21 or more bytes (assuming 1041) into a destination of size 1024
#23 28.87    38 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#23 28.87       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.87    39 |                                   __glibc_objsize (__s), __fmt,
#23 28.87       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.87    40 |                                   __va_arg_pack ());
#23 28.87       |                                   ~~~~~~~~~~~~~~~~~
#23 28.87 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.87   141 |       sprintf(command, "cat %s >> %s; %s %s > %s 2> /dev/null",
#23 28.87       |                                               ^~
#23 28.87 In file included from /usr/include/stdio.h:894,
#23 28.87                  from lp_solver.cpp:8:
#23 28.87 /usr/include/aarch64-linux-gnu/bits/stdio2.h:38:34: note: '__builtin___sprintf_chk' output 28 or more bytes (assuming 1048) into a destination of size 1024
#23 28.87    38 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
#23 28.87       |          ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.87    39 |                                   __glibc_objsize (__s), __fmt,
#23 28.87       |                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#23 28.87    40 |                                   __va_arg_pack ());
#23 28.87       |                                   ~~~~~~~~~~~~~~~~~
#23 39.18 sed -f process.sed opam.install > processed-opam.install
#23 39.18 src_ext/dune-local/dune.exe build --profile=release --root .  --promote-install-files -- opam-installer.install
#23 39.60 sed -f process.sed opam-installer.install > processed-opam-installer.install
#23 DONE 40.0s

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

#25 [stage-1  8/36] RUN ln /usr/bin/opam-2.0 /usr/bin/opam
#25 sha256:8f467bc1d88f6b56c8010025463cfdfbcfe48a4e092f3cd4fc049731f160a13f
#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:963da9f7c89436567b76415912c5b01deb3d0f92a3aedfd19eecb9d1daa1e8fc
#26 DONE 0.2s

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

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

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

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

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

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

#34 [stage-1 16/36] RUN adduser --uid 1000 --disabled-password --gecos '' opam
#34 sha256:d725f353fdcacbeb3abe5b946e22b7a857fcd5c69ccc4c7d0a90c61284ba3cb3
#34 0.368 Adding user `opam' ...
#34 0.368 Adding new group `opam' (1000) ...
#34 0.377 Adding new user `opam' (1000) with group `opam' ...
#34 0.388 Creating home directory `/home/opam' ...
#34 0.390 Copying files from `/etc/skel' ...
#34 DONE 0.5s

#35 [stage-1 17/36] RUN passwd -l opam
#35 sha256:665e18689797acfddb843cb24d65b51bb310dd1626742b0f4e7e01dec2734226
#35 0.349 passwd: password expiry information changed.
#35 DONE 0.4s

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

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

#38 [stage-1 20/36] RUN mkdir .ssh
#38 sha256:fd9212962229b2b5b41d4adf2ef92c831749e41d9fbe7bd32edd700232986c22
#38 DONE 0.4s

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

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

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

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

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

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

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

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

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

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

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

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

#56 [stage-1 33/36] RUN opam-sandbox-disable
#56 sha256:f1479472203d54f2671757adccbf31ecc6aee6b17ac4efdb71f2a5bdecc1f772
#56 0.316 --- 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:14f37bded74ad373804baac6aa66ad35af64222fc263429b6975365436ac2bcc
#57 0.353 [NOTE] Will configure from /home/opam/.opamrc and then from built-in defaults.
#57 0.358 Checking for available remotes: rsync and local, git.
#57 0.362   - you won't be able to use mercurial repositories unless you install the hg command on your system.
#57 0.362   - you won't be able to use darcs repositories unless you install the darcs command on your system.
#57 0.362 
#57 0.366 [WARNING] Recommended dependencies -- most packages rely on these:
#57 0.366   - m4
#57 0.376 
#57 0.376 <><> Fetching repository information ><><><><><><><><><><><><><><><><><><><><><>
#57 9.262 [default] Initialised
#57 9.262 default (at file:///home/opam/opam-repository): 
#57 9.262     [INFO] opam 2.1 includes many performance improvements over 2.0; please consider upgrading (https://opam.ocaml.org/doc/Install.html)
#57 9.262 
#57 18.33 
#57 18.33 User configuration:
#57 18.33   Updating ~/.profile.
#57 18.33 [NOTE] Make sure that ~/.profile is well sourced in your ~/.bashrc.
#57 18.33 
#57 DONE 19.6s

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

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

#60 exporting to image
#60 sha256:e8c613e07b0b7ff33893b694f7759a10d42e180f2b4dc349fb57dc6b71dcab00
#60 exporting layers
#60 exporting layers 9.6s done
#60 writing image sha256:9c314f09b3e0920c41b9131c8d2a7770678c730bd53b1a10883a3af9011ec711 done
#60 DONE 9.6s
Pushing "sha256:a38b7805473abb764dc2ec2a0611437ee6649c2a646abe29496dda0962dc368e" to "ocurrent/opam-staging:ubuntu-22.04-opam-arm64" as user "ocurrentbuilder"
Login Succeeded
The push refers to repository [docker.io/ocurrent/opam-staging]
78b8252bc6a3: Preparing
78b8252bc6a3: Pushed
ubuntu-22.04-opam-arm64: digest: sha256:aa8db1a2fc58465d08ab1a762017669b883fb31254ff3742659195b8585d0acc size: 530
Job succeeded
2023-03-24 13:18.23: Job succeeded