(for PR #26864)

2024-11-13 14:03.23: New job: test mirage-console-xen-backend.4.0.0 with ocamlfind.1.9.7, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26864/head (1fe86a030d1aa680aac111c48a41dca97d43900a)
                              on debian-12-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/26864/head" && git reset --hard 1fe86a03
git fetch origin master
git merge --no-edit d4c6a480805e2a9eafb47afe89128b65244cbdac
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocamlfind.1.9.7 1.9.7
RUN opam reinstall ocamlfind.1.9.7; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocamlfind.1.9.7' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall mirage-console-xen-backend.4.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mirage-console-xen-backend.4.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test mirage-console-xen-backend.4.0.0) || true
RUN opam reinstall --with-test --verbose mirage-console-xen-backend.4.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'mirage-console-xen-backend.4.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2024-11-13 14:03.23: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3-ocamlfind.1.9.7-mirage-console-xen-backend.4.0.0-1fe86a030d1aa680aac111c48a41dca97d43900a"
2024-11-13 14:03.23: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 1000)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ocamlfind.1.9.7 1.9.7"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocamlfind.1.9.7;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocamlfind.1.9.7' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mirage-console-xen-backend.4.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mirage-console-xen-backend.4.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (network host)
      (shell "(opam reinstall --with-test mirage-console-xen-backend.4.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose mirage-console-xen-backend.4.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'mirage-console-xen-backend.4.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-11-13 14:03.23: Waiting for resource in pool OCluster
2024-11-13 17:03.18: Waiting for worker…
2024-11-13 17:04.58: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
Updating files:  55% (17981/32662)
Updating files:  56% (18291/32662)
Updating files:  57% (18618/32662)
Updating files:  58% (18944/32662)
Updating files:  59% (19271/32662)
Updating files:  60% (19598/32662)
Updating files:  61% (19924/32662)
Updating files:  62% (20251/32662)
Updating files:  63% (20578/32662)
Updating files:  64% (20904/32662)
Updating files:  65% (21231/32662)
Updating files:  66% (21557/32662)
Updating files:  67% (21884/32662)
Updating files:  68% (22211/32662)
Updating files:  69% (22537/32662)
Updating files:  70% (22864/32662)
Updating files:  71% (23191/32662)
Updating files:  72% (23517/32662)
Updating files:  73% (23844/32662)
Updating files:  74% (24170/32662)
Updating files:  75% (24497/32662)
Updating files:  76% (24824/32662)
Updating files:  77% (25150/32662)
Updating files:  78% (25477/32662)
Updating files:  79% (25803/32662)
Updating files:  80% (26130/32662)
Updating files:  81% (26457/32662)
Updating files:  82% (26783/32662)
Updating files:  83% (27110/32662)
Updating files:  84% (27437/32662)
Updating files:  85% (27763/32662)
Updating files:  86% (28090/32662)
Updating files:  87% (28416/32662)
Updating files:  88% (28743/32662)
Updating files:  89% (29070/32662)
Updating files:  90% (29396/32662)
Updating files:  91% (29723/32662)
Updating files:  92% (30050/32662)
Updating files:  93% (30376/32662)
Updating files:  94% (30703/32662)
Updating files:  95% (31029/32662)
Updating files:  96% (31356/32662)
Updating files:  97% (31683/32662)
Updating files:  98% (32009/32662)
Updating files:  99% (32336/32662)
Updating files: 100% (32662/32662)
Updating files: 100% (32662/32662), done.
HEAD is now at d4c6a48080 Merge pull request #26854 from balat/opam-publish-ocsigen-toolkit.4.1.0
Merge made by the 'ort' strategy.
 packages/ocamlfind/ocamlfind.1.9.7/opam | 44 +++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 packages/ocamlfind/ocamlfind.1.9.7/opam

(from ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3' locally
docker.io/ocaml/opam@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3: Pulling from ocaml/opam
7a69ec65e8dc: Pulling fs layer
7a69ec65e8dc: Verifying Checksum
7a69ec65e8dc: Download complete
7a69ec65e8dc: Pull complete
Digest: sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3
Status: Downloaded newer image for ocaml/opam@sha256:03931233593b8433100f023bc0a49467bfcf5f4d74310a7b3f4504b32db4ddc3
2024-11-13 17:08.48 ---> using "7865c6821c42776ca70a19318cc19a6071e65fe0e7c3e659c00e7a03ce2b6d64" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-11-13 17:08.48 ---> using "ad3e9629360f3a2c8223d5886ac7195207ee1803fcb4aa7b290336801b8943d0" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [y/n] y
[NOTE] The 'jobs' option was reset, its value was 39 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-11-13 17:08.48 ---> using "a1480828f57ce587531365e53376a0f63d7958ebe9ac0f519aa1dec70633d5fb" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-122-generic
The OCaml toplevel, version 4.14.2
2.4.0~alpha1~dev
2024-11-13 17:08.48 ---> using "4b810995688cec25d712717079f5c0d0bea9418fcf6146699f0e15656c1f450c" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 1000)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2024-11-13 17:08.48 ---> using "b03bc4d602c48017fed87683a2f42534210f76d9d4239618ddee445f3c2c744c" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-11-13 17:08.50 ---> using "8376eea1500819381c6957535148b236d06f96a1c966cf70c1756c5e924d6e08" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-13 17:08.50 ---> using "cdf93fcdf4d21905426b1830e2b9d9392afca75e342c5970167d6fa37b42de23" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [204 kB]
- Fetched 307 kB in 0s (873 kB/s)
- Reading package lists...
2024-11-13 17:08.50 ---> using "d5a42b1adc5254f2ad81c2a8689df64e8f1d546280b55b3d1d01ac94bddf3aeb" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocamlfind.1.9.7 1.9.7"))
ocamlfind is now pinned to version 1.9.7
2024-11-13 17:08.50 ---> using "5bbf101f923e28e6142584c7552c417f6c3c91bd767fefdc02c264c262f8a027" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocamlfind.1.9.7;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocamlfind.1.9.7' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocamlfind.1.9.7 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install ocamlfind 1.9.7 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.7  (cached)
-> installed ocamlfind.1.9.7
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-13 17:08.50 ---> using "72cc581d8a90b904d6c5e369683fafbe8d811187160b071745aa753de520bc73" from cache

/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-11-13 17:08.50 ---> using "38932eedab7e9427581ff0ed4b4254b16caccb91e6c228e08c034f683188374e" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mirage-console-xen-backend.4.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'mirage-console-xen-backend.4.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mirage-console-xen-backend.4.0.0 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 47 packages
  - install base-bytes                 base    [required by ocplib-endian]
  - install bheap                      2.0.0   [required by mirage-xen]
  - install bigarray-compat            1.1.0   [required by cstruct]
  - install cmdliner                   1.3.0   [required by logs, mirage-runtime]
  - install conf-libseccomp            1       [required by solo5-bindings-xen]
  - install conf-pkg-config            2       [required by io-page, mirage-xen]
  - install cppo                       1.7.0   [required by lwt]
  - install csexp                      1.5.2   [required by dune-configurator]
  - install cstruct                    6.0.1   [required by mirage-console-xen-backend]
  - install domain-name                0.4.0   [required by ipaddr]
  - install dune                       3.16.1  [required by mirage-console-xen-backend]
  - install dune-configurator          3.16.1  [required by lwt]
  - install duration                   0.2.1   [required by mirage-xen]
  - install fmt                        0.9.0   [required by mirage-xen]
  - install io-page                    3.0.0   [required by mirage-console-xen-backend]
  - install ipaddr                     5.6.0   [required by mirage-runtime]
  - install logs                       0.7.0   [required by mirage-xen]
  - install lwt                        5.8.0   [required by mirage-console-xen-backend]
  - install lwt-dllist                 1.0.1   [required by mirage-xen]
  - install macaddr                    5.6.0   [required by ipaddr]
  - install mirage-console             4.0.0   [required by mirage-console-xen-backend]
  - install mirage-console-xen-backend 4.0.0
  - install mirage-console-xen-proto   4.0.0   [required by mirage-console-xen-backend]
  - install mirage-device              2.0.0   [required by mirage-console]
  - install mirage-flow                3.0.0   [required by mirage-console]
  - install mirage-profile             0.9.1   [required by mirage-xen]
  - install mirage-runtime             4.8.1   [required by mirage-xen]
  - install mirage-xen                 6.0.1   [required by mirage-console-xen-backend]
  - install num                        1.5-1   [required by sexplib]
  - install ocaml-compiler-libs        v0.12.4 [required by ppxlib]
  - install ocaml-freestanding         0.6.7   [required by io-page, mirage-xen]
  - install ocaml-src                  4.14.2  [required by ocaml-freestanding]
  - install ocamlbuild                 0.15.0  [required by rresult, logs]
  - install ocplib-endian              1.2     [required by lwt]
  - install parsexp                    v0.16.0 [required by sexplib]
  - install ppx_cstruct                6.0.1   [required by mirage-profile]
  - install ppx_derivers               1.2.1   [required by ppxlib]
  - install ppxlib                     0.33.0  [required by ppx_cstruct]
  - install rresult                    0.7.0   [required by mirage-console-xen-proto]
  - install sexplib                    v0.16.0 [required by ppx_cstruct]
  - install sexplib0                   v0.16.0 [required by ppxlib, sexplib]
  - install shared-memory-ring         3.2.1   [required by shared-memory-ring-lwt]
  - install shared-memory-ring-lwt     3.2.1   [required by mirage-console-xen-backend]
  - install solo5-bindings-xen         0.6.9   [required by mirage-xen]
  - install stdlib-shims               0.3.0   [required by ppx_cstruct]
  - install topkg                      1.0.7   [required by rresult, logs]
  - install xenstore                   2.3.0   [required by mirage-console-xen-backend]

The following system packages will first need to be installed:
    libseccomp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libseccomp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18745 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package libseccomp-dev:amd64.
- Preparing to unpack .../libseccomp-dev_2.5.4-1+deb12u1_amd64.deb ...
- Unpacking libseccomp-dev:amd64 (2.5.4-1+deb12u1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libseccomp-dev:amd64 (2.5.4-1+deb12u1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed base-bytes.base
-> retrieved bheap.2.0.0  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cppo.1.7.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.0.1, ppx_cstruct.6.0.1  (cached)
-> installed conf-pkg-config.2
-> retrieved domain-name.0.4.0  (cached)
-> installed conf-libseccomp.1
-> retrieved dune.3.16.1, dune-configurator.3.16.1  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved io-page.3.0.0  (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt.5.8.0  (cached)
-> retrieved lwt-dllist.1.0.1  (cached)
-> retrieved mirage-console.4.0.0, mirage-console-xen-backend.4.0.0, mirage-console-xen-proto.4.0.0  (cached)
-> installed cmdliner.1.3.0
-> retrieved mirage-device.2.0.0  (cached)
-> retrieved mirage-flow.3.0.0  (cached)
-> retrieved mirage-profile.0.9.1  (cached)
-> retrieved mirage-runtime.4.8.1  (cached)
-> retrieved mirage-xen.6.0.1  (cached)
-> retrieved num.1.5-1  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-freestanding.0.6.7  (cached)
-> retrieved ocaml-src.4.14.2  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.33.0  (cached)
-> installed ocaml-src.4.14.2
-> installed num.1.5-1
-> retrieved rresult.0.7.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved shared-memory-ring.3.2.1, shared-memory-ring-lwt.3.2.1  (cached)
-> retrieved solo5-bindings-xen.0.6.9  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved xenstore.2.3.0  (cached)
-> installed ocamlbuild.0.15.0
[ERROR] The compilation of solo5-bindings-xen.0.6.9 failed at "make V=1 CONFIG_HVT= CONFIG_SPT= CONFIG_VIRTIO= CONFIG_MUEN= CONFIG_GENODE=".
-> installed topkg.1.0.7
-> installed rresult.0.7.0
-> installed fmt.0.9.0
-> installed dune.3.16.1
-> installed bheap.2.0.0
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed cppo.1.7.0
-> installed domain-name.0.4.0
-> installed duration.0.2.1
-> installed lwt-dllist.1.0.1
-> installed macaddr.5.6.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ppx_derivers.1.2.1
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed ocplib-endian.1.2
-> installed cstruct.6.0.1
-> installed ipaddr.5.6.0
-> installed shared-memory-ring.3.2.1
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.16.1
-> installed sexplib.v0.16.0
-> installed lwt.5.8.0
-> installed mirage-device.2.0.0
-> installed shared-memory-ring-lwt.3.2.1
-> installed mirage-flow.3.0.0
-> installed mirage-console.4.0.0
-> installed xenstore.2.3.0
-> installed mirage-console-xen-proto.4.0.0
-> installed logs.0.7.0
-> installed mirage-runtime.4.8.1
-> installed ppxlib.0.33.0
-> installed ppx_cstruct.6.0.1
-> installed mirage-profile.0.9.1

#=== ERROR while compiling solo5-bindings-xen.0.6.9 ===========================#
# context              2.4.0~alpha1~dev | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path                 ~/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9
# command              ~/.opam/opam-init/hooks/sandbox.sh build make V=1 CONFIG_HVT= CONFIG_SPT= CONFIG_VIRTIO= CONFIG_MUEN= CONFIG_GENODE=
# exit-code            2
# env-file             ~/.opam/log/solo5-bindings-xen-7-1ebdce.env
# output-file          ~/.opam/log/solo5-bindings-xen-7-1ebdce.out
### output ###
# GEN include/solo5/solo5_version.h
# scripts/gen_version_h.sh include/solo5/solo5_version.h
# MAKE bindings
# make -C bindings  
# make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings'
# AS xen/boot.o
# cc -MT xen/boot.o -MMD -MP -MF xen/boot.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -DASM_FILE -c xen/boot.S -o xen/boot.o
# mv -f xen/boot.Td xen/boot.d && touch xen/boot.o
# CC xen/start.o
# cc -MT xen/start.o -MMD -MP -MF xen/start.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/start.c -o xen/start.o
# mv -f xen/start.Td xen/start.d && touch xen/start.o
# CC abort.o
# cc -MT abort.o -MMD -MP -MF abort.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c abort.c -o abort.o
# mv -f abort.Td abort.d && touch abort.o
# CC cpu_x86_64.o
# cc -MT cpu_x86_64.o -MMD -MP -MF cpu_x86_64.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c cpu_x86_64.c -o cpu_x86_64.o
# mv -f cpu_x86_64.Td cpu_x86_64.d && touch cpu_x86_64.o
# AS cpu_vectors_x86_64.o
# cc -MT cpu_vectors_x86_64.o -MMD -MP -MF cpu_vectors_x86_64.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -DASM_FILE -c cpu_vectors_x86_64.S -o cpu_vectors_x86_64.o
# mv -f cpu_vectors_x86_64.Td cpu_vectors_x86_64.d && touch cpu_vectors_x86_64.o
# CC crt.o
# cc -MT crt.o -MMD -MP -MF crt.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c crt.c -o crt.o
# mv -f crt.Td crt.d && touch crt.o
# CC printf.o
# cc -MT printf.o -MMD -MP -MF printf.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c printf.c -o printf.o
# mv -f printf.Td printf.d && touch printf.o
# CC intr.o
# cc -MT intr.o -MMD -MP -MF intr.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c intr.c -o intr.o
# mv -f intr.Td intr.d && touch intr.o
# CC lib.o
# cc -MT lib.o -MMD -MP -MF lib.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c lib.c -o lib.o
# mv -f lib.Td lib.d && touch lib.o
# CC mem.o
# cc -MT mem.o -MMD -MP -MF mem.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c mem.c -o mem.o
# mv -f mem.Td mem.d && touch mem.o
# CC exit.o
# cc -MT exit.o -MMD -MP -MF exit.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c exit.c -o exit.o
# mv -f exit.Td exit.d && touch exit.o
# CC log.o
# cc -MT log.o -MMD -MP -MF log.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c log.c -o log.o
# mv -f log.Td log.d && touch log.o
# CC cmdline.o
# cc -MT cmdline.o -MMD -MP -MF cmdline.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c cmdline.c -o cmdline.o
# mv -f cmdline.Td cmdline.d && touch cmdline.o
# CC tls.o
# cc -MT tls.o -MMD -MP -MF tls.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c tls.c -o tls.o
# mv -f tls.Td tls.d && touch tls.o
# CC mft.o
# cc -MT mft.o -MMD -MP -MF mft.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c mft.c -o mft.o
# mv -f mft.Td mft.d && touch mft.o
# AS xen/hypercall_page.o
# cc -MT xen/hypercall_page.o -MMD -MP -MF xen/hypercall_page.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -DASM_FILE -c xen/hypercall_page.S -o xen/hypercall_page.o
# mv -f xen/hypercall_page.Td xen/hypercall_page.d && touch xen/hypercall_page.o
# CC xen/console.o
# cc -MT xen/console.o -MMD -MP -MF xen/console.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/console.c -o xen/console.o
# mv -f xen/console.Td xen/console.d && touch xen/console.o
# CC xen/platform.o
# cc -MT xen/platform.o -MMD -MP -MF xen/platform.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/platform.c -o xen/platform.o
# mv -f xen/platform.Td xen/platform.d && touch xen/platform.o
# CC xen/platform_intr.o
# cc -MT xen/platform_intr.o -MMD -MP -MF xen/platform_intr.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/platform_intr.c -o xen/platform_intr.o
# mv -f xen/platform_intr.Td xen/platform_intr.d && touch xen/platform_intr.o
# CC xen/evtchn.o
# cc -MT xen/evtchn.o -MMD -MP -MF xen/evtchn.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/evtchn.c -o xen/evtchn.o
# mv -f xen/evtchn.Td xen/evtchn.d && touch xen/evtchn.o
# CC xen/time.o
# cc -MT xen/time.o -MMD -MP -MF xen/time.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/time.c -o xen/time.o
# mv -f xen/time.Td xen/time.d && touch xen/time.o
# CC xen/pvclock.o
# cc -MT xen/pvclock.o -MMD -MP -MF xen/pvclock.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/pvclock.c -o xen/pvclock.o
# mv -f xen/pvclock.Td xen/pvclock.d && touch xen/pvclock.o
# CC xen/stubs.o
# cc -MT xen/stubs.o -MMD -MP -MF xen/stubs.Td -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -mno-sse -mno-mmx -mno-aes -mno-avx -mno-red-zone -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -D__SOLO5_BINDINGS__ -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/xen -c xen/stubs.c -o xen/stubs.o
# mv -f xen/stubs.Td xen/stubs.d && touch xen/stubs.o
# LD xen/solo5_xen.o
# ld -r -nostdlib -z max-page-size=0x1000 -static  xen/boot.o xen/start.o abort.o cpu_x86_64.o cpu_vectors_x86_64.o crt.o printf.o intr.o lib.o mem.o exit.o log.o cmdline.o tls.o mft.o xen/hypercall_page.o xen/console.o xen/platform.o xen/platform_intr.o xen/evtchn.o xen/time.o xen/pvclock.o xen/stubs.o -o xen/solo5_xen.o
# ld: warning: xen/hypercall_page.o: missing .note.GNU-stack section implies executable stack
# ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
# OBJCOPY xen/solo5_xen.o
# objcopy -w -G solo5_\* -G _start\* -G __stack_chk_guard -G __stack_chk_fail xen/solo5_xen.o xen/solo5_xen.o
# make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings'
# MAKE tenders
# make -C tenders  
# make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tenders'
# make[1]: Nothing to be done for 'all'.
# make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tenders'
# MAKE elftool
# make -C elftool  
# make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool'
# HOSTCC elftool.o
# cc -MT elftool.o -MMD -MP -MF elftool.Td -Wall -Werror -std=c11 -fstack-protector-strong -O2 -g -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c elftool.c -o elftool.o
# mv -f elftool.Td elftool.d && touch elftool.o
# HOSTLINK solo5-elftool
# cc  elftool.o  -o solo5-elftool
# make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool'
# MAKE tests
# make -C tests  
# make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests'
# MAKE test_blk
# make -C test_blk  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_blk'
# CC test_blk.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_blk.c -o test_blk.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_blk.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_blk.o manifest.o -o test_blk.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_blk.xl
# sed -e s/@@NAME@@/test_blk/ \
#     -e s/@@KERNEL@@/test_blk.xen/ \
#     ../config.xl.in >test_blk.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_blk'
# MAKE test_dumpcore
# make -C test_dumpcore  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_dumpcore'
# CC test_dumpcore.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_dumpcore.c -o test_dumpcore.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_dumpcore.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_dumpcore.o manifest.o -o test_dumpcore.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_dumpcore.xl
# sed -e s/@@NAME@@/test_dumpcore/ \
#     -e s/@@KERNEL@@/test_dumpcore.xen/ \
#     ../config.xl.in >test_dumpcore.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_dumpcore'
# MAKE test_exception
# make -C test_exception  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_exception'
# CC test_exception.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_exception.c -o test_exception.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_exception.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_exception.o manifest.o -o test_exception.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_exception.xl
# sed -e s/@@NAME@@/test_exception/ \
#     -e s/@@KERNEL@@/test_exception.xen/ \
#     ../config.xl.in >test_exception.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_exception'
# MAKE test_fpu
# make -C test_fpu  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_fpu'
# CC test_fpu.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_fpu.c -o test_fpu.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_fpu.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_fpu.o manifest.o -o test_fpu.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_fpu.xl
# sed -e s/@@NAME@@/test_fpu/ \
#     -e s/@@KERNEL@@/test_fpu.xen/ \
#     ../config.xl.in >test_fpu.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_fpu'
# MAKE test_globals
# make -C test_globals  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_globals'
# CC test_globals.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_globals.c -o test_globals.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_globals.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_globals.o manifest.o -o test_globals.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_globals.xl
# sed -e s/@@NAME@@/test_globals/ \
#     -e s/@@KERNEL@@/test_globals.xen/ \
#     ../config.xl.in >test_globals.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_globals'
# MAKE test_hello
# make -C test_hello  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_hello'
# CC test_hello.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_hello.c -o test_hello.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_hello.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_hello.o manifest.o -o test_hello.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_hello.xl
# sed -e s/@@NAME@@/test_hello/ \
#     -e s/@@KERNEL@@/test_hello.xen/ \
#     ../config.xl.in >test_hello.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_hello'
# MAKE test_mft_maxdevices
# make -C test_mft_maxdevices  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_mft_maxdevices'
# CC test_mft_maxdevices.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_mft_maxdevices.c -o test_mft_maxdevices.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_mft_maxdevices.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_mft_maxdevices.o manifest.o -o test_mft_maxdevices.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_mft_maxdevices.xl
# sed -e s/@@NAME@@/test_mft_maxdevices/ \
#     -e s/@@KERNEL@@/test_mft_maxdevices.xen/ \
#     ../config.xl.in >test_mft_maxdevices.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_mft_maxdevices'
# MAKE test_net
# make -C test_net  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_net'
# CC test_net.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_net.c -o test_net.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_net.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_net.o manifest.o -o test_net.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_net.xl
# sed -e s/@@NAME@@/test_net/ \
#     -e s/@@KERNEL@@/test_net.xen/ \
#     ../config.xl.in >test_net.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_net'
# MAKE test_net_2if
# make -C test_net_2if  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_net_2if'
# CC test_net_2if.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_net_2if.c -o test_net_2if.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_net_2if.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_net_2if.o manifest.o -o test_net_2if.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_net_2if.xl
# sed -e s/@@NAME@@/test_net_2if/ \
#     -e s/@@KERNEL@@/test_net_2if.xen/ \
#     ../config.xl.in >test_net_2if.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_net_2if'
# MAKE test_notls
# make -C test_notls  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_notls'
# CC test_notls.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_notls.c -o test_notls.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_notls.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_notls.o manifest.o -o test_notls.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_notls.xl
# sed -e s/@@NAME@@/test_notls/ \
#     -e s/@@KERNEL@@/test_notls.xen/ \
#     ../config.xl.in >test_notls.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_notls'
# MAKE test_quiet
# make -C test_quiet  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_quiet'
# CC test_quiet.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_quiet.c -o test_quiet.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_quiet.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_quiet.o manifest.o -o test_quiet.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_quiet.xl
# sed -e s/@@NAME@@/test_quiet/ \
#     -e s/@@KERNEL@@/test_quiet.xen/ \
#     ../config.xl.in >test_quiet.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_quiet'
# MAKE test_seccomp
# make -C test_seccomp  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_seccomp'
# CC test_seccomp.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_seccomp.c -o test_seccomp.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_seccomp.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_seccomp.o manifest.o -o test_seccomp.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_seccomp.xl
# sed -e s/@@NAME@@/test_seccomp/ \
#     -e s/@@KERNEL@@/test_seccomp.xen/ \
#     ../config.xl.in >test_seccomp.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_seccomp'
# MAKE test_ssp
# make -C test_ssp  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_ssp'
# CC test_ssp.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_ssp.c -o test_ssp.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_ssp.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_ssp.o manifest.o -o test_ssp.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_ssp.xl
# sed -e s/@@NAME@@/test_ssp/ \
#     -e s/@@KERNEL@@/test_ssp.xen/ \
#     ../config.xl.in >test_ssp.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_ssp'
# MAKE test_time
# make -C test_time  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_time'
# CC test_time.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_time.c -o test_time.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_time.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_time.o manifest.o -o test_time.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_time.xl
# sed -e s/@@NAME@@/test_time/ \
#     -e s/@@KERNEL@@/test_time.xen/ \
#     ../config.xl.in >test_time.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_time'
# MAKE test_tls
# make -C test_tls  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_tls'
# CC test_tls.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_tls.c -o test_tls.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_tls.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_tls.o manifest.o -o test_tls.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_tls.xl
# sed -e s/@@NAME@@/test_tls/ \
#     -e s/@@KERNEL@@/test_tls.xen/ \
#     ../config.xl.in >test_tls.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_tls'
# MAKE test_wnox
# make -C test_wnox  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_wnox'
# CC test_wnox.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_wnox.c -o test_wnox.o
# /opam-tmp/ccQpv5F1.s: Assembler messages:
# /opam-tmp/ccQpv5F1.s:726: Warning: ignoring changed section attributes for .data
# /opam-tmp/ccQpv5F1.s:733: Warning: dwarf line number information for .data ignored
# /opam-tmp/ccQpv5F1.s:735: Warning: dwarf line number information for .data ignored
# /opam-tmp/ccQpv5F1.s:736: Warning: dwarf line number information for .data ignored
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_wnox.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_wnox.o manifest.o -o test_wnox.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_wnox.xl
# sed -e s/@@NAME@@/test_wnox/ \
#     -e s/@@KERNEL@@/test_wnox.xen/ \
#     ../config.xl.in >test_wnox.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_wnox'
# MAKE test_xnow
# make -C test_xnow  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_xnow'
# CC test_xnow.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_xnow.c -o test_xnow.o
# ELFTOOL manifest.json
# /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/elftool/solo5-elftool gen-manifest manifest.json manifest.c
# CC manifest.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c manifest.c -o manifest.o
# LD test_xnow.xen
# ld -nostdlib -z max-page-size=0x1000 -static  -T /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.lds /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o test_xnow.o manifest.o -o test_xnow.xen
# ld: warning: /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/bindings/xen/solo5_xen.o: requires executable stack (because the .note.GNU-stack section is executable)
# XL test_xnow.xl
# sed -e s/@@NAME@@/test_xnow/ \
#     -e s/@@KERNEL@@/test_xnow.xen/ \
#     ../config.xl.in >test_xnow.xl
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_xnow'
# MAKE test_zeropage
# make -C test_zeropage  
# make[2]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_zeropage'
# CC test_zeropage.c
# cc -std=c11 -Wall -Wextra -Werror -O2 -g -ffreestanding -fstack-protector-strong -nostdinc -mstack-protector-guard=global -isystem /home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/crt -I/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/include/solo5 -c test_zeropage.c -o test_zeropage.o
# test_zeropage.c: In function 'solo5_app_main':
# test_zeropage.c:39:5: error: array subscript 0 is outside array bounds of 'uint64_t[0]' {aka 'long unsigned int[]'} [-Werror=array-bounds]
#    39 |     *addr_invalid = 1;
#       |     ^~~~~~~~~~~~~
# cc1: all warnings being treated as errors
# make[2]: *** [../Makefile.tests:51: test_zeropage.o] Error 1
# make[2]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests/test_zeropage'
# make[1]: *** [GNUmakefile:33: test_zeropage] Error 2
# make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/solo5-bindings-xen.0.6.9/tests'
# make: *** [GNUmakefile:70: tests] Error 2



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build solo5-bindings-xen 0.6.9
+- 
+- The following changes have been performed (the rest was aborted)
| - install base-bytes               base
| - install bheap                    2.0.0
| - install bigarray-compat          1.1.0
| - install cmdliner                 1.3.0
| - install conf-libseccomp          1
| - install conf-pkg-config          2
| - install cppo                     1.7.0
| - install csexp                    1.5.2
| - install cstruct                  6.0.1
| - install domain-name              0.4.0
| - install dune                     3.16.1
| - install dune-configurator        3.16.1
| - install duration                 0.2.1
| - install fmt                      0.9.0
| - install ipaddr                   5.6.0
| - install logs                     0.7.0
| - install lwt                      5.8.0
| - install lwt-dllist               1.0.1
| - install macaddr                  5.6.0
| - install mirage-console           4.0.0
| - install mirage-console-xen-proto 4.0.0
| - install mirage-device            2.0.0
| - install mirage-flow              3.0.0
| - install mirage-profile           0.9.1
| - install mirage-runtime           4.8.1
| - install num                      1.5-1
| - install ocaml-compiler-libs      v0.12.4
| - install ocaml-src                4.14.2
| - install ocamlbuild               0.15.0
| - install ocplib-endian            1.2
| - install parsexp                  v0.16.0
| - install ppx_cstruct              6.0.1
| - install ppx_derivers             1.2.1
| - install ppxlib                   0.33.0
| - install rresult                  0.7.0
| - install sexplib                  v0.16.0
| - install sexplib0                 v0.16.0
| - install shared-memory-ring       3.2.1
| - install shared-memory-ring-lwt   3.2.1
| - install stdlib-shims             0.3.0
| - install topkg                    1.0.7
| - install xenstore                 2.3.0
+- 
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20241113170851.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
opam-repo-ci detected dependencies failing:  solo5-bindings-xen.0.6.9
"/usr/bin/env" "bash" "-c" "opam reinstall mirage-console-xen-backend.4.0.0;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'mirage-console-xen-backend.4.0.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2024-11-13 17:09.58: Job failed: Failed: Build failed
2024-11-13 17:09.58: Log analysis:
2024-11-13 17:09.58: >>> 
[ERROR] The compilation of solo5-bindings-xen.0.6.9 failed at "make V=1 CONFIG_HVT= CONFIG_SPT= CONFIG_VIRTIO= CONFIG_MUEN= CONFIG_GENODE=".
 (score = 20)
2024-11-13 17:09.58: >>> 
# test_zeropage.c:39:5: error: array subscript 0 is outside array bounds of 'uint64_t[0]' {aka 'long unsigned int[]'} [-Werror=array-bounds]
 (score = 30)
2024-11-13 17:09.58: >>> 
opam-repo-ci detected dependencies failing:  solo5-bindings-xen.0.6.9
 (score = 75)
2024-11-13 17:09.58:  solo5-bindings-xen.0.6.9 failed to build