2024-10-09 19:34.34: New job: Build using windows-x86_64 in [https://github.com/ocaml-opam/opam-repository-mingw#sunset (69dbd0eda2e75b7085cff45755111c73a7a42d1a)] 2024-10-09 19:34.34: Will push staging image to ocurrent/opam-staging:windows-server-msvc-ltsc2022-opam-amd64 Dockerfile: # escape=` # Autogenerated by OCaml-Dockerfile scripts FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as winget-builder USER ContainerAdministrator ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ] RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force" RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force" RUN mkdir "C:\Program Files\winget-cli" && ` move "C:\TEMP\winget-cli\\winget.exe" "C:\Program Files\winget-cli\" && ` move "C:\TEMP\winget-cli\\WindowsPackageManager.dll" "C:\Program Files\winget-cli\" && ` move "C:\TEMP\winget-cli\\resources.pri" "C:\Program Files\winget-cli\" FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as cygwin-msvc USER ContainerAdministrator RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "\\$"') do ` for /f "delims=" %l in ('cmd /v:on /c "set v=%c&& echo !v:~0,-1!"') do ` reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l" ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ] ADD [ "https://aka.ms/vscollect.exe", "C:\\TEMP\\collect.exe" ] ADD [ "https://aka.ms/vs/17/release/channel", "C:\\TEMP\\VisualStudio.chman" ] RUN curl -SL --output C:\TEMP\vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe ` && (call C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache install ` --installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools" ` --channelUri C:\TEMP\VisualStudio.chman ` --installChannelUri C:\TEMP\VisualStudio.chman ` --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 ` --add Microsoft.VisualStudio.Component.Windows10SDK.18362 ` --remove Microsoft.VisualStudio.Component.Windows10SDK.10240 ` --remove Microsoft.VisualStudio.Component.Windows10SDK.10586 ` --remove Microsoft.VisualStudio.Component.Windows10SDK.14393 ` --remove Microsoft.VisualStudio.Component.Windows81SDK) ` && del /q C:\TEMP\vs_buildtools.exe ENV CYGWIN="nodosfilewarning winsymlinks:native" RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do ` reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\cygwin64\bin;%c" ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ] RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ] ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ] RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages diffutils,git,make,patch && ` powershell -Command "Remove-Item 'C:\TEMP' -Recurse" ADD [ "https://github.com/metastack/msvs-tools/archive/refs/heads/master.tar.gz", "C:\\TEMP\\msvs-tools.tar.gz" ] RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp && tar -xf /cygdrive/c/TEMP/msvs-tools.tar.gz && cp msvs-tools-master/msvs-detect msvs-tools-master/msvs-promote-path /bin && rm -rf /cygdrive/c/TEMP/msvs-tools/*" RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab FROM cygwin-msvc as opam-builder ENV HOME="C:\cygwin64\home\opam" RUN C:\cygwin64\bin\bash.exe --login -c "git config --global user.email 'docker@example.com' && git config --global user.name 'Docker' && git config --system core.longpaths true && git config --global --add safe.directory /tmp/opam-sources" RUN C:\cygwin64\bin\bash.exe --login -c "git clone https://github.com/ocaml/opam /tmp/opam && cd /tmp/opam && git checkout 787553cb90238021cd4d5a5af4a6468427caeb17 && make compiler OCAML_PORT=msvc64" RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-2.2 && cd /tmp/opam-build-2.2 && git config --global --add safe.directory /tmp/opam-build-2.2 && git checkout 01e9a24a61e23e42d513b4b775d8c30c807439b2" RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-2.2 && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-2.2.exe" RUN C:\cygwin64\bin\bash.exe --login -c "git clone /tmp/opam /tmp/opam-build-master && cd /tmp/opam-build-master && git config --global --add safe.directory /tmp/opam-build-master && git checkout 787553cb90238021cd4d5a5af4a6468427caeb17" RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp/opam-build-master && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" ./configure --enable-cold-check --with-vendored-deps --with-0install-solver && env PATH="/tmp/opam/bootstrap/ocaml/bin:$PATH" make && make install && mv /usr/local/bin/opam.exe /usr/local/bin/opam-master.exe" FROM cygwin-msvc LABEL distro_style="windows" USER ContainerAdministrator RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages curl,diffutils,git,m4,make,patch,perl,rsync,unzip && ` powershell -Command "Remove-Item 'C:\TEMP' -Recurse" ADD [ "https://github.com/fdopen/opam-repository-mingw/releases/download/0.0.0.2/opam64.tar.xz", "C:\\TEMP\\" ] RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp && tar -xf /cygdrive/c/TEMP/opam64.tar.xz && ./opam64/install.sh --prefix=/usr && rm -rf opam64 opam64.tar.xz" ADD [ "https://aka.ms/vs/17/release/vc_redist.x64.exe", "C:\\TEMP\\" ] RUN C:\TEMP\vc_redist.x64.exe /install /passive /norestart /log C:\TEMP\vc_redist.log && ` powershell -Command "Remove-Item 'C:\TEMP' -Recurse" COPY --from=winget-builder [ "C:\\Program Files\\winget-cli", "C:\\Program Files\\winget-cli" ] RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do ` reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\Program Files\winget-cli;%c" RUN powershell -Command "$path=(Join-Path $env:LOCALAPPDATA 'Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState'); New-Item $path -ItemType Directory -Force; '{ """"$schema"""": """"https://aka.ms/winget-settings.schema.json"""", """"telemetry"""": { """"disable"""": """"true"""" } }' | Out-File -encoding ASCII (Join-Path $path 'settings.json')" RUN winget install --exact --accept-source-agreements --accept-package-agreements Git.Git COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-2.2.exe", "C:\\opam-2.2.exe" ] RUN move C:\opam-2.2.exe C:\cygwin64\usr\local\bin COPY --from=opam-builder [ "C:\\cygwin64\\usr\\local\\bin\\opam-master.exe", "C:\\opam-dev.exe" ] RUN move C:\opam-dev.exe C:\cygwin64\usr\local\bin WORKDIR C:\cygwin64\home\opam ENV HOME="C:\cygwin64\home\opam" RUN C:\cygwin64\bin\bash.exe --login -c "git config --global user.email 'docker@example.com' && git config --global user.name 'Docker' && git config --system core.longpaths true && git config --global --add safe.directory /home/opam/opam-repository" COPY [ ".", "C:\\cygwin64\\home\\opam\\opam-repository" ] ENV OPAMROOT="C:\opam\.opam" RUN opam init -k local -a "C:\cygwin64\home\opam\opam-repository" --bare --disable-sandboxing RUN opam repo add ocurrent-overlay git+https://github.com/ocurrent/opam-repository-mingw#514541c9957ded860594146061738a060d3138e9 --set-default RUN C:\cygwin64\bin\bash.exe --login -c "rm -rf /cygdrive/c/opam/.opam/repo/default/.git" COPY [ "Dockerfile", "/Dockerfile.opam" ] 2024-10-09 19:34.34: Using cache hint "opam-windows-server-msvc-ltsc2022" 2024-10-09 19:34.34: Waiting for resource in pool OCluster 2024-10-09 19:34.34: Waiting for worker… 2024-10-09 19:35.02: Got resource from pool OCluster Building on ltsc2022-2 All commits already cached HEAD is now at 69dbd0eda Merge pull request #21 from dra27/changes-b530f3bbd2 ------------------------------------------------------------------------------- ROBOCOPY :: Robust File Copy for Windows ------------------------------------------------------------------------------- Started : Wednesday, October 9, 2024 7:36:20 PM Source : c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\ Dest : c:\state\tmp\build-context-65a030\.git\ Files : *.* Options : *.* /S /E /DCOPY:T /COPY:DATSO /R:0 /W:30 ------------------------------------------------------------------------------ New Dir 6 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\ New File 294 config 100% New File 73 description 100% New File 1804 FETCH_HEAD 100% New File 23 HEAD 100% New File 4.2 m index 11% 23% 34% 46% 58% 69% 81% 93% 100% New File 41 ORIG_HEAD 100% New Dir 14 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\hooks\ New File 478 applypatch-msg.sample 100% New File 896 commit-msg.sample 100% New File 4726 fsmonitor-watchman.sample 100% New File 189 post-update.sample 100% New File 424 pre-applypatch.sample 100% New File 1643 pre-commit.sample 100% New File 416 pre-merge-commit.sample 100% New File 1374 pre-push.sample 100% New File 4898 pre-rebase.sample 100% New File 544 pre-receive.sample 100% New File 1492 prepare-commit-msg.sample 100% New File 2783 push-to-checkout.sample 100% New File 2308 sendemail-validate.sample 100% New File 3650 update.sample 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\info\ New File 240 exclude 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\ New File 597 HEAD 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\ New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\heads\ New File 199 master 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\ New Dir 2 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\origin\ New File 212 opam2 100% New File 212 sunset 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\ New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\1\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\12\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\13\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\2\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\20\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\21\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\22\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\3\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\4\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\5\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\8\ New File 211 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\logs\refs\remotes\pull\9\ New File 211 head 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\objects\ New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\objects\info\ New Dir 3 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\objects\pack\ New File 5.9 m pack-42868d42456a61439583bebf3ced9018f132a94a.idx 8.4% 16.8% 25.3% 33.7% 42.1% 50.6% 59.0% 67.4% 75.9% 84.3% 92.7% 100% New File 33.3 m pack-42868d42456a61439583bebf3ced9018f132a94a.pack 2.9% 5.9% 8.9% 11.9% 14.9% 17.9% 20.9% 23.9% 26.9% 29.9% 32.9% 35.9% 38.9% 41.9% 44.9% 47.9% 50.9% 53.9% 56.9% 59.9% 62.9% 65.9% 68.9% 71.8% 74.8% 77.8% 80.8% 83.8% 86.8% 89.8% 92.8% 95.8% 98.8% 100% New File 887876 pack-42868d42456a61439583bebf3ced9018f132a94a.rev 29% 59% 88% 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\ New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\heads\ New File 41 master 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\ New Dir 2 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\origin\ New File 41 opam2 100% New File 41 sunset 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\ New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\1\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\12\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\13\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\2\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\20\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\21\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\22\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\3\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\4\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\5\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\8\ New File 41 head 100% New Dir 1 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\remotes\pull\9\ New File 41 head 100% New Dir 0 c:\state\git\opam-repository-mingw-d64a4139a4794ed226a9b4244a0353abaadb899b\.git\refs\tags\ ------------------------------------------------------------------------------ Total Copied Skipped Mismatch FAILED Extras Dirs : 42 42 0 0 0 0 Files : 55 55 0 0 0 0 Bytes : 44.48 m 44.48 m 0 0 0 0 Times : 0:00:00 0:00:00 0:00:00 0:00:00 Speed : 157,590,564 Bytes/sec. Speed : 9,017.404 MegaBytes/min. Ended : Wednesday, October 9, 2024 7:36:20 PM Sending build context to Docker daemon 134.6MB Step 1/58 : FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as winget-builder 10.0.20348.2762: Pulling from windows/server Digest: sha256:52d1fb3925811072bf5aaedc769b2b38c333d76efa9b87c0d6cfedd5ff06847a Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.2762 ---> 5915f06f3db3 Step 2/58 : USER ContainerAdministrator ---> Using cache ---> 64cbbe2fbef8 Step 3/58 : ADD [ "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle", "C:\\TEMP\\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip" ] ---> Using cache ---> e8ef2595e1d2 Step 4/58 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.zip -DestinationPath C:\TEMP\winget-cli -Force" ---> Running in bf15daa43451 Removing intermediate container bf15daa43451 ---> f6175adb0491 Step 5/58 : RUN ren C:\TEMP\winget-cli\AppInstaller_x64.msix AppInstaller_x64.zip ---> Running in 3aaada9604ff Removing intermediate container 3aaada9604ff ---> 84d970e37567 Step 6/58 : RUN powershell -Command "Expand-Archive -LiteralPath C:\TEMP\winget-cli\AppInstaller_x64.zip -DestinationPath C:\TEMP\winget-cli\ -Force" ---> Running in c0a186b05496 Removing intermediate container c0a186b05496 ---> 1896eced6f9f Step 7/58 : RUN mkdir "C:\Program Files\winget-cli" && move "C:\TEMP\winget-cli\\winget.exe" "C:\Program Files\winget-cli\" && move "C:\TEMP\winget-cli\\WindowsPackageManager.dll" "C:\Program Files\winget-cli\" && move "C:\TEMP\winget-cli\\resources.pri" "C:\Program Files\winget-cli\" ---> Running in 750a928c8eb2 1 file(s) moved. 1 file(s) moved. 1 file(s) moved. Removing intermediate container 750a928c8eb2 ---> 48f84c1a3fc0 Step 8/58 : FROM mcr.microsoft.com/windows/server:10.0.20348.2762 as cygwin-msvc 10.0.20348.2762: Pulling from windows/server Digest: sha256:52d1fb3925811072bf5aaedc769b2b38c333d76efa9b87c0d6cfedd5ff06847a Status: Image is up to date for mcr.microsoft.com/windows/server:10.0.20348.2762 ---> 5915f06f3db3 Step 9/58 : USER ContainerAdministrator ---> Using cache ---> 64cbbe2fbef8 Step 10/58 : RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "\\$"') do for /f "delims=" %l in ('cmd /v:on /c "set v=%c&& echo !v:~0,-1!"') do reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "%l" ---> Using cache ---> c11350199338 Step 11/58 : ADD [ "https://raw.githubusercontent.com/ocurrent/ocaml-dockerfile/master/src-opam/Install.cmd", "C:\\TEMP\\" ] ---> c9f80f1e343b Step 12/58 : ADD [ "https://aka.ms/vscollect.exe", "C:\\TEMP\\collect.exe" ] ---> 16cf76d270f1 Step 13/58 : ADD [ "https://aka.ms/vs/17/release/channel", "C:\\TEMP\\VisualStudio.chman" ] ---> 3bdf64636b91 Step 14/58 : RUN curl -SL --output C:\TEMP\vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe && (call C:\TEMP\Install.cmd C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache install --installPath "%ProgramFiles(x86)%\Microsoft Visual Studio\2022\BuildTools" --channelUri C:\TEMP\VisualStudio.chman --installChannelUri C:\TEMP\VisualStudio.chman --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.18362 --remove Microsoft.VisualStudio.Component.Windows10SDK.10240 --remove Microsoft.VisualStudio.Component.Windows10SDK.10586 --remove Microsoft.VisualStudio.Component.Windows10SDK.14393 --remove Microsoft.VisualStudio.Component.Windows81SDK) && del /q C:\TEMP\vs_buildtools.exe ---> Running in 08a6a1a2bd9c % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0 100 4323k 100 4323k 0 0 390k 0 0:00:11 0:00:11 --:--:-- 390k Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\2052\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1028\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1029\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1033\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1046\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1055\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1045\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1042\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1040\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\3082\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1031\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1036\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1041\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\HelpFile\1049\help.html... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\vs_setup_bootstrapper.exe... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.C2RSignatureReader.Interop.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.C2RSignatureReader.Native.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.Identity.Client.Broker.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.Identity.Client.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.Identity.Client.Extensions.Msal.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.Identity.Client.NativeInterop.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.IdentityModel.Abstractions.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.VisualStudio.RemoteControl.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.Common.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.VisualStudio.Setup.Download.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.VisualStudio.Telemetry.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Microsoft.VisualStudio.Utilities.Internal.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\runtimes\win-x64\native\msalruntime.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\runtimes\win-arm64\native\msalruntime_arm64.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\runtimes\win-x86\native\msalruntime_x86.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\Newtonsoft.Json.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\System.Memory.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\System.Runtime.CompilerServices.Unsafe.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\VSInstallerElevationService.Contracts.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\pt-BR\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\fr\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\pl\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\zh-Hans\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\es\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\tr\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\de\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\it\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\zh-Hant\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\ko\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\ru\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\cs\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\ja\vs_setup_bootstrapper.resources.dll... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\vs_setup_bootstrapper.config... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\vs_setup_bootstrapper.exe.config... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\detection.json... Preparing: C:\Users\ContainerAdministrator\AppData\Local\Temp\e6a735c22ea9cd5644f658c3883cb3\vs_bootstrapper_d15\vs_setup_bootstrapper.json... Removing intermediate container 08a6a1a2bd9c ---> 84349467d5de Step 15/58 : ENV CYGWIN="nodosfilewarning winsymlinks:native" ---> Running in cf825c4c31ed Removing intermediate container cf825c4c31ed ---> 6b8cb65e7e30 Step 16/58 : RUN for /f "tokens=1,2,*" %a in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path ^| findstr /r "^[^H]"') do reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\cygwin64\bin;%c" ---> Running in 9129a02b958d C:\>reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /V Path /t REG_EXPAND_SZ /f /d "C:\cygwin64\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH" The operation completed successfully. Removing intermediate container 9129a02b958d ---> 7be0ab590de7 Step 17/58 : ADD [ "https://www.cygwin.com/setup-x86_64.exe", "C:\\cygwin64\\setup-x86_64.exe" ] ---> 55989da739f3 Step 18/58 : RUN mkdir C:\cygwin64\lib\cygsympathy && mkdir C:\cygwin64\etc\postinstall ---> Running in d55ba8b8385a Removing intermediate container d55ba8b8385a ---> 5c6d9cb04312 Step 19/58 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.cmd", "C:\\cygwin64\\lib\\cygsympathy\\" ] ---> 01086a4598e5 Step 20/58 : ADD [ "https://raw.githubusercontent.com/metastack/cygsympathy/master/cygsympathy.sh", "C:\\cygwin64\\lib\\cygsympathy\\cygsympathy" ] ---> a12b32d2d1fd Step 21/58 : RUN mklink C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh C:\cygwin64\lib\cygsympathy\cygsympathy ---> Running in 470edae0f882 symbolic link created for C:\cygwin64\etc\postinstall\zp_zcygsympathy.sh <<===>> C:\cygwin64\lib\cygsympathy\cygsympathy Removing intermediate container 470edae0f882 ---> 6dde25297231 Step 22/58 : RUN C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --only-site --local-package-dir C:\TEMP\cache --root C:\cygwin64 --site https://mirrors.kernel.org/sourceware/cygwin/ --symlink-type=native --packages diffutils,git,make,patch && powershell -Command "Remove-Item 'C:\TEMP' -Recurse" ---> Running in 36f81eff8c29 Starting cygwin install, version 2.932 User has backup/restore rights User has symlink creation right io_stream_cygfile: fopen(/etc/setup/setup.rc) failed 2 No such file or directory Current Directory: C:\TEMP\cache root: C:\cygwin64 system Changing gid to Administrators Selected local directory: C:\TEMP\cache net: Preconfig site: https://mirrors.kernel.org/sourceware/cygwin/ io_stream_cygfile: fopen(/etc/setup/timestamp) failed 2 No such file or directory io_stream_cygfile: fopen(/etc/setup/installed.db) failed 2 No such file or directory solving: 41 tasks, update: no, use test packages: no solving: 119 tasks, update: no, use test packages: no Augmented Transaction List: 0 install libgsasl-common 2.2.1-1 1 install libpopt-common 1.19-1 2 install publicsuffix-list-dafsa 20240906-1 3 install terminfo 6.5+20240427-1 4 install tzdata 2024b-1 5 install cygwin 3.5.4-1 6 install libiconv2 1.17-1 7 install libintl8 0.22.5-1 8 install libncursesw10 6.5+20240427-1 9 install libreadline7 8.2-2 10 install bash 5.2.21-1 11 install libgcc1 12.4.0-3 12 install crypto-policies 20190218-1 13 install base-cygwin 3.8-2 14 install libzstd1 1.5.6-1 15 install zlib0 1.3.1-1 16 install which 2.20-2 17 install vim-minimal 9.0.2155-2 18 install tzcode 2024b-1 19 install sed 4.9-1 20 install run 1.3.4-2 21 install ncurses 6.5+20240427-1 22 install mintty 3.7.6-1 23 install login 1.13-1 24 install libxxhash0 0.8.2-1 25 install libuuid1 2.39.3-2 26 install libunistring5 1.2-1 27 install libtasn1_6 4.14-1 28 install libstdc++6 12.4.0-3 29 install libsmartcols1 2.39.3-2 30 install libpopt0 1.19-1 31 install libpipeline1 1.5.6-1 32 install libpcre2_8_0 10.44-1 33 install libpcre1 8.45-1 34 install libntlm0 1.4-1 35 install libnghttp2_14 1.61.0-1 36 install liblzma5 5.6.3-1 37 install liblz4_1 1.9.4-1 38 install libkrb5support0 1.15.2-2 39 install libidn2_0 2.3.7-1 40 install libidn12 1.42-1 41 install libgpg-error0 1.50-2 42 install libgmp10 6.3.0-1 43 install libgdbm6 1.18.1-1 44 install libgc1 8.2.8-1 45 install libffi8 3.4.6-1 46 install libffi6 3.2.1-2 47 install libexpat1 2.6.2-1 48 install libedit0 20221030-4 49 install libcrypt2 4.4.20-1 50 install libcom_err2 1.44.5-1 51 install libbz2_1 1.0.8-1 52 install libbrotlicommon1 1.1.0-1 53 install libblkid1 2.39.3-2 54 install libattr1 2.5.1-1.20.g0981a7bfe487 55 install libargp 20230708-2 56 install ipc-utils 1.1-1 57 install hostname 3.13-1 58 install gzip 1.13-1 59 install gettext 0.22.5-1 60 install editrights 1.04-1 61 install diffutils 3.10-1 62 install dash 0.5.12-5 63 install cygrunsrv 1.64-1 64 install alternatives 1.26-1 65 install libuchardet0 0.0.8-1 66 install libdb5.3 5.3.28-2 67 install cygutils 1.4.17-1 68 install grep 3.11-1 69 install less 643-1 70 install xz 5.6.3-1 71 install zstd 1.5.6-1 72 install libk5crypto3 1.15.2-2 73 install libpsl5 0.21.5-1 74 install libgcrypt20 1.11.0-1 75 install libmpfr6 4.2.1-1 76 install libp11-kit0 0.23.20-1 77 install perl_base 5.40.0-1 78 install perl_autorebase 5.40.0-1 79 install libguile3.0_1 3.0.9-3 80 install file 5.44-1 81 install bzip2 1.0.8-1 82 install libbrotlidec1 1.1.0-1 83 install libfdisk1 2.39.3-2 84 install patch 2.7.6-17 85 install coreutils 9.0-1 86 install getent 2.18.90-5 87 install rebase 4.6.6-1 88 install info 7.1-2 89 install _autorebase 001091-1 90 install groff 1.23.0-1 91 install libkrb5_3 1.15.2-2 92 install gawk 5.3.0-1 93 install p11-kit-trust 0.23.20-1 94 install p11-kit 0.23.20-1 95 install perl-TermReadKey 2.38-5 96 install perl-Error 0.17029-4 97 install make 4.4.1-2 98 install tar 1.35-2 99 install util-linux 2.39.3-2 100 install findutils 4.10.0-1 101 install libgssapi_krb5_2 1.15.2-2 102 install csih 0.9.14-1 103 install ca-certificates 2024.2.69_v8.0.401-1 104 install man-db 2.13.0-1 105 install base-files 4.3-3 106 install libgsasl18 2.2.1-1 107 install libssl3 3.0.15-1 108 install libssl1.1 1.1.1w-1 109 install openssl 3.0.15-1 110 install libfido2 1.15.0-1 111 install rsync 3.3.0-1 112 install libssh2_1 1.11.0-1 113 install libsasl2_3 2.1.27-1 114 install openssh 9.8p1-1 115 install libopenldap2 2.6.8-1 116 install libopenldap2_4_2 2.6.8-1 117 install libcurl4 8.10.1-1 118 install git 2.45.1-1 Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gsasl/libgsasl-common/libgsasl-common-2.2.1-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/popt/libpopt-common/libpopt-common-1.19-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/publicsuffix-list/publicsuffix-list-dafsa/publicsuffix-list-dafsa-20240906-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ncurses/terminfo/terminfo-6.5+20240427-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/tzdata/tzdata-2024b-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cygwin/cygwin-3.5.4-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libiconv/libiconv2/libiconv2-1.17-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gettext/libintl8/libintl8-0.22.5-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ncurses/libncursesw10/libncursesw10-6.5+20240427-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/readline/libreadline7/libreadline7-8.2-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/bash/bash-5.2.21-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gcc/libgcc1/libgcc1-12.4.0-3.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/crypto-policies/crypto-policies-20190218-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/base-cygwin/base-cygwin-3.8-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/zstd/libzstd1/libzstd1-1.5.6-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/zlib/zlib0/zlib0-1.3.1-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/which/which-2.20-2.tar.bz2 Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/vim/vim-minimal/vim-minimal-9.0.2155-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/tzcode/tzcode-2024b-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/sed/sed-4.9-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/run/run-1.3.4-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ncurses/ncurses-6.5+20240427-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/mintty/mintty-3.7.6-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/login/login-1.13-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/xxhash/libxxhash0/libxxhash0-0.8.2-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libuuid1/libuuid1-2.39.3-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libunistring/libunistring5/libunistring5-1.2-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libtasn1/libtasn1_6/libtasn1_6-4.14-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gcc/libstdc++6/libstdc++6-12.4.0-3.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libsmartcols1/libsmartcols1-2.39.3-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/popt/libpopt0/libpopt0-1.19-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libpipeline/libpipeline1/libpipeline1-1.5.6-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/pcre2/libpcre2_8_0/libpcre2_8_0-10.44-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/pcre/libpcre1/libpcre1-8.45-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libntlm/libntlm0/libntlm0-1.4-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/nghttp2/libnghttp2_14/libnghttp2_14-1.61.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/xz/liblzma5/liblzma5-5.6.3-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/lz4/liblz4_1/liblz4_1-1.9.4-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libkrb5support0/libkrb5support0-1.15.2-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libidn2/libidn2_0/libidn2_0-2.3.7-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libidn/libidn12/libidn12-1.42-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libgpg-error/libgpg-error0/libgpg-error0-1.50-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gmp/libgmp10/libgmp10-6.3.0-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gdbm/libgdbm6/libgdbm6-1.18.1-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libgc/libgc1/libgc1-8.2.8-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libffi/libffi8/libffi8-3.4.6-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libffi/libffi6/libffi6-3.2.1-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/expat/libexpat1/libexpat1-2.6.2-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libedit/libedit0/libedit0-20221030-4.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libxcrypt/libcrypt2/libcrypt2-4.4.20-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/e2fsprogs/libcom_err2/libcom_err2-1.44.5-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/bzip2/libbz2_1/libbz2_1-1.0.8-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/brotli/libbrotlicommon1/libbrotlicommon1-1.1.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libblkid1/libblkid1-2.39.3-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/attr/libattr1/libattr1-2.5.1-1.20.g0981a7bfe487.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libargp/libargp-20230708-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ipc-utils/ipc-utils-1.1-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/hostname/hostname-3.13-1.tar.bz2 Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gzip/gzip-1.13-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gettext/gettext-0.22.5-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/editrights/editrights-1.04-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/diffutils/diffutils-3.10-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/dash/dash-0.5.12-5.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cygrunsrv/cygrunsrv-1.64-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/alternatives/alternatives-1.26-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/uchardet/libuchardet0/libuchardet0-0.0.8-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/db/libdb5.3/libdb5.3-5.3.28-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cygutils/cygutils-1.4.17-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/grep/grep-3.11-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/less/less-643-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/xz/xz-5.6.3-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/zstd/zstd-1.5.6-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libk5crypto3/libk5crypto3-1.15.2-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libpsl/libpsl5/libpsl5-0.21.5-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libgcrypt/libgcrypt20/libgcrypt20-1.11.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/mpfr/libmpfr6/libmpfr6-4.2.1-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/p11-kit/libp11-kit0/libp11-kit0-0.23.20-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/perl/perl_base/perl_base-5.40.0-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/perl/perl_autorebase/perl_autorebase-5.40.0-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/guile3.0/libguile3.0_1/libguile3.0_1-3.0.9-3.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/file/file-5.44-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/bzip2/bzip2-1.0.8-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/brotli/libbrotlidec1/libbrotlidec1-1.1.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libfdisk1/libfdisk1-2.39.3-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/patch/patch-2.7.6-17.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/coreutils/coreutils-9.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/getent/getent-2.18.90-5.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/rebase/rebase-4.6.6-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/texinfo/info/info-7.1-2.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/_autorebase/_autorebase-001091-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/groff/groff-1.23.0-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libkrb5_3/libkrb5_3-1.15.2-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gawk/gawk-5.3.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/p11-kit/p11-kit-trust/p11-kit-trust-0.23.20-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/p11-kit/p11-kit-0.23.20-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/perl-TermReadKey/perl-TermReadKey-2.38-5.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/perl-Error/perl-Error-0.17029-4.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/make/make-4.4.1-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/tar/tar-1.35-2.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/util-linux-2.39.3-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/findutils/findutils-4.10.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libgssapi_krb5_2/libgssapi_krb5_2-1.15.2-2.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/csih/csih-0.9.14-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/ca-certificates/ca-certificates-2024.2.69_v8.0.401-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/man-db/man-db-2.13.0-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/base-files/base-files-4.3-3.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gsasl/libgsasl18/libgsasl18-2.2.1-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssl/libssl3/libssl3-3.0.15-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssl/libssl1.1/libssl1.1-1.1.1w-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssl/openssl-3.0.15-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libfido2/libfido2-1.15.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/rsync/rsync-3.3.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libssh2/libssh2_1/libssh2_1-1.11.0-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cyrus-sasl/libsasl2_3/libsasl2_3-2.1.27-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssh/openssh-9.8p1-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openldap/libopenldap2/libopenldap2-2.6.8-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openldap/libopenldap2_4_2/libopenldap2_4_2-2.6.8-1.tar.zst Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/curl/libcurl4/libcurl4-8.10.1-1.tar.xz Downloaded C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/git/git-2.45.1-1.tar.xz Registry value set: HKEY_LOCAL_MACHINE\Software\Cygwin\setup\rootdir = "C:\cygwin64" Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gsasl/libgsasl-common/libgsasl-common-2.2.1-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/popt/libpopt-common/libpopt-common-1.19-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/publicsuffix-list/publicsuffix-list-dafsa/publicsuffix-list-dafsa-20240906-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ncurses/terminfo/terminfo-6.5+20240427-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/tzdata/tzdata-2024b-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cygwin/cygwin-3.5.4-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libiconv/libiconv2/libiconv2-1.17-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gettext/libintl8/libintl8-0.22.5-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ncurses/libncursesw10/libncursesw10-6.5+20240427-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/readline/libreadline7/libreadline7-8.2-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/bash/bash-5.2.21-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gcc/libgcc1/libgcc1-12.4.0-3.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/crypto-policies/crypto-policies-20190218-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/base-cygwin/base-cygwin-3.8-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/zstd/libzstd1/libzstd1-1.5.6-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/zlib/zlib0/zlib0-1.3.1-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/which/which-2.20-2.tar.bz2 Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/vim/vim-minimal/vim-minimal-9.0.2155-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/tzcode/tzcode-2024b-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/sed/sed-4.9-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/run/run-1.3.4-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ncurses/ncurses-6.5+20240427-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/mintty/mintty-3.7.6-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/login/login-1.13-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/xxhash/libxxhash0/libxxhash0-0.8.2-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libuuid1/libuuid1-2.39.3-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libunistring/libunistring5/libunistring5-1.2-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libtasn1/libtasn1_6/libtasn1_6-4.14-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gcc/libstdc++6/libstdc++6-12.4.0-3.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libsmartcols1/libsmartcols1-2.39.3-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/popt/libpopt0/libpopt0-1.19-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libpipeline/libpipeline1/libpipeline1-1.5.6-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/pcre2/libpcre2_8_0/libpcre2_8_0-10.44-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/pcre/libpcre1/libpcre1-8.45-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libntlm/libntlm0/libntlm0-1.4-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/nghttp2/libnghttp2_14/libnghttp2_14-1.61.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/xz/liblzma5/liblzma5-5.6.3-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/lz4/liblz4_1/liblz4_1-1.9.4-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libkrb5support0/libkrb5support0-1.15.2-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libidn2/libidn2_0/libidn2_0-2.3.7-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libidn/libidn12/libidn12-1.42-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libgpg-error/libgpg-error0/libgpg-error0-1.50-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gmp/libgmp10/libgmp10-6.3.0-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gdbm/libgdbm6/libgdbm6-1.18.1-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libgc/libgc1/libgc1-8.2.8-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libffi/libffi8/libffi8-3.4.6-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libffi/libffi6/libffi6-3.2.1-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/expat/libexpat1/libexpat1-2.6.2-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libedit/libedit0/libedit0-20221030-4.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libxcrypt/libcrypt2/libcrypt2-4.4.20-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/e2fsprogs/libcom_err2/libcom_err2-1.44.5-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/bzip2/libbz2_1/libbz2_1-1.0.8-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/brotli/libbrotlicommon1/libbrotlicommon1-1.1.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libblkid1/libblkid1-2.39.3-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/attr/libattr1/libattr1-2.5.1-1.20.g0981a7bfe487.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libargp/libargp-20230708-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/ipc-utils/ipc-utils-1.1-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/hostname/hostname-3.13-1.tar.bz2 Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gzip/gzip-1.13-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gettext/gettext-0.22.5-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/editrights/editrights-1.04-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/diffutils/diffutils-3.10-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/dash/dash-0.5.12-5.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cygrunsrv/cygrunsrv-1.64-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/alternatives/alternatives-1.26-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/uchardet/libuchardet0/libuchardet0-0.0.8-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/db/libdb5.3/libdb5.3-5.3.28-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cygutils/cygutils-1.4.17-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/grep/grep-3.11-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/less/less-643-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/xz/xz-5.6.3-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/zstd/zstd-1.5.6-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libk5crypto3/libk5crypto3-1.15.2-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libpsl/libpsl5/libpsl5-0.21.5-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libgcrypt/libgcrypt20/libgcrypt20-1.11.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/mpfr/libmpfr6/libmpfr6-4.2.1-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/p11-kit/libp11-kit0/libp11-kit0-0.23.20-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/perl/perl_base/perl_base-5.40.0-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/perl/perl_autorebase/perl_autorebase-5.40.0-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/guile3.0/libguile3.0_1/libguile3.0_1-3.0.9-3.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/file/file-5.44-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/bzip2/bzip2-1.0.8-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/brotli/libbrotlidec1/libbrotlidec1-1.1.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/libfdisk1/libfdisk1-2.39.3-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/patch/patch-2.7.6-17.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/coreutils/coreutils-9.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/getent/getent-2.18.90-5.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/rebase/rebase-4.6.6-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/texinfo/info/info-7.1-2.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/_autorebase/_autorebase-001091-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/groff/groff-1.23.0-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libkrb5_3/libkrb5_3-1.15.2-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gawk/gawk-5.3.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/p11-kit/p11-kit-trust/p11-kit-trust-0.23.20-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/p11-kit/p11-kit-0.23.20-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/perl-TermReadKey/perl-TermReadKey-2.38-5.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/perl-Error/perl-Error-0.17029-4.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/make/make-4.4.1-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/tar/tar-1.35-2.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/util-linux/util-linux-2.39.3-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/findutils/findutils-4.10.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/krb5/libgssapi_krb5_2/libgssapi_krb5_2-1.15.2-2.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/csih/csih-0.9.14-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/ca-certificates/ca-certificates-2024.2.69_v8.0.401-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/man-db/man-db-2.13.0-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/noarch/release/base-files/base-files-4.3-3.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/gsasl/libgsasl18/libgsasl18-2.2.1-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssl/libssl3/libssl3-3.0.15-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssl/libssl1.1/libssl1.1-1.1.1w-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssl/openssl-3.0.15-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libfido2/libfido2-1.15.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/rsync/rsync-3.3.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/libssh2/libssh2_1/libssh2_1-1.11.0-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/cyrus-sasl/libsasl2_3/libsasl2_3-2.1.27-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openssh/openssh-9.8p1-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openldap/libopenldap2/libopenldap2-2.6.8-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/openldap/libopenldap2_4_2/libopenldap2_4_2-2.6.8-1.tar.zst Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/curl/libcurl4/libcurl4-8.10.1-1.tar.xz Extracting from file://C:\TEMP\cache/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/git/git-2.45.1-1.tar.xz running: C:\cygwin64\bin\dash.exe "/etc/postinstall/0p_000_autorebase.dash" running: C:\cygwin64\bin\dash.exe "/etc/postinstall/0p_update-info-dir.dash" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/000-cygwin-post-install.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/coreutils.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/base-files-mketc.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/base-files-profile.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/p11-kit.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/ca-certificates.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/crypto-policies.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/openssl.sh" can't run /etc/postinstall/openssl.sh: No such file running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/libsasl2_3.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/openssh.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/man-db.sh" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/mintty.sh" running: C:\cygwin64\bin\dash.exe "/etc/postinstall/zp_man-db-update-index.dash" running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_zcygsympathy.sh" Ending cygwin install Removing intermediate container 36f81eff8c29 ---> 90b36dac9af2 Step 23/58 : ADD [ "https://github.com/metastack/msvs-tools/archive/refs/heads/master.tar.gz", "C:\\TEMP\\msvs-tools.tar.gz" ] ---> b5cca140ec46 Step 24/58 : RUN C:\cygwin64\bin\bash.exe --login -c "cd /tmp && tar -xf /cygdrive/c/TEMP/msvs-tools.tar.gz && cp msvs-tools-master/msvs-detect msvs-tools-master/msvs-promote-path /bin && rm -rf /cygdrive/c/TEMP/msvs-tools/*" ---> Running in 625e98d55b8b tzset: can't find matching POSIX timezone for Windows timezone "" Removing intermediate container 625e98d55b8b ---> 3731cb544778 Step 25/58 : RUN awk -i inplace "/(^#)|(^$)/{print;next}{$4=""noacl,""$4; print}" C:\cygwin64\etc\fstab ---> Running in 9e996a83e611 Removing intermediate container 9e996a83e611 ---> 6f46ec153d58 Step 26/58 : FROM cygwin-msvc as opam-builder ---> 6f46ec153d58 Step 27/58 : ENV HOME="C:\cygwin64\home\opam" ---> Running in 616f899159b3 Removing intermediate container 616f899159b3 ---> de595e27f402 Step 28/58 : RUN C:\cygwin64\bin\bash.exe --login -c "git config --global user.email 'docker@example.com' && git config --global user.name 'Docker' && git config --system core.longpaths true && git config --global --add safe.directory /tmp/opam-sources" ---> Running in 15c9c184e1a9 Copying skeleton files. These files are for the users to personalise their cygwin experience. They will never be overwritten nor automatically updated. './.bashrc' -> '/home/opam//.bashrc' './.bash_profile' -> '/home/opam//.bash_profile' './.inputrc' -> '/home/opam//.inputrc' './.profile' -> '/home/opam//.profile' tzset: can't find matching POSIX timezone for Windows timezone "" Removing intermediate container 15c9c184e1a9 ---> 19a56e7b84b2 Step 29/58 : RUN C:\cygwin64\bin\bash.exe --login -c "git clone https://github.com/ocaml/opam /tmp/opam && cd /tmp/opam && git checkout 787553cb90238021cd4d5a5af4a6468427caeb17 && make compiler OCAML_PORT=msvc64" ---> Running in 220c66a661db tzset: can't find matching POSIX timezone for Windows timezone "" Cloning into '/tmp/opam'... Note: switching to '787553cb90238021cd4d5a5af4a6468427caeb17'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c <new-branch-name> Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at 787553cb9 Merge pull request #6231 from RyanGibb/master env MAKE=make BOOTSTRAP_EXTRA_OPTS= BOOTSTRAP_TARGETS=world.opt BOOTSTRAP_ROOT=.. BOOTSTRAP_DIR=bootstrap ./shell/bootstrap-ocaml.sh msvc64 configure: Configuring OCaml version 4.14.2 checking build system type... x86_64-pc-cygwin checking host system type... x86_64-pc-windows checking target system type... x86_64-pc-windows checking for x86_64-pc-windows-ld... no checking for x86_64-pc-windows-link... no checking for ld... no checking for link... link configure: WARNING: using cross tools not prefixed with host triplet checking how to print strings... printf checking for x86_64-pc-windows-gcc... cl checking whether the C compiler works... yes checking for C compiler default output file name... conftest.exe checking for suffix of executables... .exe checking whether we are cross compiling... yes checking for suffix of object files... obj checking whether we are using the GNU C compiler... no checking whether cl accepts -g... yes checking for cl option to accept ISO C89... none needed checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for non-GNU ld... link checking if the linker (link) is GNU ld... no checking for BSD- or MS-compatible name lister (nm)... no checking for x86_64-pc-windows-dumpbin... no checking for x86_64-pc-windows-link... no checking for dumpbin... dumpbin checking the name lister (dumpbin -symbols -headers) interface... MS dumpbin checking whether ln -s works... yes checking the maximum length of command line arguments... 8192 checking how to convert x86_64-pc-cygwin file names to x86_64-pc-windows format... func_convert_file_noop checking how to convert x86_64-pc-cygwin file names to toolchain format... func_convert_file_noop checking for link option to reload object files... -r checking for x86_64-pc-windows-objdump... no checking for objdump... no checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL checking for x86_64-pc-windows-dlltool... no checking for dlltool... no checking how to associate runtime and link libraries... func_cygming_dll_for_implib_fallback checking for x86_64-pc-windows-ar... no checking for ar... no checking for archiver @FILE support... no checking for x86_64-pc-windows-strip... no checking for strip... no checking for x86_64-pc-windows-ranlib... no checking for ranlib... no checking for gawk... gawk checking command to parse dumpbin -symbols -headers output from cl object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for x86_64-pc-windows-mt... no checking for mt... mt checking if mt is a manifest tool... yes checking how to run the C preprocessor... cl -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... no checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... no checking for dlfcn.h... no checking for objdir... .libs checking for cl option to produce PIC... -DDLL_EXPORT -DPIC checking if cl PIC flag -DDLL_EXPORT -DPIC works... yes checking if cl static flag works... yes checking if cl supports -c -o file.obj... no checking if cl supports -c -o file.obj... (cached) no checking if we can lock with hard links... yes checking whether the cl linker (link) supports shared libraries... yes checking dynamic linker characteristics... cygpath: can't convert empty path cygpath: can't convert empty path Win32 link.exe checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for x86_64-pc-windows-gcc... no checking for x86_64-pc-windows-cc... no checking for x86_64-pc-windows-x86_64-w64-mingw32-gcc... no checking for x86_64-pc-windows-i686-w64-mingw32-gcc... no checking for gcc... no checking for cc... no checking for x86_64-w64-mingw32-gcc... no checking for i686-w64-mingw32-gcc... no checking C compiler vendor... msvc-1941 checking whether host executables can be run in the build... yes checking whether #! works in shell scripts... yes checking whether the C compiler supports -d2VolatileMetadata-... yes checking for flexdll sources... $(ROOTDIR)/flexdll checking for flexlink... no checking flexdll.h usability... yes checking flexdll.h presence... yes checking for flexdll.h... yes checking for a BSD-compatible install... /usr/bin/install -c checking for cos in -lm... yes checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking for unistd.h... (cached) no checking for stdint.h... (cached) yes checking for dirent.h... no checking for sys/select.h... no checking for off_t... yes checking size of int... 4 checking size of long... 4 checking size of long *... 8 checking size of short... 2 checking size of long long... 8 configure: Target is a 64 bits architecture checking whether byte ordering is bigendian... no checking alignment of double... 8 checking alignment of long... 4 checking alignment of long long... 8 checking whether the C compiler supports __attribute__((aligned(n)))... no checking whether the C compiler supports __attribute__((optimize("tree-vectorize")))... no checking for x86_64-pc-windows-ld... no checking for ld... no checking for rlwrap... no configure: checking semantics of signal handlers checking for sigaction... no checking for sigprocmask... no configure: assuming signals have the System V semantics. checking for expm1... yes checking for log1p... yes checking for hypot... yes checking for fma... yes checking for exp2... yes checking for log2... yes checking for cbrt... yes checking for acosh... yes checking for asinh... yes checking for atanh... yes checking for erf... yes checking for erfc... yes checking for trunc... yes checking for round... yes checking for copysign... yes checking whether round works... yes checking whether fma works... yes checking for getrusage... no checking for times... no checking for secure_getenv... no checking for __secure_getenv... no checking for issetugid... no checking for library containing socket... no checking for socketpair... no checking for socklen_t... yes checking for inet_aton... no checking for afunix.h... yes checking for struct sockaddr_in6... yes checking for getaddrinfo... no checking for rewinddir... no checking for lockf... no checking for mkfifo... no checking for getcwd... yes checking whether system is declared... yes checking for utimes... no checking for fchmod... no checking for truncate... no checking for select... no checking for nanosleep... no checking for symlink... no checking for realpath... no checking for waitpid... no checking for wait4... no checking for getgroups... no checking for setgroups... no checking for initgroups... no checking termios.h usability... no checking termios.h presence... no checking for termios.h... no checking for setitimer... no checking sys/utsname.h usability... no checking sys/utsname.h presence... no checking for sys/utsname.h... no checking for gettimeofday... no checking for mktime... yes checking for putenv... yes checking for setenv... no checking xlocale.h usability... no checking xlocale.h presence... no checking for xlocale.h... no configure: Dynamic loading of shared libraries is supported. checking sys/mman.h usability... no checking sys/mman.h presence... no checking for sys/mman.h... no checking for pwrite... no checking for struct stat.st_atim.tv_nsec... no configure: stat supports nanosecond precision checking how many arguments gethostbyname_r() takes... can't tell checking how many arguments gethostbyaddr_r() takes... can't tell checking for mkstemp... no checking for nice... no checking for dup3... no checking for pipe2... no checking for accept4... no checking for getauxval... no checking sys/shm.h usability... no checking sys/shm.h presence... no checking for sys/shm.h... no checking for execvpe... yes checking spawn.h usability... no checking spawn.h presence... no checking for spawn.h... no checking for ffs... no checking whether _BitScanForward is declared... yes configure: replay debugger supported checking whether stack overflows can be detected... no configure: the Win32 threads library is supported configure: not using frame pointers checking whether mmap supports huge pages... no assumed configure: No support for function sections on x86_64-pc-windows. configure: Disabling function sections. configure: creating ./config.status config.status: creating Makefile.build_config config.status: creating Makefile.config config.status: creating stdlib/sys.ml config.status: creating manual/src/version.tex config.status: creating manual/src/html_processing/src/common.ml config.status: creating tools/eventlog_metadata config.status: creating runtime/caml/m.h config.status: creating runtime/caml/s.h config.status: creating runtime/caml/version.h config.status: executing libtool commands make[1]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' make -C runtime sak.exe make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fosak.obj sak.c sak.c cl -nologo -O2 -Gy- -MD -d2VolatileMetadata- -Fesak.exe sak.obj /link /subsystem:console /ENTRY:wmainCRTStartup && (test ! -f sak.exe.manifest || mt -nologo -outputresource:sak.exe -manifest sak.exe.manifest && rm -f sak.exe.manifest) make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' make coldstart make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' make -C runtime ocamlruns.exe make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cp primitives.new primitives tr -d '\r' < caml/instruct.h | \ sed -e '/\/\*/d' \ -e '/^#/d' \ -e 's/enum /static char * names_of_/' \ -e 's/{$/[] = {/' \ -e 's/\([[:upper:]][[:upper:]_0-9]*\)/"\1"/g' > caml/opnames.h tr -d '\r' < caml/instruct.h | \ sed -n -e '/^ /s/ \([A-Z]\)/ \&\&lbl_\1/gp' \ -e '/^}/q' > caml/jumptbl.h echo '/* This file is generated from ../Makefile.config */' > build_config.h echo '#define OCAML_STDLIB_DIR L"C:/cygwin64/tmp/opam/bootstrap/ocaml/lib/ocaml"' >> build_config.h export LC_ALL=C; \ (echo '#include "caml/config.h"'; \ echo 'typedef intnat value;'; \ echo 'typedef value (*c_primitive)(void);'; \ echo; \ sed -e 's/.*/extern value &(void);/' primitives; \ echo; \ echo 'c_primitive caml_builtin_cprim[] = {'; \ sed -e 's/.*/ &,/' primitives; \ echo ' 0 };'; \ echo; \ echo 'char * caml_names_of_builtin_cprim[] = {'; \ sed -e 's/.*/ "&",/' primitives; \ echo ' 0 };') > prims.c echo '#define HOST "x86_64-pc-windows"' >> build_config.h cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fointerp.b.obj interp.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fomisc.b.obj misc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fostacks.b.obj stacks.c interp.c misc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fofix_code.b.obj fix_code.c stacks.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fostartup_aux.b.obj startup_aux.c fix_code.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fostartup_byt.b.obj startup_byt.c startup_aux.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fofreelist.b.obj freelist.c startup_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fomajor_gc.b.obj major_gc.c freelist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fominor_gc.b.obj minor_gc.c major_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fomemory.b.obj memory.c minor_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foalloc.b.obj alloc.c memory.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foroots_byt.b.obj roots_byt.c alloc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foglobroots.b.obj globroots.c roots_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fofail_byt.b.obj fail_byt.c globroots.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fosignals.b.obj signals.c fail_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fosignals_byt.b.obj signals_byt.c signals.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foprintexc.b.obj printexc.c signals_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fobacktrace_byt.b.obj backtrace_byt.c printexc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fobacktrace.b.obj backtrace.c backtrace_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Focompare.b.obj compare.c backtrace.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foints.b.obj ints.c compare.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foeventlog.b.obj eventlog.c ints.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fofloats.b.obj floats.c eventlog.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fostr.b.obj str.c floats.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foarray.b.obj array.c str.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foio.b.obj io.c array.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foextern.b.obj extern.c io.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fointern.b.obj intern.c extern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fohash.b.obj hash.c intern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fosys.b.obj sys.c hash.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fometa.b.obj meta.c sys.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foparsing.b.obj parsing.c meta.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fogc_ctrl.b.obj gc_ctrl.c parsing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fomd5.b.obj md5.c gc_ctrl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foobj.b.obj obj.c md5.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Folexing.b.obj lexing.c obj.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Focallback.b.obj callback.c lexing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fodebugger.b.obj debugger.c callback.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foweak.b.obj weak.c debugger.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Focompact.b.obj compact.c weak.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fofinalise.b.obj finalise.c compact.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Focustom.b.obj custom.c finalise.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fodynlink.b.obj dynlink.c custom.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foafl.b.obj afl.c dynlink.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DBUILDING_LIBCAMLRUNS -Fowin32_non_shared.b.obj win32.c afl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fobigarray.b.obj bigarray.c win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fomain.b.obj main.c bigarray.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fomemprof.b.obj memprof.c main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fodomain.b.obj domain.c memprof.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Foskiplist.b.obj skiplist.c domain.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Focodefrag.b.obj codefrag.c skiplist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= \ -Foprims.obj prims.c codefrag.c prims.c link -lib -nologo -machine:AMD64 /out:libcamlrun_non_shared.lib interp.b.obj misc.b.obj stacks.b.obj fix_code.b.obj startup_aux.b.obj startup_byt.b.obj freelist.b.obj major_gc.b.obj minor_gc.b.obj memory.b.obj alloc.b.obj roots_byt.b.obj globroots.b.obj fail_byt.b.obj signals.b.obj signals_byt.b.obj printexc.b.obj backtrace_byt.b.obj backtrace.b.obj compare.b.obj ints.b.obj eventlog.b.obj floats.b.obj str.b.obj array.b.obj io.b.obj extern.b.obj intern.b.obj hash.b.obj sys.b.obj meta.b.obj parsing.b.obj gc_ctrl.b.obj md5.b.obj obj.b.obj lexing.b.obj callback.b.obj debugger.b.obj weak.b.obj compact.b.obj finalise.b.obj custom.b.obj dynlink.b.obj afl.b.obj win32_non_shared.b.obj bigarray.b.obj main.b.obj memprof.b.obj domain.b.obj skiplist.b.obj codefrag.b.obj cl -nologo -O2 -Gy- -MD -d2VolatileMetadata- -Feocamlruns.exe prims.obj libcamlrun_non_shared.lib advapi32.lib ws2_32.lib version.lib /link /subsystem:console /ENTRY:wmainCRTStartup && (test ! -f ocamlruns.exe.manifest || mt -nologo -outputresource:ocamlruns.exe -manifest ocamlruns.exe.manifest && rm -f ocamlruns.exe.manifest) make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cp runtime/ocamlruns.exe boot/ocamlruns.exe make -C stdlib OCAMLRUN='$(ROOTDIR)/boot/ocamlruns.exe' \ CAMLC='$(BOOT_OCAMLC)' all make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/stdlib' ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime -DRUNTIME_NAME='"ocamlrun"' \ -Foheadernt.obj headernt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime -DRUNTIME_NAME='"ocamlrund"' \ -Foheaderntd.obj headernt.c headernt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime -DRUNTIME_NAME='"ocamlruni"' \ -Foheadernti.obj headernt.c headernt.c headernt.c ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 cl -nologo -O2 -Gy- -MD -d2VolatileMetadata- -Fetmpheader.exe headernt.obj /link /subsystem:console /ENTRY:wmainCRTStartup && (test ! -f tmpheader.exe.manifest || mt -nologo -outputresource:tmpheader.exe -manifest tmpheader.exe.manifest && rm -f tmpheader.exe.manifest) cl -nologo -O2 -Gy- -MD -d2VolatileMetadata- -Fetmpheaderd.exe headerntd.obj /link /subsystem:console /ENTRY:wmainCRTStartup && (test ! -f tmpheaderd.exe.manifest || mt -nologo -outputresource:tmpheaderd.exe -manifest tmpheaderd.exe.manifest && rm -f tmpheaderd.exe.manifest) cl -nologo -O2 -Gy- -MD -d2VolatileMetadata- -Fetmpheaderi.exe headernti.obj /link /subsystem:console /ENTRY:wmainCRTStartup && (test ! -f tmpheaderi.exe.manifest || mt -nologo -outputresource:tmpheaderi.exe -manifest tmpheaderi.exe.manifest && rm -f tmpheaderi.exe.manifest) ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 rm -f camlheader.exe mv tmpheader.exe camlheader ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Pervasives.cmo -c pervasives.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Either.cmi -c either.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Sys.cmi -c sys.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Nativeint.cmi -c nativeint.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int32.cmi -c int32.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Seq.cmi -c seq.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bool.cmi -c bool.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Char.cmi -c char.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Uchar.cmi -c uchar.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__List.cmi -c list.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int.cmi -c int.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bytes.cmi -c bytes.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__String.cmi -c string.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Unit.cmi -c unit.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Marshal.cmi -c marshal.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Array.cmi -c array.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Float.cmi -c float.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int32.cmo -c int32.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int64.cmi -c int64.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Nativeint.cmo -c nativeint.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lexing.cmi -c lexing.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Set.cmi -c set.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Map.cmi -c map.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stack.cmi -c stack.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Queue.cmi -c queue.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stream.cmi -c stream.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Buffer.cmi -c buffer.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Arg.cmi -c arg.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Atomic.cmi -c atomic.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Printexc.cmi -c printexc.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Fun.cmi -c fun.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Digest.cmi -c digest.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Random.cmi -c random.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Hashtbl.cmi -c hashtbl.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Format.cmi -c format.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Scanf.cmi -c scanf.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Callback.cmi -c callback.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Genlex.cmi -c genlex.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Ephemeron.cmi -c ephemeron.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Filename.cmi -c filename.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Complex.cmi -c complex.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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" \ -o stdlib__ArrayLabels.cmi -c arrayLabels.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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" \ -o stdlib__ListLabels.cmi -c listLabels.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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" \ -o stdlib__BytesLabels.cmi -c bytesLabels.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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" \ -o stdlib__StringLabels.cmi -c stringLabels.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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" \ -o stdlib__MoreLabels.cmi -c moreLabels.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bigarray.cmi -c bigarray.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__In_channel.cmi -c in_channel.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Out_channel.cmi -c out_channel.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 cp camlheader target_camlheader cp camlheader camlheader_ur rm -f camlheaderd.exe rm -f camlheaderi.exe mv tmpheaderd.exe camlheaderd mv tmpheaderi.exe camlheaderi ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Either.cmo -c either.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Sys.cmo -c sys.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Obj.cmi -c obj.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lazy.cmi -c lazy.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Option.cmi -c option.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Result.cmi -c result.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bool.cmo -c bool.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Char.cmo -c char.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Uchar.cmo -c uchar.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__List.cmo -c list.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int.cmo -c int.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bytes.cmo -c bytes.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__String.cmo -c string.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Unit.cmo -c unit.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Marshal.cmo -c marshal.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Array.cmo -c array.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Float.cmo -c float.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int64.cmo -c int64.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lexing.cmo -c lexing.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Parsing.cmi -c parsing.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Set.cmo -c set.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Map.cmo -c map.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stack.cmo -c stack.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Queue.cmo -c queue.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stream.cmo -c stream.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Buffer.cmo -c buffer.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Printf.cmi -c printf.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Atomic.cmo -c atomic.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Fun.cmo -c fun.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Gc.cmi -c gc.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Digest.cmo -c digest.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Random.cmo -c random.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Hashtbl.cmo -c hashtbl.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Weak.cmi -c weak.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Format.cmo -c format.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Scanf.cmo -c scanf.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Callback.cmo -c callback.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Genlex.cmo -c genlex.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Ephemeron.cmo -c ephemeron.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Filename.cmo -c filename.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Complex.cmo -c complex.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__ArrayLabels.cmo -c arrayLabels.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__ListLabels.cmo -c listLabels.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__BytesLabels.cmo -c bytesLabels.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__StringLabels.cmo -c stringLabels.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__MoreLabels.cmo -c moreLabels.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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" \ -o stdlib__StdLabels.cmi -c stdLabels.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bigarray.cmo -c bigarray.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__In_channel.cmo -c in_channel.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Out_channel.cmo -c out_channel.ml cp camlheaderd target_camlheaderd cp camlheaderi target_camlheaderi ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Obj.cmo -c obj.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lazy.cmo -c lazy.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Seq.cmo -c seq.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Option.cmo -c option.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Result.cmo -c result.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Parsing.cmo -c parsing.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Printf.cmo -c printf.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Arg.cmo -c arg.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Printexc.cmo -c printexc.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Gc.cmo -c gc.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Weak.cmo -c weak.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__Oo.cmi -c oo.mli ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 ../boot/ocamlruns.exe ../boot/ocamlc -strict-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 \ -o stdlib__StdLabels.cmo -c stdLabels.ml ../boot/ocamlruns.exe ../boot/ocamlc -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Oo.cmo -c oo.ml ../boot/ocamlruns.exe ../boot/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 rm headernt.obj headernti.obj headerntd.obj make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/stdlib' make -C flexdll MSVC_DETECT=0 OCAML_CONFIG_FILE=../Makefile.config CHAINS=msvc64 ROOTDIR=.. \ OCAMLRUN='$(ROOTDIR)/boot/ocamlruns.exe' NATDYNLINK=false \ OCAMLOPT='$(OCAMLRUN) $(ROOTDIR)/boot/ocamlc -use-prims ../runtime/primitives -nostdlib -I ../stdlib' \ flexlink.exe support make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/flexdll' echo "let version = \"0.43\"" > version.ml rm -f COMPILER-* echo "let mingw_prefix = \"i686-w64-mingw32-\"" >> version.ml rc version.rc touch COMPILER-41402 echo "let mingw64_prefix = \"x86_64-w64-mingw32-\"" >> version.ml cl.exe /nologo /MD -D_CRT_SECURE_NO_DEPRECATE /GS- /DMSVC /DMSVC64 -c /Fo"flexdll_msvc64.obj" flexdll.c Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 Copyright (C) Microsoft Corporation. All rights reserved. cl.exe /nologo /MD -D_CRT_SECURE_NO_DEPRECATE /GS- -c /Fo"flexdll_initer_msvc64.obj" flexdll_initer.c sed -e '/^401:\|^402:\|^403:\|^405:\|^406:\|^407:/d;s/^[0-9]*://' Compat.ml.in > Compat.ml flexdll.c flexdll_initer.c Building flexlink.exe with TOOLCHAIN=msvc for OCaml 4.14.2 rm -f flexlink.exe ../boot/ocamlruns.exe ../boot/ocamlc -use-prims ../runtime/primitives -nostdlib -I ../stdlib -o flexlink.exe -cclib "version.res" version.ml Compat.ml coff.ml cmdline.ml create_dll.ml reloc.ml make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/flexdll' mv flexdll/flexlink.exe boot/flexlink.byte.exe cp flexdll/flexdll_msvc64.obj flexdll/flexdll_initer_msvc64.obj boot/ make -C runtime FLEXLINK_CMD="../boot/ocamlruns.exe ../boot/flexlink.byte.exe" all make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' echo "C:/cygwin64/tmp/opam/bootstrap/ocaml/lib/ocaml/stublibs" > ld.conf echo "C:/cygwin64/tmp/opam/bootstrap/ocaml/lib/ocaml" >> ld.conf cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -Fowin32.b.obj win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fointerp.bd.obj interp.c win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fomisc.bd.obj misc.c interp.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fostacks.bd.obj stacks.c misc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fofix_code.bd.obj fix_code.c stacks.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fostartup_aux.bd.obj startup_aux.c fix_code.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fostartup_byt.bd.obj startup_byt.c startup_aux.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fofreelist.bd.obj freelist.c startup_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fomajor_gc.bd.obj major_gc.c freelist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fominor_gc.bd.obj minor_gc.c major_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fomemory.bd.obj memory.c minor_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foalloc.bd.obj alloc.c memory.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foroots_byt.bd.obj roots_byt.c alloc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foglobroots.bd.obj globroots.c roots_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fofail_byt.bd.obj fail_byt.c globroots.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fosignals.bd.obj signals.c fail_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fosignals_byt.bd.obj signals_byt.c signals.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foprintexc.bd.obj printexc.c signals_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fobacktrace_byt.bd.obj backtrace_byt.c printexc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fobacktrace.bd.obj backtrace.c backtrace_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Focompare.bd.obj compare.c backtrace.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foints.bd.obj ints.c compare.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foeventlog.bd.obj eventlog.c ints.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fofloats.bd.obj floats.c eventlog.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fostr.bd.obj str.c floats.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foarray.bd.obj array.c str.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foio.bd.obj io.c array.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foextern.bd.obj extern.c io.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fointern.bd.obj intern.c extern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fohash.bd.obj hash.c intern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fosys.bd.obj sys.c hash.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fometa.bd.obj meta.c sys.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foparsing.bd.obj parsing.c meta.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fogc_ctrl.bd.obj gc_ctrl.c parsing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fomd5.bd.obj md5.c gc_ctrl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foobj.bd.obj obj.c md5.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Folexing.bd.obj lexing.c obj.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Focallback.bd.obj callback.c lexing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fodebugger.bd.obj debugger.c callback.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foweak.bd.obj weak.c debugger.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Focompact.bd.obj compact.c weak.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fofinalise.bd.obj finalise.c compact.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Focustom.bd.obj custom.c finalise.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fodynlink.bd.obj dynlink.c custom.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foafl.bd.obj afl.c dynlink.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fowin32.bd.obj win32.c afl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fobigarray.bd.obj bigarray.c win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fomain.bd.obj main.c bigarray.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fomemprof.bd.obj memprof.c main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Fodomain.bd.obj domain.c memprof.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foskiplist.bd.obj skiplist.c domain.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Focodefrag.bd.obj codefrag.c skiplist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DDEBUG -Foinstrtrace.bd.obj instrtrace.c codefrag.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fointerp.bi.obj interp.c instrtrace.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fomisc.bi.obj misc.c interp.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fostacks.bi.obj stacks.c misc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fofix_code.bi.obj fix_code.c stacks.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fostartup_aux.bi.obj startup_aux.c fix_code.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fostartup_byt.bi.obj startup_byt.c startup_aux.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fofreelist.bi.obj freelist.c startup_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fomajor_gc.bi.obj major_gc.c freelist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fominor_gc.bi.obj minor_gc.c major_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fomemory.bi.obj memory.c minor_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foalloc.bi.obj alloc.c memory.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foroots_byt.bi.obj roots_byt.c alloc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foglobroots.bi.obj globroots.c roots_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fofail_byt.bi.obj fail_byt.c globroots.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fosignals.bi.obj signals.c fail_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fosignals_byt.bi.obj signals_byt.c signals.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foprintexc.bi.obj printexc.c signals_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fobacktrace_byt.bi.obj backtrace_byt.c printexc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fobacktrace.bi.obj backtrace.c backtrace_byt.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Focompare.bi.obj compare.c backtrace.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foints.bi.obj ints.c compare.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foeventlog.bi.obj eventlog.c ints.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fofloats.bi.obj floats.c eventlog.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fostr.bi.obj str.c floats.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foarray.bi.obj array.c str.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foio.bi.obj io.c array.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foextern.bi.obj extern.c io.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fointern.bi.obj intern.c extern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fohash.bi.obj hash.c intern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fosys.bi.obj sys.c hash.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fometa.bi.obj meta.c sys.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foparsing.bi.obj parsing.c meta.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fogc_ctrl.bi.obj gc_ctrl.c parsing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fomd5.bi.obj md5.c gc_ctrl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foobj.bi.obj obj.c md5.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Folexing.bi.obj lexing.c obj.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Focallback.bi.obj callback.c lexing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fodebugger.bi.obj debugger.c callback.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foweak.bi.obj weak.c debugger.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Focompact.bi.obj compact.c weak.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fofinalise.bi.obj finalise.c compact.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Focustom.bi.obj custom.c finalise.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fodynlink.bi.obj dynlink.c custom.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foafl.bi.obj afl.c dynlink.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fowin32.bi.obj win32.c afl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fobigarray.bi.obj bigarray.c win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fomain.bi.obj main.c bigarray.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fomemprof.bi.obj memprof.c main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Fodomain.bi.obj domain.c memprof.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Foskiplist.bi.obj skiplist.c domain.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DCAML_INSTR -Focodefrag.bi.obj codefrag.c skiplist.c link -lib -nologo -machine:AMD64 /out:libcamlrun.lib interp.b.obj misc.b.obj stacks.b.obj fix_code.b.obj startup_aux.b.obj startup_byt.b.obj freelist.b.obj major_gc.b.obj minor_gc.b.obj memory.b.obj alloc.b.obj roots_byt.b.obj globroots.b.obj fail_byt.b.obj signals.b.obj signals_byt.b.obj printexc.b.obj backtrace_byt.b.obj backtrace.b.obj compare.b.obj ints.b.obj eventlog.b.obj floats.b.obj str.b.obj array.b.obj io.b.obj extern.b.obj intern.b.obj hash.b.obj sys.b.obj meta.b.obj parsing.b.obj gc_ctrl.b.obj md5.b.obj obj.b.obj lexing.b.obj callback.b.obj debugger.b.obj weak.b.obj compact.b.obj finalise.b.obj custom.b.obj dynlink.b.obj afl.b.obj win32.b.obj bigarray.b.obj main.b.obj memprof.b.obj domain.b.obj skiplist.b.obj codefrag.b.obj codefrag.c link -lib -nologo -machine:AMD64 /out:libcamlrund.lib interp.bd.obj misc.bd.obj stacks.bd.obj fix_code.bd.obj startup_aux.bd.obj startup_byt.bd.obj freelist.bd.obj major_gc.bd.obj minor_gc.bd.obj memory.bd.obj alloc.bd.obj roots_byt.bd.obj globroots.bd.obj fail_byt.bd.obj signals.bd.obj signals_byt.bd.obj printexc.bd.obj backtrace_byt.bd.obj backtrace.bd.obj compare.bd.obj ints.bd.obj eventlog.bd.obj floats.bd.obj str.bd.obj array.bd.obj io.bd.obj extern.bd.obj intern.bd.obj hash.bd.obj sys.bd.obj meta.bd.obj parsing.bd.obj gc_ctrl.bd.obj md5.bd.obj obj.bd.obj lexing.bd.obj callback.bd.obj debugger.bd.obj weak.bd.obj compact.bd.obj finalise.bd.obj custom.bd.obj dynlink.bd.obj afl.bd.obj win32.bd.obj bigarray.bd.obj main.bd.obj memprof.bd.obj domain.bd.obj skiplist.bd.obj codefrag.bd.obj instrtrace.bd.obj link -lib -nologo -machine:AMD64 /out:libcamlruni.lib interp.bi.obj misc.bi.obj stacks.bi.obj fix_code.bi.obj startup_aux.bi.obj startup_byt.bi.obj freelist.bi.obj major_gc.bi.obj minor_gc.bi.obj memory.bi.obj alloc.bi.obj roots_byt.bi.obj globroots.bi.obj fail_byt.bi.obj signals.bi.obj signals_byt.bi.obj printexc.bi.obj backtrace_byt.bi.obj backtrace.bi.obj compare.bi.obj ints.bi.obj eventlog.bi.obj floats.bi.obj str.bi.obj array.bi.obj io.bi.obj extern.bi.obj intern.bi.obj hash.bi.obj sys.bi.obj meta.bi.obj parsing.bi.obj gc_ctrl.bi.obj md5.bi.obj obj.bi.obj lexing.bi.obj callback.bi.obj debugger.bi.obj weak.bi.obj compact.bi.obj finalise.bi.obj custom.bi.obj dynlink.bi.obj afl.bi.obj win32.bi.obj bigarray.bi.obj main.bi.obj memprof.bi.obj domain.bi.obj skiplist.bi.obj codefrag.bi.obj ../boot/ocamlruns.exe ../boot/flexlink.byte.exe -x64 -merge-manifest -stack 33554432 -exe -link "/ENTRY:wmainCRTStartup" -o ocamlrun.exe prims.obj libcamlrun.lib advapi32.lib ws2_32.lib version.lib ../boot/ocamlruns.exe ../boot/flexlink.byte.exe -x64 -merge-manifest -stack 33554432 -exe -link "/ENTRY:wmainCRTStartup" -o ocamlrund.exe prims.obj libcamlrund.lib advapi32.lib ws2_32.lib version.lib ../boot/ocamlruns.exe ../boot/flexlink.byte.exe -x64 -merge-manifest -stack 33554432 -exe -link "/ENTRY:wmainCRTStartup" -o ocamlruni.exe prims.obj libcamlruni.lib advapi32.lib ws2_32.lib version.lib make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cp runtime/ocamlrun.exe boot/ocamlrun.exe cd boot; rm -f stdlib.cma std_exit.cmo *.cmi camlheader cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot cd boot; cp ../runtime/libcamlrun.lib . make[2]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2' make opt.opt make[2]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' make checkstack make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' make[3]: Nothing to be done for 'checkstack'. make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2' make coreall make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' make -C runtime FLEXLINK_CMD="../boot/ocamlruns.exe ../boot/flexlink.byte.exe" all mkdir -p stdlib/flexdll make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cp flexdll/flexdll_msvc64.obj stdlib/flexdll/flexdll_msvc64.obj cp flexdll/flexdll_initer_msvc64.obj stdlib/flexdll/flexdll_initer_msvc64.obj make[4]: Nothing to be done for 'all'. make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cd stdlib; cp ../runtime/libcamlrun.lib . make ocamlc make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 make -C utils config.ml ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 make[5]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/utils' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 sed -e 's!%%AFL_INSTRUMENT%%!false!' \ -e 's!%%ARCH%%!amd64!' \ -e 's!%%ARCMD%%!!' \ -e 's!%%ASM%%!ml64 -nologo -Cp -c -Fo!' \ -e 's!%%ASM_CFI_SUPPORTED%%!false!' \ -e 's!%%BYTECCLIBS%%!advapi32.lib ws2_32.lib version.lib!' \ -e 's!%%CC%%!cl!' \ -e 's!%%CCOMPTYPE%%!msvc!' \ -e 's!%%OUTPUTOBJ%%!-Fo!' \ -e 's!%%EXT_ASM%%!.asm!' \ -e 's!%%EXT_DLL%%!.dll!' \ -e 's!%%EXE%%!.exe!' \ -e 's!%%EXT_LIB%%!.lib!' \ -e 's!%%EXT_OBJ%%!.obj!' \ -e 's!%%FLAMBDA%%!false!' \ -e 's!%%WITH_FLAMBDA_INVARIANTS%%!false!' \ -e 's!%%WITH_CMM_INVARIANTS%%!false!' \ -e 's!%%FLEXLINK_FLAGS%%!-x64 -merge-manifest -stack 33554432!' \ -e 's!%%FLEXDLL_DIR%%!"+flexdll"!' \ -e 's!%%HOST%%!x86_64-pc-windows!' \ -e 's!%%BINDIR%%!C:/cygwin64/tmp/opam/bootstrap/ocaml/bin!' \ -e 's!%%LIBDIR%%!C:/cygwin64/tmp/opam/bootstrap/ocaml/lib/ocaml!' \ -e 's!%%MKDLL%%!flexlink -x64 -merge-manifest -stack 33554432!' \ -e 's!%%MKEXE%%!flexlink -x64 -merge-manifest -stack 33554432 -exe -link \\"/ENTRY:wmainCRTStartup\\"!' \ -e 's!%%FLEXLINK_LDFLAGS%%! -link \\"/ENTRY:wmainCRTStartup\\"!' \ -e 's!%%FLEXLINK_DLL_LDFLAGS%%!!' \ -e 's!%%MKMAINDLL%%!flexlink -x64 -merge-manifest -stack 33554432 -maindll!' \ -e 's!%%MODEL%%!default!' \ -e 's!%%NATIVECCLIBS%%!advapi32.lib ws2_32.lib version.lib!' \ -e 's!%%OCAMLC_CFLAGS%%!-nologo -O2 -Gy- -MD !' \ -e 's!%%OCAMLC_CPPFLAGS%%!-D_CRT_SECURE_NO_DEPRECATE !' \ -e 's!%%OCAMLOPT_CFLAGS%%!-nologo -O2 -Gy- -MD !' \ -e 's!%%OCAMLOPT_CPPFLAGS%%!-D_CRT_SECURE_NO_DEPRECATE !' \ -e 's!%%PACKLD%%!link -lib -nologo -machine:AMD64 -out:!' \ -e 's!%%PROFINFO_WIDTH%%!0!' \ -e 's!%%RPATH%%!!' \ -e 's!%%MKSHAREDLIBRPATH%%!!' \ -e 's!%%FORCE_SAFE_STRING%%!true!' \ -e 's!%%DEFAULT_SAFE_STRING%%!true!' \ -e 's!%%WINDOWS_UNICODE%%!1!' \ -e 's!%%NAKED_POINTERS%%!true!' \ -e 's!%%SUPPORTS_SHARED_LIBRARIES%%!true!' \ -e 's!%%SYSTEM%%!win64!' \ -e 's!%%SYSTHREAD_SUPPORT%%!true!' \ -e 's!%%TARGET%%!x86_64-pc-windows!' \ -e 's!%%WITH_FRAME_POINTERS%%!false!' \ -e 's!%%WITH_PROFINFO%%!false!' \ -e 's!%%FLAT_FLOAT_ARRAY%%!true!' \ -e 's!%%FUNCTION_SECTIONS%%!false!' \ -e 's!%%CC_HAS_DEBUG_PREFIX_MAP%%!false!' \ -e 's!%%AS_HAS_DEBUG_PREFIX_MAP%%!false!' \ config.mlp > config.ml ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 make[5]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/utils' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 cl -nologo -EP -I runtime/caml utils/domainstate.ml.c > utils/domainstate.ml cl -nologo -EP -I runtime/caml utils/domainstate.mli.c > utils/domainstate.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 domainstate.ml.c cp boot/menhir/menhirLib.ml parsing/camlinternalMenhirLib.ml domainstate.mli.c echo '[@@@ocaml.warning "-67"]' > parsing/camlinternalMenhirLib.mli ./boot/ocamlrun.exe ./boot/ocamllex -q parsing/lexer.mll cat boot/menhir/menhirLib.mli >> parsing/camlinternalMenhirLib.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 lambda/generate_runtimedef.sh runtime/caml/fail.h runtime/primitives > lambda/runtimedef.ml ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 make -C tools make_opcodes ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 make[5]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/tools' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ../boot/ocamlrun.exe ../boot/ocamllex -q make_opcodes.mll ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ../boot/ocamlrun.exe ../boot/ocamlc -g -nostdlib -I ../boot -use-prims ../runtime/primitives -I .. make_opcodes.ml -o make_opcodes.exe ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 make[5]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/tools' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./runtime/ocamlrun.exe tools/make_opcodes.exe -opcodes < runtime/caml/instruct.h > bytecomp/opcodes.ml ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -i bytecomp/opcodes.ml > bytecomp/opcodes.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.ml > parsing/parser.ml sed "s/MenhirLib/CamlinternalMenhirLib/g" boot/menhir/parser.mli > parsing/parser.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -compat-32 -o ocamlc.exe compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma driver/main.cmo make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2' make ocamllex ocamltools library make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' make -C yacc FLEXLINK_CMD="../boot/ocamlruns.exe ../boot/flexlink.byte.exe" all make[5]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/yacc' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Fowstr.obj wstr.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Foclosure.obj closure.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 wstr.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Foerror.obj error.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 closure.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Folalr.obj lalr.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 error.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Folr0.obj lr0.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 lalr.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Fomain.obj main.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 lr0.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Fomkpar.obj mkpar.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Fooutput.obj output.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 mkpar.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Foreader.obj reader.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 output.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Foskeleton.obj skeleton.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 reader.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Fosymtab.obj symtab.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 skeleton.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Foverbose.obj verbose.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 symtab.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -I../runtime \ -Fowarshall.obj warshall.c verbose.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 warshall.c ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlruns.exe ../boot/flexlink.byte.exe -x64 -merge-manifest -stack 33554432 -exe -link "/ENTRY:wmainCRTStartup" -o ocamlyacc.exe wstr.obj closure.obj error.obj lalr.obj lr0.obj main.obj mkpar.obj output.obj reader.obj skeleton.obj symtab.obj verbose.obj warshall.obj ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 make[5]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/yacc' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 make -C stdlib FLEXLINK_CMD="../boot/ocamlruns.exe ../boot/flexlink.byte.exe" all make -C lex all ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 make[5]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/stdlib' make[5]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/lex' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ../yacc/ocamlyacc.exe -v parser.mly ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ../boot/ocamlrun.exe ../boot/ocamllex -q lexer.mll ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../runtime/primitives -compat-32 -o ocamllex.exe cset.cmo syntax.cmo parser.cmo lexer.cmo table.cmo lexgen.cmo compact.cmo common.cmo output.cmo outputbis.cmo main.cmo ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 make[5]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/lex' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Pervasives.cmo -c pervasives.ml ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Either.cmi -c either.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Sys.cmi -c sys.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Nativeint.cmi -c nativeint.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int32.cmi -c int32.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Seq.cmi -c seq.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bool.cmi -c bool.mli ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I middle_end -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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Char.cmi -c char.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Uchar.cmi -c uchar.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__List.cmi -c list.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int.cmi -c int.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bytes.cmi -c bytes.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__String.cmi -c string.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Unit.cmi -c unit.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Marshal.cmi -c marshal.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Array.cmi -c array.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Float.cmi -c float.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int32.cmo -c int32.ml ./boot/ocamlrun.exe ./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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int64.cmi -c int64.mli make -C tools all ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Nativeint.cmo -c nativeint.ml make[5]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/tools' ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lexing.cmi -c lexing.mli ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Set.cmi -c set.mli ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Map.cmi -c map.mli ../boot/ocamlrun.exe ../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 ../runtime/ocamlrun.exe make_opcodes.exe -opnames < ../runtime/caml/instruct.h > opnames.ml ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stack.cmi -c stack.mli ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Queue.cmi -c queue.mli ../boot/ocamlrun.exe ../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.exe ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ocamldep.cmo ../boot/ocamlrun.exe ../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.exe ../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 ../boot/ocamlrun.exe ../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.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stream.cmi -c stream.mli ../boot/ocamlrun.exe ../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.exe ../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 ../boot/ocamlrun.exe ../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.exe ../utils/config.cmo ../utils/build_path_prefix_map.cmo ../utils/misc.cmo ocamlmklib.cmo ../boot/ocamlrun.exe ../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.exe ../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 ../boot/ocamlrun.exe ../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.exe ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ocamlcmt.cmo ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Buffer.cmi -c buffer.mli ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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.exe ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ../compilerlibs/ocamlmiddleend.cma objinfo.cmo ../boot/ocamlrun.exe ../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.exe ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma primreq.cmo ../boot/ocamlrun.exe ../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.exe ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma stripdebug.cmo ../boot/ocamlrun.exe ../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.exe ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma cmpbyt.cmo ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Arg.cmi -c arg.mli ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Atomic.cmi -c atomic.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Printexc.cmi -c printexc.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Fun.cmi -c fun.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Gc.cmi -c gc.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Digest.cmi -c digest.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Random.cmi -c random.mli ../boot/ocamlrun.exe ../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.exe ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma opnames.cmo dumpobj.cmo ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Hashtbl.cmi -c hashtbl.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Format.cmi -c format.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Scanf.cmi -c scanf.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Callback.cmi -c callback.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Genlex.cmi -c genlex.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Ephemeron.cmi -c ephemeron.mli make[5]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/tools' ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Filename.cmi -c filename.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Complex.cmi -c complex.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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" \ -o stdlib__ArrayLabels.cmi -c arrayLabels.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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" \ -o stdlib__ListLabels.cmi -c listLabels.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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" \ -o stdlib__BytesLabels.cmi -c bytesLabels.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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" \ -o stdlib__StringLabels.cmi -c stringLabels.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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" \ -o stdlib__MoreLabels.cmi -c moreLabels.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bigarray.cmi -c bigarray.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__In_channel.cmi -c in_channel.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Out_channel.cmi -c out_channel.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Either.cmo -c either.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Sys.cmo -c sys.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Obj.cmi -c obj.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lazy.cmi -c lazy.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Option.cmi -c option.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Result.cmi -c result.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bool.cmo -c bool.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Char.cmo -c char.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Uchar.cmo -c uchar.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__List.cmo -c list.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int.cmo -c int.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bytes.cmo -c bytes.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__String.cmo -c string.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Unit.cmo -c unit.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Marshal.cmo -c marshal.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Array.cmo -c array.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Float.cmo -c float.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Int64.cmo -c int64.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lexing.cmo -c lexing.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Parsing.cmi -c parsing.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Set.cmo -c set.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Map.cmo -c map.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stack.cmo -c stack.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Queue.cmo -c queue.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Stream.cmo -c stream.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Buffer.cmo -c buffer.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Printf.cmi -c printf.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Atomic.cmo -c atomic.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Fun.cmo -c fun.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Gc.cmo -c gc.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Digest.cmo -c digest.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Random.cmo -c random.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Hashtbl.cmo -c hashtbl.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Weak.cmi -c weak.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Format.cmo -c format.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Scanf.cmo -c scanf.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Callback.cmo -c callback.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Genlex.cmo -c genlex.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Ephemeron.cmo -c ephemeron.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Filename.cmo -c filename.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Complex.cmo -c complex.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__ArrayLabels.cmo -c arrayLabels.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__ListLabels.cmo -c listLabels.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__BytesLabels.cmo -c bytesLabels.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__StringLabels.cmo -c stringLabels.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__MoreLabels.cmo -c moreLabels.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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" \ -o stdlib__StdLabels.cmi -c stdLabels.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Bigarray.cmo -c bigarray.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__In_channel.cmo -c in_channel.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Out_channel.cmo -c out_channel.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Obj.cmo -c obj.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Lazy.cmo -c lazy.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Seq.cmo -c seq.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Option.cmo -c option.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Result.cmo -c result.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Parsing.cmo -c parsing.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Printf.cmo -c printf.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Arg.cmo -c arg.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Printexc.cmo -c printexc.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Weak.cmo -c weak.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__Oo.cmi -c oo.mli ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 ../boot/ocamlrun.exe ../ocamlc.exe -strict-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 \ -o stdlib__StdLabels.cmo -c stdLabels.ml ../boot/ocamlrun.exe ../ocamlc.exe -strict-sequence -absname -w +a-4-9-41-42-44-45-48-70 -g -warn-error +A -bin-annot -nostdlib -principal -safe-string -strict-formats \ -o stdlib__Oo.cmo -c oo.ml ../boot/ocamlrun.exe ../ocamlc.exe -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 make[5]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/stdlib' make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2' make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2' make ocaml make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -o expunge.exe compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma toplevel/expunge.cmo ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 cp toplevel/trace.cmi toplevel/trace.mli toplevel/byte cp toplevel/topmain.cmi toplevel/topmain.mli toplevel/byte ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 cp toplevel/topeval.cmi toplevel/topeval.mli toplevel/byte ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./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 ./boot/ocamlrun.exe ./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 ./boot/ocamlrun.exe expunge.exe ocaml.tmp ocaml.exe 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 rm ocaml.tmp make[3]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2' make opt-core make[3]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' make -C runtime FLEXLINK_CMD="../boot/ocamlruns.exe ../boot/flexlink.byte.exe" allopt make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fostartup_aux.n.obj startup_aux.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fostartup_nat.n.obj startup_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fomain.n.obj main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fofail_nat.n.obj fail_nat.c startup_nat.c startup_aux.c main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foroots_nat.n.obj roots_nat.c fail_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fosignals.n.obj signals.c roots_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fosignals_nat.n.obj signals_nat.c signals.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fomisc.n.obj misc.c signals_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fofreelist.n.obj freelist.c misc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fomajor_gc.n.obj major_gc.c freelist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fominor_gc.n.obj minor_gc.c major_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fomemory.n.obj memory.c minor_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foalloc.n.obj alloc.c memory.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Focompare.n.obj compare.c alloc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foints.n.obj ints.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fofloats.n.obj floats.c compare.c ints.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fostr.n.obj str.c floats.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foarray.n.obj array.c str.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foio.n.obj io.c array.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foextern.n.obj extern.c io.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fointern.n.obj intern.c extern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fohash.n.obj hash.c intern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fosys.n.obj sys.c hash.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foparsing.n.obj parsing.c sys.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fogc_ctrl.n.obj gc_ctrl.c parsing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foeventlog.n.obj eventlog.c gc_ctrl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fomd5.n.obj md5.c eventlog.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foobj.n.obj obj.c md5.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Folexing.n.obj lexing.c obj.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fowin32.n.obj win32.c lexing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foprintexc.n.obj printexc.c win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Focallback.n.obj callback.c printexc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foweak.n.obj weak.c callback.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Focompact.n.obj compact.c weak.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fofinalise.n.obj finalise.c compact.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Focustom.n.obj custom.c finalise.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foglobroots.n.obj globroots.c custom.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fobacktrace_nat.n.obj backtrace_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fobacktrace.n.obj backtrace.c globroots.c backtrace_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fodynlink_nat.n.obj dynlink_nat.c backtrace.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fodebugger.n.obj debugger.c dynlink_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fometa.n.obj meta.c debugger.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fodynlink.n.obj dynlink.c meta.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foclambda_checks.n.obj clambda_checks.c dynlink.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foafl.n.obj afl.c clambda_checks.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fobigarray.n.obj bigarray.c afl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fomemprof.n.obj memprof.c bigarray.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Fodomain.n.obj domain.c memprof.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Foskiplist.n.obj skiplist.c domain.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -Focodefrag.n.obj codefrag.c skiplist.c gawk -f ./gen_domain_state64_inc.awk caml/domain_state.tbl > domain_state64.inc codefrag.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fostartup_aux.nd.obj startup_aux.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fostartup_nat.nd.obj startup_nat.c startup_aux.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fomain.nd.obj main.c startup_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fofail_nat.nd.obj fail_nat.c main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foroots_nat.nd.obj roots_nat.c fail_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fosignals.nd.obj signals.c roots_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fosignals_nat.nd.obj signals_nat.c signals.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fomisc.nd.obj misc.c signals_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fofreelist.nd.obj freelist.c misc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fomajor_gc.nd.obj major_gc.c freelist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fominor_gc.nd.obj minor_gc.c major_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fomemory.nd.obj memory.c minor_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foalloc.nd.obj alloc.c memory.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Focompare.nd.obj compare.c alloc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foints.nd.obj ints.c compare.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fofloats.nd.obj floats.c ints.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fostr.nd.obj str.c floats.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foarray.nd.obj array.c str.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foio.nd.obj io.c array.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foextern.nd.obj extern.c io.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fointern.nd.obj intern.c extern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fohash.nd.obj hash.c intern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fosys.nd.obj sys.c hash.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foparsing.nd.obj parsing.c sys.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fogc_ctrl.nd.obj gc_ctrl.c parsing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foeventlog.nd.obj eventlog.c gc_ctrl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fomd5.nd.obj md5.c eventlog.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foobj.nd.obj obj.c md5.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Folexing.nd.obj lexing.c obj.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fowin32.nd.obj win32.c lexing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foprintexc.nd.obj printexc.c win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Focallback.nd.obj callback.c printexc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foweak.nd.obj weak.c callback.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Focompact.nd.obj compact.c weak.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fofinalise.nd.obj finalise.c compact.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Focustom.nd.obj custom.c finalise.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foglobroots.nd.obj globroots.c custom.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fobacktrace_nat.nd.obj backtrace_nat.c globroots.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fobacktrace.nd.obj backtrace.c backtrace_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fodynlink_nat.nd.obj dynlink_nat.c backtrace.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fodebugger.nd.obj debugger.c dynlink_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fometa.nd.obj meta.c debugger.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fodynlink.nd.obj dynlink.c meta.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foclambda_checks.nd.obj clambda_checks.c dynlink.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foafl.nd.obj afl.c clambda_checks.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fobigarray.nd.obj bigarray.c afl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fomemprof.nd.obj memprof.c bigarray.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Fodomain.nd.obj domain.c memprof.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Foskiplist.nd.obj skiplist.c domain.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DDEBUG -Focodefrag.nd.obj codefrag.c skiplist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fostartup_aux.ni.obj startup_aux.c codefrag.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fostartup_nat.ni.obj startup_nat.c startup_aux.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fomain.ni.obj main.c startup_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fofail_nat.ni.obj fail_nat.c main.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foroots_nat.ni.obj roots_nat.c fail_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fosignals.ni.obj signals.c roots_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fosignals_nat.ni.obj signals_nat.c signals.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fomisc.ni.obj misc.c signals_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fofreelist.ni.obj freelist.c misc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fomajor_gc.ni.obj major_gc.c freelist.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fominor_gc.ni.obj minor_gc.c major_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fomemory.ni.obj memory.c minor_gc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foalloc.ni.obj alloc.c memory.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Focompare.ni.obj compare.c alloc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foints.ni.obj ints.c compare.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fofloats.ni.obj floats.c ints.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fostr.ni.obj str.c floats.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foarray.ni.obj array.c str.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foio.ni.obj io.c array.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foextern.ni.obj extern.c io.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fointern.ni.obj intern.c extern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fohash.ni.obj hash.c intern.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fosys.ni.obj sys.c hash.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foparsing.ni.obj parsing.c sys.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fogc_ctrl.ni.obj gc_ctrl.c parsing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foeventlog.ni.obj eventlog.c gc_ctrl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fomd5.ni.obj md5.c eventlog.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foobj.ni.obj obj.c md5.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Folexing.ni.obj lexing.c obj.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fowin32.ni.obj win32.c lexing.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foprintexc.ni.obj printexc.c win32.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Focallback.ni.obj callback.c printexc.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foweak.ni.obj weak.c callback.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Focompact.ni.obj compact.c weak.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fofinalise.ni.obj finalise.c compact.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Focustom.ni.obj custom.c finalise.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foglobroots.ni.obj globroots.c custom.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fobacktrace_nat.ni.obj backtrace_nat.c globroots.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fobacktrace.ni.obj backtrace.c backtrace_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fodynlink_nat.ni.obj dynlink_nat.c backtrace.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fodebugger.ni.obj debugger.c dynlink_nat.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fometa.ni.obj meta.c debugger.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fodynlink.ni.obj dynlink.c meta.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foclambda_checks.ni.obj clambda_checks.c dynlink.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foafl.ni.obj afl.c clambda_checks.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fobigarray.ni.obj bigarray.c afl.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fomemprof.ni.obj memprof.c bigarray.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Fodomain.ni.obj domain.c memprof.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Foskiplist.ni.obj skiplist.c domain.c cl -c -nologo -O2 -Gy- -MD -d2VolatileMetadata- -D_CRT_SECURE_NO_DEPRECATE -I ../flexdll -DCAML_NAME_SPACE -DUNICODE -D_UNICODE -DWINDOWS_UNICODE=1 -DCAMLDLLIMPORT= -DNATIVE_CODE -DTARGET_amd64 -DSYS_win64 -DCAML_INSTR -Focodefrag.ni.obj codefrag.c skiplist.c ml64 -nologo -Cp -c -Foamd64nt.obj amd64nt.asm codefrag.c Assembling: amd64nt.asm link -lib -nologo -machine:AMD64 /out:libasmrun.lib startup_aux.n.obj startup_nat.n.obj main.n.obj fail_nat.n.obj roots_nat.n.obj signals.n.obj signals_nat.n.obj misc.n.obj freelist.n.obj major_gc.n.obj minor_gc.n.obj memory.n.obj alloc.n.obj compare.n.obj ints.n.obj floats.n.obj str.n.obj array.n.obj io.n.obj extern.n.obj intern.n.obj hash.n.obj sys.n.obj parsing.n.obj gc_ctrl.n.obj eventlog.n.obj md5.n.obj obj.n.obj lexing.n.obj win32.n.obj printexc.n.obj callback.n.obj weak.n.obj compact.n.obj finalise.n.obj custom.n.obj globroots.n.obj backtrace_nat.n.obj backtrace.n.obj dynlink_nat.n.obj debugger.n.obj meta.n.obj dynlink.n.obj clambda_checks.n.obj afl.n.obj bigarray.n.obj memprof.n.obj domain.n.obj skiplist.n.obj codefrag.n.obj amd64nt.obj link -lib -nologo -machine:AMD64 /out:libasmrund.lib startup_aux.nd.obj startup_nat.nd.obj main.nd.obj fail_nat.nd.obj roots_nat.nd.obj signals.nd.obj signals_nat.nd.obj misc.nd.obj freelist.nd.obj major_gc.nd.obj minor_gc.nd.obj memory.nd.obj alloc.nd.obj compare.nd.obj ints.nd.obj floats.nd.obj str.nd.obj array.nd.obj io.nd.obj extern.nd.obj intern.nd.obj hash.nd.obj sys.nd.obj parsing.nd.obj gc_ctrl.nd.obj eventlog.nd.obj md5.nd.obj obj.nd.obj lexing.nd.obj win32.nd.obj printexc.nd.obj callback.nd.obj weak.nd.obj compact.nd.obj finalise.nd.obj custom.nd.obj globroots.nd.obj backtrace_nat.nd.obj backtrace.nd.obj dynlink_nat.nd.obj debugger.nd.obj meta.nd.obj dynlink.nd.obj clambda_checks.nd.obj afl.nd.obj bigarray.nd.obj memprof.nd.obj domain.nd.obj skiplist.nd.obj codefrag.nd.obj amd64nt.obj link -lib -nologo -machine:AMD64 /out:libasmruni.lib startup_aux.ni.obj startup_nat.ni.obj main.ni.obj fail_nat.ni.obj roots_nat.ni.obj signals.ni.obj signals_nat.ni.obj misc.ni.obj freelist.ni.obj major_gc.ni.obj minor_gc.ni.obj memory.ni.obj alloc.ni.obj compare.ni.obj ints.ni.obj floats.ni.obj str.ni.obj array.ni.obj io.ni.obj extern.ni.obj intern.ni.obj hash.ni.obj sys.ni.obj parsing.ni.obj gc_ctrl.ni.obj eventlog.ni.obj md5.ni.obj obj.ni.obj lexing.ni.obj win32.ni.obj printexc.ni.obj callback.ni.obj weak.ni.obj compact.ni.obj finalise.ni.obj custom.ni.obj globroots.ni.obj backtrace_nat.ni.obj backtrace.ni.obj dynlink_nat.ni.obj debugger.ni.obj meta.ni.obj dynlink.ni.obj clambda_checks.ni.obj afl.ni.obj bigarray.ni.obj memprof.ni.obj domain.ni.obj skiplist.ni.obj codefrag.ni.obj amd64nt.obj make[4]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/runtime' cp runtime/libasmrun.lib stdlib/libasmrun.lib make ocamlopt make[4]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 cd asmcomp; cp amd64/arch.ml . ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 cd asmcomp; cp amd64/proc.ml . cd asmcomp; cp amd64/selection.ml . cd asmcomp; cp amd64/CSE.ml . ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 cd asmcomp; cp amd64/reload.ml . cd asmcomp; cp amd64/scheduling.ml . make -C tools cvt_emit ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 make[5]: Entering directory '/tmp/opam/bootstrap/ocaml-4.14.2/tools' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ../boot/ocamlrun.exe ../boot/ocamllex -q cvt_emit.mll ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ../boot/ocamlrun.exe ../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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ../boot/ocamlrun.exe ../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.exe cvt_emit.cmo ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 make[5]: Leaving directory '/tmp/opam/bootstrap/ocaml-4.14.2/tools' ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 echo \# 1 \"amd64/emit.mlp\" > asmcomp/emit.ml ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe tools/cvt_emit.exe < asmcomp/amd64/emit.mlp >> asmcomp/emit.ml \ || { rm -f asmcomp/emit.ml; exit 2; } ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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.ml -I asmcomp ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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.ml -I asmcomp ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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.ml -I asmcomp ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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.ml -I asmcomp ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 ./boot/ocamlrun.exe ./boot/ocamlc -g -nostdlib -I boot -use-prims runtime/primitives -strict-sequence -principal -absname -w +a-4-9-40-41-42-44-45-48-66-70 -warn-error +a -bin-annot -safe-string -strict-formats -I utils -I parsing -I typing -I bytecomp -I file_formats -I lambda -I 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 2024-10-09 20:10.32: Job failed: Disconnected: Switch turned off