Build:
  1. 0
2026-02-27 04:13.51: New job: test lacaml.7.2.2 with ocamlfind.1.9.8, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
                              on debian-13-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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
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.8 1.9.8
RUN opam reinstall ocamlfind.1.9.8; \
    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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocamlfind.1.9.8' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall lacaml.7.2.2; \
    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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lacaml.7.2.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test lacaml.7.2.2) || true
RUN opam reinstall --with-test --verbose lacaml.7.2.2; \
    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-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'lacaml.7.2.2' && 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 .

2026-02-27 04:13.51: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633-ocamlfind.1.9.8-lacaml.7.2.2-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:13.51: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
 (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 "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (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.8 1.9.8"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocamlfind.1.9.8;\
             \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-13\\\"\"; 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.8' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lacaml.7.2.2;\
             \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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'lacaml.7.2.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test lacaml.7.2.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose lacaml.7.2.2;\
             \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-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'lacaml.7.2.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-27 04:13.51: Waiting for resource in pool OCluster
2026-03-03 19:15.39: Waiting for worker…
2026-03-03 19:19.20: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  75% (13798/18334)
Updating files:  76% (13934/18334)
Updating files:  77% (14118/18334)
Updating files:  78% (14301/18334)
Updating files:  79% (14484/18334)
Updating files:  80% (14668/18334)
Updating files:  81% (14851/18334)
Updating files:  82% (15034/18334)
Updating files:  83% (15218/18334)
Updating files:  84% (15401/18334)
Updating files:  85% (15584/18334)
Updating files:  86% (15768/18334)
Updating files:  87% (15951/18334)
Updating files:  88% (16134/18334)
Updating files:  89% (16318/18334)
Updating files:  90% (16501/18334)
Updating files:  91% (16684/18334)
Updating files:  92% (16868/18334)
Updating files:  93% (17051/18334)
Updating files:  94% (17234/18334)
Updating files:  95% (17418/18334)
Updating files:  96% (17601/18334)
Updating files:  97% (17784/18334)
Updating files:  98% (17968/18334)
Updating files:  99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
 .../ocaml-base-compiler.3.07+1/opam                    |  1 +
 .../ocaml-base-compiler.3.07+2/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.3.07/opam  |  1 +
 .../ocaml-base-compiler.3.08.0/opam                    |  1 +
 .../ocaml-base-compiler.3.08.1/opam                    |  1 +
 .../ocaml-base-compiler.3.08.2/opam                    |  1 +
 .../ocaml-base-compiler.3.08.3/opam                    |  1 +
 .../ocaml-base-compiler.3.08.4/opam                    |  1 +
 .../ocaml-base-compiler.3.09.0/opam                    |  1 +
 .../ocaml-base-compiler.3.09.1/opam                    |  1 +
 .../ocaml-base-compiler.3.09.2/opam                    |  1 +
 .../ocaml-base-compiler.3.09.3/opam                    |  1 +
 .../ocaml-base-compiler.3.10.0/opam                    |  1 +
 .../ocaml-base-compiler.3.10.1/opam                    |  1 +
 .../ocaml-base-compiler.3.10.2/opam                    |  1 +
 .../ocaml-base-compiler.3.11.0/opam                    |  1 +
 .../ocaml-base-compiler.3.11.1/opam                    |  1 +
 .../ocaml-base-compiler.3.11.2/opam                    |  1 +
 .../ocaml-base-compiler.3.12.0/opam                    |  1 +
 .../ocaml-base-compiler.3.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.00.0/opam                    |  1 +
 .../ocaml-base-compiler.4.00.1/opam                    |  1 +
 .../ocaml-base-compiler.4.01.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.1/opam                    |  1 +
 .../ocaml-base-compiler.4.02.2/opam                    |  1 +
 .../ocaml-base-compiler.4.02.3/opam                    |  1 +
 .../ocaml-base-compiler.4.03.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.1/opam                    |  1 +
 .../ocaml-base-compiler.4.04.2/opam                    |  1 +
 .../ocaml-base-compiler.4.05.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.1/opam                    |  1 +
 .../ocaml-base-compiler.4.07.0/opam                    |  1 +
 .../ocaml-base-compiler.4.07.1/opam                    |  1 +
 .../ocaml-base-compiler.4.08.0/opam                    |  1 +
 .../ocaml-base-compiler.4.08.1/opam                    |  1 +
 .../ocaml-base-compiler.4.09.0/opam                    |  1 +
 .../ocaml-base-compiler.4.09.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.0/opam                    |  1 +
 .../ocaml-base-compiler.4.10.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.2/opam                    |  1 +
 .../ocaml-base-compiler.4.11.0/opam                    |  1 +
 .../ocaml-base-compiler.4.11.1/opam                    |  1 +
 .../ocaml-base-compiler.4.11.2/opam                    |  1 +
 .../ocaml-base-compiler.4.12.0/opam                    |  1 +
 .../ocaml-base-compiler.4.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.13.0/opam                    |  1 +
 .../ocaml-base-compiler.4.13.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.0/opam                    |  1 +
 .../ocaml-base-compiler.4.14.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2~rc1/opam                |  1 +
 .../ocaml-base-compiler.4.14.3/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  1 +
 .../ocaml-secondary-compiler.4.08.1-1/opam             |  1 +
 .../ocaml-secondary-compiler.4.08.1/opam               |  1 +
 .../ocaml-secondary-compiler.4.14.2/opam               |  1 +
 .../ocaml-variants.3.09.1+metaocaml/opam               |  1 +
 .../ocaml-variants.4.00.0+debug-runtime/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam |  1 +
 .../ocaml-variants.4.00.1+debug-runtime/opam           |  1 +
 .../ocaml-variants.4.00.1+open-types/opam              |  1 +
 .../ocaml-variants.4.00.1+raspberrypi/opam             |  1 +
 .../ocaml-variants.4.00.1+short-types/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam |  1 +
 .../ocaml-variants.4.01.0+armv6-freebsd/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam |  1 +
 .../ocaml-variants.4.01.0+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+musl/opam     |  1 +
 .../ocaml-variants.4.01.0+open-types/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+profile/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam |  1 +
 .../ocaml-variants.4.02.0+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam  |  1 +
 .../ocaml-variants.4.02.1+modular-implicits-ber/opam   |  1 +
 .../ocaml-variants.4.02.1+modular-implicits/opam       |  1 +
 .../ocaml-variants.4.02.1+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+musl/opam     |  1 +
 .../ocaml-variants.4.02.2+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam |  1 +
 .../ocaml-variants.4.02.3+buckle-master/opam           |  1 +
 .../ocaml-variants.4.02.3+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.02.3+curried-constr/opam          |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam  |  1 +
 .../ocaml-variants.4.02.3+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+musl/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.02.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+32bit/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+flambda/opam  |  1 +
 .../ocaml-variants.4.03.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam  |  1 +
 .../ocaml-variants.4.03.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam |  1 +
 .../ocaml-variants.4.04.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+flambda/opam  |  1 +
 .../ocaml-variants.4.04.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam  |  1 +
 .../ocaml-variants.4.04.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.0+trunk+forced_lto/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+32bit/opam    |  1 +
 .../ocaml-variants.4.04.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.04.1+copatterns/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+flambda/opam  |  1 +
 .../ocaml-variants.4.04.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam  |  1 +
 .../ocaml-variants.4.04.1+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+32bit/opam    |  1 +
 .../ocaml-variants.4.04.2+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+flambda/opam  |  1 +
 .../ocaml-variants.4.04.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam  |  1 +
 .../ocaml-variants.4.04.2+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.2+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam |  1 +
 .../ocaml-variants.4.05.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+flambda/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam |  1 +
 .../ocaml-variants.4.05.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.05.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.05.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.05.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.05.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.05.1+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.05.1+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.05.1+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam |  1 +
 .../ocaml-variants.4.05.1+trunk+safe-string/opam       |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam |  1 +
 .../ocaml-variants.4.06.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+flambda/opam  |  1 +
 .../ocaml-variants.4.06.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam  |  1 +
 .../ocaml-variants.4.06.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.06.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.06.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam |  1 +
 .../ocaml-variants.4.06.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.1+default-unsafe-string/opam   |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+flambda/opam  |  1 +
 .../ocaml-variants.4.06.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam |  1 +
 .../ocaml-variants.4.06.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.1+no-flat-float-array/opam     |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+rescript/opam |  1 +
 .../ocaml-variants.4.06.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+termux/opam   |  1 +
 .../ocaml-variants.4.06.2+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.06.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.06.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.06.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam |  1 +
 .../ocaml-variants.4.07.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+flambda/opam  |  1 +
 .../ocaml-variants.4.07.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam  |  1 +
 .../ocaml-variants.4.07.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam |  1 +
 .../ocaml-variants.4.07.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+flambda/opam  |  1 +
 .../ocaml-variants.4.07.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam  |  1 +
 .../ocaml-variants.4.07.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.07.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.07.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.07.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.07.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.07.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.07.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam |  1 +
 .../ocaml-variants.4.08.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+flambda/opam  |  1 +
 .../ocaml-variants.4.08.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam  |  1 +
 .../ocaml-variants.4.08.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.08.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam |  1 +
 .../ocaml-variants.4.08.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+flambda/opam  |  1 +
 .../ocaml-variants.4.08.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam  |  1 +
 .../ocaml-variants.4.08.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.08.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.08.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.08.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.08.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam |  1 +
 .../ocaml-variants.4.09.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+flambda/opam  |  1 +
 .../ocaml-variants.4.09.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam  |  1 +
 .../ocaml-variants.4.09.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+32bit/opam    |  1 +
 .../ocaml-variants.4.09.1+afl+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam |  1 +
 .../ocaml-variants.4.09.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+flambda/opam  |  1 +
 .../ocaml-variants.4.09.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam  |  1 +
 .../ocaml-variants.4.09.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.09.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.09.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.09.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam |  1 +
 .../ocaml-variants.4.10.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+flambda/opam  |  1 +
 .../ocaml-variants.4.10.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam  |  1 +
 .../ocaml-variants.4.10.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam |  1 +
 .../ocaml-variants.4.10.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.10.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam |  1 +
 .../ocaml-variants.4.10.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+flambda/opam  |  1 +
 .../ocaml-variants.4.10.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam  |  1 +
 .../ocaml-variants.4.10.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam  |  1 +
 .../ocaml-variants.4.10.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam |  1 +
 .../ocaml-variants.4.10.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+flambda/opam  |  1 +
 .../ocaml-variants.4.10.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam  |  1 +
 .../ocaml-variants.4.10.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+rescript/opam |  1 +
 .../ocaml-variants.4.10.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam |  1 +
 .../ocaml-variants.4.11.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+flambda/opam  |  1 +
 .../ocaml-variants.4.11.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam  |  1 +
 .../ocaml-variants.4.11.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+32bit/opam    |  1 +
 .../ocaml-variants.4.11.1+BER+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam |  1 +
 .../ocaml-variants.4.11.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+flambda/opam  |  1 +
 .../ocaml-variants.4.11.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam  |  1 +
 .../ocaml-variants.4.11.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam |  1 +
 .../ocaml-variants.4.11.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+flambda/opam  |  1 +
 .../ocaml-variants.4.11.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam  |  1 +
 .../ocaml-variants.4.11.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk/opam    |  1 +
 .../ocaml-variants.4.12.0+domains+effects/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+domains/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.13.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.14.0+options/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.14.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.2+options/opam  |  1 +
 .../ocaml-variants.4.14.2~rc1+options/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.14.3+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.5.0.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.0.1+trunk/opam     |  1 +
 .../ocaml-variants/ocaml-variants.5.1.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam |  1 +
 .../ocaml-variants.5.1.1+effect-syntax/opam            |  1 +
 .../ocaml-variants.5.1.1+flambda2+trunk/opam           |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam  |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.1.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.2.0+options/opam   |  1 +
 .../ocaml-variants.5.2.0+statmemprof/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.1+options/opam   |  1 +
 .../ocaml-variants.5.2.1~rc1+options/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam  |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.1/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.15.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.16.1/opam             |  1 +
 packages/ocamlfind/ocamlfind.1.8.0/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.8.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.2/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.3/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.5/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.6/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.8/opam                |  1 +
 packages/relocatable/relocatable.packages/opam         | 18 ++++++++++++++++++
 432 files changed, 464 insertions(+), 5 deletions(-)
 create mode 100644 packages/relocatable/relocatable.packages/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
2026-03-03 19:19.25 ---> using "d6079ab6cce1b58b34ac9b5ed11aa86b7980ab728c75f5a6ba9271e98dc1ac1c" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-03 19:19.25 ---> using "3c00c47f9d923b8bd6ffb2b949e4b9efd562ec1af5385aec1656ef10f01c4450" 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 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
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 19:19.25 ---> using "a92b73fe3956045426c13ac4a0686c952a1f3abe3c88ddfc7b2f3a6ed1e46736" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-03 19:19.25 ---> using "cae9d187aa902d60c82d0c2150bbd9c0de1870c923aa0b0063ad5a25247acae5" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/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/"))
2026-03-03 19:19.25 ---> using "feb31a4f8ccbcfb9943e7338a457db5bc00688ce26b7db5634b111626cd4af24" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 19:19.27 ---> using "b92870a8fb6886bac6050e75eb8fa24a784127e0cc5005f6e7617ee9eaf0fbc1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 19:19.27 ---> using "99f9416150e19d4e3f0d87844ce4f5bfe5703b97a6a1e1cd5864eee876c17ec0" 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 trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [108 kB]
- Fetched 199 kB in 0s (948 kB/s)
- Reading package lists...
- 
2026-03-03 19:19.27 ---> using "601bd46762889fe7f0e35beb46822e1a66440be2f8382677d2b4063ddcb53047" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocamlfind.1.9.8 1.9.8"))
ocamlfind is now pinned to version 1.9.8
2026-03-03 19:19.27 ---> using "71f4b201f457636e3fdbbfb3f2c4e4d6b4d243911a6e04d05c17b25360d79e93" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocamlfind.1.9.8;\
                        \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-13\\\"\"; 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.8' && 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.8 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install ocamlfind 1.9.8 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.8  (cached)
-> installed ocamlfind.1.9.8
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 19:19.27 ---> using "2cb726d58c2190260757e88b66606de977f4e5368819916c071cdb39d3b3295c" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lacaml.7.2.2;\
                        \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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'lacaml.7.2.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lacaml.7.2.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
  - install base-bytes base   [required by lacaml]
  - install lacaml     7.2.2
  - install ocamlbuild 0.16.1 [required by lacaml]

The following system packages will first need to be installed:
    libblas-dev liblapack-dev

<><> 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" "libblas-dev" "liblapack-dev"
- Selecting previously unselected package libblas3: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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../libblas3_3.12.1-6_amd64.deb ...
- Unpacking libblas3:amd64 (3.12.1-6) ...
- Selecting previously unselected package libblas-dev:amd64.
- Preparing to unpack .../libblas-dev_3.12.1-6_amd64.deb ...
- Unpacking libblas-dev:amd64 (3.12.1-6) ...
- Selecting previously unselected package libgfortran5:amd64.
- Preparing to unpack .../libgfortran5_14.2.0-19_amd64.deb ...
- Unpacking libgfortran5:amd64 (14.2.0-19) ...
- Selecting previously unselected package liblapack3:amd64.
- Preparing to unpack .../liblapack3_3.12.1-6_amd64.deb ...
- Unpacking liblapack3:amd64 (3.12.1-6) ...
- Selecting previously unselected package liblapack-dev:amd64.
- Preparing to unpack .../liblapack-dev_3.12.1-6_amd64.deb ...
- Unpacking liblapack-dev:amd64 (3.12.1-6) ...
- Setting up libblas3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
- Setting up libgfortran5:amd64 (14.2.0-19) ...
- Setting up libblas-dev:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
- Setting up liblapack3:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
- Setting up liblapack-dev:amd64 (3.12.1-6) ...
- update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed base-bytes.base
-> retrieved lacaml.7.2.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed ocamlbuild.0.16.1
-> installed lacaml.7.2.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 19:21.02 ---> saved as "a4c4a5017ea602bb16003fe627477be1b3f5b70aad494c4bb7a8e36c5674c10c"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test lacaml.7.2.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile lacaml 7.2.2

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved lacaml.7.2.2  (https://opam.ocaml.org/cache)
-> removed   lacaml.7.2.2
-> installed lacaml.7.2.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 19:22.36 ---> saved as "f2477535a97997d87c3ac5a37b52f4b6d7fc8881c7a46550a8da1e13ab1e0641"

/home/opam: (run (shell  "opam reinstall --with-test --verbose lacaml.7.2.2;\
                        \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-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'lacaml.7.2.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile lacaml 7.2.2

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [lacaml.7.2.2: extract]
-> retrieved lacaml.7.2.2  (cached)
Processing  2/4: [lacaml: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-configure" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lacaml.7.2.2)
- File "./setup.ml", line 318, characters 20-36:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                           ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                                             ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 |            Hashtbl.hash (String.lowercase s)
-                                ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 |           String.lowercase buf
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 |              String.lowercase
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 |          let compare = Pervasives.compare
-                               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 |     concat dir (String.capitalize base)
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 |     concat dir (String.uncapitalize base)
-                        ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 7905, characters 2-44:
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
- File "setup.ml", line 7909, characters 2-44:
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
- File "./make_prec_dep.ml", line 84, characters 14-33:
- 84 |   let fincl = String.uncapitalize mname ^ ".mli" in
-                    ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- 
- Configuration: 
- ocamlfind: ........................................... /home/opam/.opam/4.14/bin/ocamlfind
- ocamlc: .............................................. /home/opam/.opam/4.14/bin/ocamlc.opt
- ocamlopt: ............................................ /home/opam/.opam/4.14/bin/ocamlopt.opt
- ocamlbuild: .......................................... /home/opam/.opam/4.14/bin/ocamlbuild
- Package name: ........................................ lacaml
- Package version: ..................................... 7.2.2
- os_type: ............................................. Unix
- system: .............................................. linux
- architecture: ........................................ amd64
- ccomp_type: .......................................... cc
- ocaml_version: ....................................... 4.14.2
- standard_library_default: ............................ /home/opam/.opam/4.14/lib/ocaml
- standard_library: .................................... /home/opam/.opam/4.14/lib/ocaml
- bytecomp_c_compiler: ................................. gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 
- native_c_compiler: ................................... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 
- model: ............................................... default
- ext_obj: ............................................. .o
- ext_asm: ............................................. .s
- ext_lib: ............................................. .a
- ext_dll: ............................................. .so
- default_executable_name: ............................. a.out
- systhread_supported: ................................. true
- Install architecture-independent files dir: .......... /home/opam/.opam/4.14
- Install architecture-dependent files in dir: ......... $prefix
- User executables: .................................... $exec_prefix/bin
- System admin executables: ............................ $exec_prefix/sbin
- Program executables: ................................. $exec_prefix/libexec
- Read-only single-machine data: ....................... $prefix/etc
- Modifiable architecture-independent data: ............ $prefix/com
- Modifiable single-machine data: ...................... $prefix/var
- Object code libraries: ............................... $exec_prefix/lib
- Read-only arch-independent data root: ................ $prefix/share
- Read-only architecture-independent data: ............. $datarootdir
- Info documentation: .................................. $datarootdir/info
- Locale-dependent data: ............................... $datarootdir/locale
- Man documentation: ................................... $datarootdir/man
- Documentation root: .................................. $datarootdir/doc/$pkg_name
- HTML documentation: .................................. $docdir
- DVI documentation: ................................... $docdir
- PDF documentation: ................................... $docdir
- PS documentation: .................................... $docdir
- findlib_version: ..................................... 1.9.8
- is_native: ........................................... true
- suffix_program: ...................................... 
- Remove a file.: ...................................... rm -f
- Remove a directory.: ................................. rm -rf
- Turn ocaml debug flag on: ............................ true
- Turn ocaml profile flag on: .......................... false
- Compiler support generation of .cmxs.: ............... true
- OCamlbuild additional flags: ......................... 
- conf_ccopt: .......................................... 
- conf_cclib: .......................................... 
- Strict compile-time checks: .......................... true
- Build examples: ...................................... true
- Create documentations: ............................... true
- Compile tests executable and library and run them: ... false
- ocamldoc: ............................................ /home/opam/.opam/4.14/bin/ocamldoc
- pkg_bigarray: ........................................ /home/opam/.opam/4.14/lib/ocaml
- pkg_bytes: ........................................... /home/opam/.opam/4.14/lib/bytes
- 
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "ocaml" "setup.ml" "-build" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lacaml.7.2.2)
- File "./setup.ml", line 318, characters 20-36:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                           ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                                             ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 |            Hashtbl.hash (String.lowercase s)
-                                ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 |           String.lowercase buf
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 |              String.lowercase
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 |          let compare = Pervasives.compare
-                               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 |     concat dir (String.capitalize base)
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 |     concat dir (String.uncapitalize base)
-                        ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 7905, characters 2-44:
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
- File "setup.ml", line 7909, characters 2-44:
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_c.c
- In file included from lib/lacaml_macros.h:32,
-                  from lib/impl_c.c:24:
- lib/impl_c.c: In function 'lacaml_ilaenv_stub':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   290 | #define String_val(x) ((const char *) Bp_val(x))
-       |                       ^
- lib/impl_c.c:43:16: note: in expansion of macro 'String_val'
-    43 |   char *NAME = String_val(vNAME),
-       |                ^~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   290 | #define String_val(x) ((const char *) Bp_val(x))
-       |                       ^
- lib/impl_c.c:44:16: note: in expansion of macro 'String_val'
-    44 |        *OPTS = String_val(vOPTS);
-       |                ^~~~~~~~~~
- + mv impl_c.o lib/impl_c.o
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/utils_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/utils_c.c
- In file included from lib/utils_c.c:25:
- /home/opam/.opam/4.14/lib/ocaml/caml/alloc.h:70:19: warning: 'caml_field_boxed' defined but not used [-Wunused-function]
-    70 | Caml_inline value caml_field_boxed (value arg) { return Field (arg, 0); }
-       |                   ^~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/alloc.h:69:19: warning: 'caml_field_unboxed' defined but not used [-Wunused-function]
-    69 | Caml_inline value caml_field_unboxed (value arg) { return arg; }
-       |                   ^~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/alloc.h:64:19: warning: 'caml_alloc_boxed' defined but not used [-Wunused-function]
-    64 | Caml_inline value caml_alloc_boxed (value arg) {
-       |                   ^~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/alloc.h:63:19: warning: 'caml_alloc_unboxed' defined but not used [-Wunused-function]
-    63 | Caml_inline value caml_alloc_unboxed (value arg) { return arg; }
-       |                   ^~~~~~~~~~~~~~~~~~
- + mv utils_c.o lib/utils_c.o
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec2_S_c.o' -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_SD_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec2_D_c.o' -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_SD_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec2_C_c.o' -ccopt -DLACAML_COMPLEX -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_CZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec2_Z_c.o' -ccopt -DLACAML_COMPLEX -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_CZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec4_S_c.o' -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec4_D_c.o' -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec4_C_c.o' -ccopt -DLACAML_COMPLEX -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/vec4_Z_c.o' -ccopt -DLACAML_COMPLEX -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/vec_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/mat4_S_c.o' -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/mat_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/mat4_D_c.o' -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/mat_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/mat4_C_c.o' -ccopt -DLACAML_COMPLEX -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/mat_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/mat4_Z_c.o' -ccopt -DLACAML_COMPLEX -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/mat_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl2_S_c.o' -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_SD_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl2_D_c.o' -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_SD_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl2_C_c.o' -ccopt -DLACAML_COMPLEX -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_CZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl2_Z_c.o' -ccopt -DLACAML_COMPLEX -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_CZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl4_S_c.o' -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl4_D_c.o' -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl4_C_c.o' -ccopt -DLACAML_COMPLEX -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -ccopt '-o lib/impl4_Z_c.o' -ccopt -DLACAML_COMPLEX -ccopt -DLACAML_DOUBLE -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/impl_SDCZ_c.c
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -c lib/exp10.c
- + mv exp10.o lib/exp10.o
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlmklib -o lib/lacaml_stubs -g -lblas -llapack lib/impl_c.o lib/utils_c.o lib/vec2_S_c.o lib/vec2_D_c.o lib/vec2_C_c.o lib/vec2_Z_c.o lib/vec4_S_c.o lib/vec4_D_c.o lib/vec4_C_c.o lib/vec4_Z_c.o lib/mat4_S_c.o lib/mat4_D_c.o lib/mat4_C_c.o lib/mat4_Z_c.o lib/impl2_S_c.o lib/impl2_D_c.o lib/impl2_C_c.o lib/impl2_Z_c.o lib/impl4_S_c.o lib/impl4_D_c.o lib/impl4_C_c.o lib/impl4_Z_c.o lib/exp10.o
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml.mli > lib/lacaml.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_C.mli > lib/lacaml_C.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_common.mli > lib/lacaml_common.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_complex32.ml > lib/lacaml_complex32.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_io.mli > lib/lacaml_io.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_common.cmi lib/lacaml_common.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_common.cmi lib/lacaml_common.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex32.cmo lib/lacaml_complex32.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex32.cmo lib/lacaml_complex32.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_complex32.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_io.cmi lib/lacaml_io.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_io.cmi lib/lacaml_io.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_D.mli > lib/lacaml_D.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_float64.ml > lib/lacaml_float64.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float64.cmo lib/lacaml_float64.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float64.cmo lib/lacaml_float64.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_float64.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_S.mli > lib/lacaml_S.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_float32.ml > lib/lacaml_float32.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float32.cmo lib/lacaml_float32.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float32.cmo lib/lacaml_float32.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_float32.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_Z.mli > lib/lacaml_Z.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_complex64.ml > lib/lacaml_complex64.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex64.cmo lib/lacaml_complex64.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex64.cmo lib/lacaml_complex64.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_complex64.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_utils.ml > lib/lacaml_utils.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_C.cmi lib/lacaml_C.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_C.cmi lib/lacaml_C.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_D.cmi lib/lacaml_D.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_D.cmi lib/lacaml_D.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_S.cmi lib/lacaml_S.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_S.cmi lib/lacaml_S.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_Z.cmi lib/lacaml_Z.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_Z.cmi lib/lacaml_Z.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_utils.cmo lib/lacaml_utils.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_utils.cmo lib/lacaml_utils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml.cmi lib/lacaml.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml.cmi lib/lacaml.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml.ml > lib/lacaml.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_complex_io.mli > lib/lacaml_complex_io.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_real_io.mli > lib/lacaml_real_io.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex_io.cmi lib/lacaml_complex_io.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex_io.cmi lib/lacaml_complex_io.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_real_io.cmi lib/lacaml_real_io.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_real_io.cmi lib/lacaml_real_io.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml.cmo lib/lacaml.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml.cmo lib/lacaml.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml.ml", line 4, characters 0-31:
- 4 | module Real_io = Lacaml_real_io
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 60 [unused-module]: unused module Real_io.
- File "lib/lacaml.ml", line 5, characters 0-37:
- 5 | module Complex_io = Lacaml_complex_io
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 60 [unused-module]: unused module Complex_io.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_C.ml > lib/lacaml_C.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_C.mli > lib/lacaml_impl2_C.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_C.mli > lib/lacaml_impl4_C.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_C.mli > lib/lacaml_mat2_C.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_C.mli > lib/lacaml_mat4_C.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_C.mli > lib/lacaml_vec2_C.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_C.mli > lib/lacaml_vec4_C.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_C.cmi lib/lacaml_impl2_C.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_C.cmi lib/lacaml_impl2_C.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_C.cmi lib/lacaml_impl4_C.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_C.cmi lib/lacaml_impl4_C.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_C.cmi lib/lacaml_mat2_C.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_C.cmi lib/lacaml_mat2_C.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_C.cmi lib/lacaml_mat4_C.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_C.cmi lib/lacaml_mat4_C.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_C.cmi lib/lacaml_vec2_C.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_C.cmi lib/lacaml_vec2_C.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_C.cmi lib/lacaml_vec4_C.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_C.cmi lib/lacaml_vec4_C.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_D.ml > lib/lacaml_D.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_D.mli > lib/lacaml_impl2_D.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_D.mli > lib/lacaml_impl4_D.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_D.mli > lib/lacaml_mat2_D.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_D.mli > lib/lacaml_mat4_D.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_D.mli > lib/lacaml_vec2_D.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_D.mli > lib/lacaml_vec4_D.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_D.cmi lib/lacaml_impl2_D.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_D.cmi lib/lacaml_impl2_D.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_D.cmi lib/lacaml_impl4_D.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_D.cmi lib/lacaml_impl4_D.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_D.cmi lib/lacaml_mat2_D.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_D.cmi lib/lacaml_mat2_D.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_D.cmi lib/lacaml_mat4_D.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_D.cmi lib/lacaml_mat4_D.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_D.cmi lib/lacaml_vec2_D.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_D.cmi lib/lacaml_vec2_D.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_D.cmi lib/lacaml_vec4_D.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_D.cmi lib/lacaml_vec4_D.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_S.ml > lib/lacaml_S.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_S.mli > lib/lacaml_impl2_S.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_S.mli > lib/lacaml_impl4_S.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_S.mli > lib/lacaml_mat2_S.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_S.mli > lib/lacaml_mat4_S.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_S.mli > lib/lacaml_vec2_S.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_S.mli > lib/lacaml_vec4_S.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_S.cmi lib/lacaml_impl2_S.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_S.cmi lib/lacaml_impl2_S.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_S.cmi lib/lacaml_impl4_S.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_S.cmi lib/lacaml_impl4_S.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_S.cmi lib/lacaml_mat2_S.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_S.cmi lib/lacaml_mat2_S.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_S.cmi lib/lacaml_mat4_S.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_S.cmi lib/lacaml_mat4_S.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_S.cmi lib/lacaml_vec2_S.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_S.cmi lib/lacaml_vec2_S.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_S.cmi lib/lacaml_vec4_S.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_S.cmi lib/lacaml_vec4_S.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_Z.ml > lib/lacaml_Z.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_Z.mli > lib/lacaml_impl2_Z.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_Z.mli > lib/lacaml_impl4_Z.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_Z.mli > lib/lacaml_mat2_Z.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_Z.mli > lib/lacaml_mat4_Z.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_Z.mli > lib/lacaml_vec2_Z.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_Z.mli > lib/lacaml_vec4_Z.mli.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_Z.cmi lib/lacaml_impl2_Z.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_Z.cmi lib/lacaml_impl2_Z.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_Z.cmi lib/lacaml_impl4_Z.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_Z.cmi lib/lacaml_impl4_Z.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_Z.cmi lib/lacaml_mat2_Z.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_Z.cmi lib/lacaml_mat2_Z.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_Z.cmi lib/lacaml_mat4_Z.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_Z.cmi lib/lacaml_mat4_Z.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_Z.cmi lib/lacaml_vec2_Z.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_Z.cmi lib/lacaml_vec2_Z.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_Z.cmi lib/lacaml_vec4_Z.mli
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_Z.cmi lib/lacaml_vec4_Z.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_common.ml > lib/lacaml_common.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_complex_io.ml > lib/lacaml_complex_io.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_io.ml > lib/lacaml_io.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_real_io.ml > lib/lacaml_real_io.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_C.cmo lib/lacaml_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_C.cmo lib/lacaml_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_D.cmo lib/lacaml_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_D.cmo lib/lacaml_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_S.cmo lib/lacaml_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_S.cmo lib/lacaml_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_Z.cmo lib/lacaml_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_Z.cmo lib/lacaml_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_common.cmo lib/lacaml_common.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_common.cmo lib/lacaml_common.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex_io.cmo lib/lacaml_complex_io.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex_io.cmo lib/lacaml_complex_io.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_io.cmo lib/lacaml_io.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_io.cmo lib/lacaml_io.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_real_io.cmo lib/lacaml_real_io.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_real_io.cmo lib/lacaml_real_io.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_C.ml > lib/lacaml_impl2_C.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_C.ml > lib/lacaml_impl4_C.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_C.ml > lib/lacaml_mat2_C.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_C.ml > lib/lacaml_mat4_C.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_C.ml > lib/lacaml_vec2_C.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_C.ml > lib/lacaml_vec4_C.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_C.cmo lib/lacaml_impl2_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_C.cmo lib/lacaml_impl2_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_C.cmo lib/lacaml_impl4_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_C.cmo lib/lacaml_impl4_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_C.cmo lib/lacaml_mat2_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_C.cmo lib/lacaml_mat2_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_C.cmo lib/lacaml_mat4_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_C.cmo lib/lacaml_mat4_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_C.cmo lib/lacaml_vec2_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_C.cmo lib/lacaml_vec2_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_C.cmo lib/lacaml_vec4_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_C.cmo lib/lacaml_vec4_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_S.ml > lib/lacaml_vec4_S.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_S.cmo lib/lacaml_vec4_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_S.cmo lib/lacaml_vec4_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_D.ml > lib/lacaml_impl2_D.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_D.ml > lib/lacaml_impl4_D.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_D.ml > lib/lacaml_mat2_D.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_D.ml > lib/lacaml_mat4_D.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_D.ml > lib/lacaml_vec2_D.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_D.ml > lib/lacaml_vec4_D.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_D.cmo lib/lacaml_impl2_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_D.cmo lib/lacaml_impl2_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_D.cmo lib/lacaml_impl4_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_D.cmo lib/lacaml_impl4_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_D.cmo lib/lacaml_mat2_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_D.cmo lib/lacaml_mat2_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_D.cmo lib/lacaml_mat4_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_D.cmo lib/lacaml_mat4_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_D.cmo lib/lacaml_vec2_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_D.cmo lib/lacaml_vec2_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_D.cmo lib/lacaml_vec4_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_D.cmo lib/lacaml_vec4_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_S.ml > lib/lacaml_impl2_S.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_S.ml > lib/lacaml_impl4_S.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_S.ml > lib/lacaml_mat2_S.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_S.ml > lib/lacaml_mat4_S.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_S.ml > lib/lacaml_vec2_S.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_S.cmo lib/lacaml_impl2_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_S.cmo lib/lacaml_impl2_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_S.cmo lib/lacaml_impl4_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_S.cmo lib/lacaml_impl4_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_S.cmo lib/lacaml_mat2_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_S.cmo lib/lacaml_mat2_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_S.cmo lib/lacaml_mat4_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_S.cmo lib/lacaml_mat4_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_S.cmo lib/lacaml_vec2_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_S.cmo lib/lacaml_vec2_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl2_Z.ml > lib/lacaml_impl2_Z.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_impl4_Z.ml > lib/lacaml_impl4_Z.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat2_Z.ml > lib/lacaml_mat2_Z.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_mat4_Z.ml > lib/lacaml_mat4_Z.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec2_Z.ml > lib/lacaml_vec2_Z.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_vec4_Z.ml > lib/lacaml_vec4_Z.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_Z.cmo lib/lacaml_impl2_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_Z.cmo lib/lacaml_impl2_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_Z.cmo lib/lacaml_impl4_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_Z.cmo lib/lacaml_impl4_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_Z.cmo lib/lacaml_mat2_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_Z.cmo lib/lacaml_mat2_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_Z.cmo lib/lacaml_mat4_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_Z.cmo lib/lacaml_mat4_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_Z.cmo lib/lacaml_vec2_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_Z.cmo lib/lacaml_vec2_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_Z.cmo lib/lacaml_vec4_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_Z.cmo lib/lacaml_vec4_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -dllib -llacaml_stubs -cclib -llacaml_stubs -cclib -lblas -cclib -llapack -I lib lib/lacaml_common.cmo lib/lacaml_complex32.cmo lib/lacaml_io.cmo lib/lacaml_complex_io.cmo lib/lacaml_float32.cmo lib/lacaml_utils.cmo lib/lacaml_mat4_C.cmo lib/lacaml_vec4_C.cmo lib/lacaml_vec4_S.cmo lib/lacaml_impl4_C.cmo lib/lacaml_impl2_C.cmo lib/lacaml_mat2_C.cmo lib/lacaml_vec2_C.cmo lib/lacaml_C.cmo lib/lacaml_float64.cmo lib/lacaml_mat4_D.cmo lib/lacaml_vec4_D.cmo lib/lacaml_impl4_D.cmo lib/lacaml_impl2_D.cmo lib/lacaml_mat2_D.cmo lib/lacaml_real_io.cmo lib/lacaml_vec2_D.cmo lib/lacaml_D.cmo lib/lacaml_mat4_S.cmo lib/lacaml_impl4_S.cmo lib/lacaml_impl2_S.cmo lib/lacaml_mat2_S.cmo lib/lacaml_vec2_S.cmo lib/lacaml_S.cmo lib/lacaml_complex64.cmo lib/lacaml_mat4_Z.cmo lib/lacaml_vec4_Z.cmo lib/lacaml_impl4_Z.cmo lib/lacaml_impl2_Z.cmo lib/lacaml_mat2_Z.cmo lib/lacaml_vec2_Z.cmo lib/lacaml_Z.cmo lib/lacaml.cmo lib/liblacaml_stubs.a -o lib/lacaml.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_io.cmx lib/lacaml_io.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_io.cmx lib/lacaml_io.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex32.cmx lib/lacaml_complex32.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex32.cmx lib/lacaml_complex32.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_complex32.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_common.cmx lib/lacaml_common.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_common.cmx lib/lacaml_common.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_utils.cmx lib/lacaml_utils.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_utils.cmx lib/lacaml_utils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_utils.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float32.cmx lib/lacaml_float32.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float32.cmx lib/lacaml_float32.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_float32.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_C.cmx lib/lacaml_mat4_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_C.cmx lib/lacaml_mat4_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_C.cmx lib/lacaml_vec4_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_C.cmx lib/lacaml_vec4_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_S.cmx lib/lacaml_vec4_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_S.cmx lib/lacaml_vec4_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_C.cmx lib/lacaml_impl4_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_C.cmx lib/lacaml_impl4_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex_io.cmx lib/lacaml_complex_io.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex_io.cmx lib/lacaml_complex_io.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_C.cmx lib/lacaml_impl2_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_C.cmx lib/lacaml_impl2_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_C.cmx lib/lacaml_mat2_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_C.cmx lib/lacaml_mat2_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_C.cmx lib/lacaml_vec2_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_C.cmx lib/lacaml_vec2_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float64.cmx lib/lacaml_float64.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_float64.cmx lib/lacaml_float64.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_float64.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_D.cmx lib/lacaml_mat4_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_D.cmx lib/lacaml_mat4_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_D.cmx lib/lacaml_vec4_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_D.cmx lib/lacaml_vec4_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_D.cmx lib/lacaml_impl4_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_D.cmx lib/lacaml_impl4_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_D.cmx lib/lacaml_impl2_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_D.cmx lib/lacaml_impl2_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_D.cmx lib/lacaml_mat2_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_D.cmx lib/lacaml_mat2_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_real_io.cmx lib/lacaml_real_io.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_real_io.cmx lib/lacaml_real_io.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_D.cmx lib/lacaml_vec2_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_D.cmx lib/lacaml_vec2_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_S.cmx lib/lacaml_mat4_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_S.cmx lib/lacaml_mat4_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_S.cmx lib/lacaml_impl4_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_S.cmx lib/lacaml_impl4_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_S.cmx lib/lacaml_impl2_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_S.cmx lib/lacaml_impl2_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_S.cmx lib/lacaml_mat2_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_S.cmx lib/lacaml_mat2_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_S.cmx lib/lacaml_vec2_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_S.cmx lib/lacaml_vec2_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex64.cmx lib/lacaml_complex64.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_complex64.cmx lib/lacaml_complex64.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_complex64.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_Z.cmx lib/lacaml_mat4_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat4_Z.cmx lib/lacaml_mat4_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_Z.cmx lib/lacaml_vec4_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec4_Z.cmx lib/lacaml_vec4_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_Z.cmx lib/lacaml_impl4_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl4_Z.cmx lib/lacaml_impl4_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_Z.cmx lib/lacaml_impl2_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_impl2_Z.cmx lib/lacaml_impl2_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_Z.cmx lib/lacaml_mat2_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_mat2_Z.cmx lib/lacaml_mat2_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_Z.cmx lib/lacaml_vec2_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_vec2_Z.cmx lib/lacaml_vec2_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_C.cmx lib/lacaml_C.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_C.cmx lib/lacaml_C.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_D.cmx lib/lacaml_D.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_D.cmx lib/lacaml_D.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_S.cmx lib/lacaml_S.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_S.cmx lib/lacaml_S.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_Z.cmx lib/lacaml_Z.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_Z.cmx lib/lacaml_Z.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml.cmx lib/lacaml.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml.cmx lib/lacaml.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml.ml", line 4, characters 0-31:
- 4 | module Real_io = Lacaml_real_io
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 60 [unused-module]: unused module Real_io.
- File "lib/lacaml.ml", line 5, characters 0-37:
- 5 | module Complex_io = Lacaml_complex_io
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 60 [unused-module]: unused module Complex_io.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -cclib -llacaml_stubs -cclib -lblas -cclib -llapack -I lib lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx lib/liblacaml_stubs.a -o lib/lacaml.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/lacaml_version.ml > lib/lacaml_version.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_version.cmo lib/lacaml_version.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_version.cmo lib/lacaml_version.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_version.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_version.cmx lib/lacaml_version.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -w Aer-44 -I lib -o lib/lacaml_version.cmx lib/lacaml_version.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/lacaml_version.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -cclib -llacaml_stubs -I lib -I lib lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx lib/lacaml_version.cmx -o lib/lacaml.cmxs
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules lib/install_printers.ml > lib/install_printers.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -I +compiler-libs -w Aer-44 -I lib -o lib/install_printers.cmo lib/install_printers.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -I +compiler-libs -w Aer-44 -I lib -o lib/install_printers.cmo lib/install_printers.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml/compiler-libs, /home/opam/.opam/4.14/lib/ocaml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/install_printers.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -a -I lib lib/install_printers.cmo -o lib/lacaml_top.cma
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -I +compiler-libs -w Aer-44 -I lib -o lib/install_printers.cmx lib/install_printers.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -ccopt -g -ccopt '-std=gnu99' -ccopt -O2 -ccopt -fPIC -ccopt -DPIC -ccopt -Wall -ccopt -pedantic -ccopt -Wextra -ccopt -Wunused -ccopt -Wno-long-long -package bigarray -package bytes -I +compiler-libs -w Aer-44 -I lib -o lib/install_printers.cmx lib/install_printers.ml
- findlib: [WARNING] Interface topdirs.cmi occurs in several directories: /home/opam/.opam/4.14/lib/ocaml/compiler-libs, /home/opam/.opam/4.14/lib/ocaml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "lib/install_printers.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -a -I lib lib/install_printers.cmx -o lib/lacaml_top.cmxa
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -shared -I lib lib/lacaml_top.cmxa lib/install_printers.cmx -o lib/lacaml_top.cmxs
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/blas/blas.ml > examples/blas/blas.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/blas -I lib -o examples/blas/blas.cmo examples/blas/blas.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/blas -I lib -o examples/blas/blas.cmo examples/blas/blas.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/blas/blas.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/blas -I lib -o examples/blas/blas.cmx examples/blas/blas.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/blas -I lib -o examples/blas/blas.cmx examples/blas/blas.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/blas/blas.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/blas lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/blas/blas.cmx -o examples/blas/blas.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/eig/eig.ml > examples/eig/eig.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/eig.cmo examples/eig/eig.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/eig.cmo examples/eig/eig.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/eig/eig.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/eig.cmx examples/eig/eig.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/eig.cmx examples/eig/eig.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/eig/eig.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/eig lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/eig/eig.cmx -o examples/eig/eig.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/eig/sbev.ml > examples/eig/sbev.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbev.cmo examples/eig/sbev.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbev.cmo examples/eig/sbev.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/eig/sbev.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbev.cmx examples/eig/sbev.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbev.cmx examples/eig/sbev.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/eig/sbev.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/eig lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/eig/sbev.cmx -o examples/eig/sbev.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/eig/sbgv.ml > examples/eig/sbgv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbgv.cmo examples/eig/sbgv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbgv.cmo examples/eig/sbgv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/eig/sbgv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbgv.cmx examples/eig/sbgv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/eig -I lib -o examples/eig/sbgv.cmx examples/eig/sbgv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/eig/sbgv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/eig lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/eig/sbgv.cmx -o examples/eig/sbgv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/lin_eq/lin_eq.ml > examples/lin_eq/lin_eq.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/lin_eq.cmo examples/lin_eq/lin_eq.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/lin_eq.cmo examples/lin_eq/lin_eq.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_eq/lin_eq.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/lin_eq.cmx examples/lin_eq/lin_eq.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/lin_eq.cmx examples/lin_eq/lin_eq.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_eq/lin_eq.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/lin_eq lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/lin_eq/lin_eq.cmx -o examples/lin_eq/lin_eq.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/lin_eq/gbsv.ml > examples/lin_eq/gbsv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/gbsv.cmo examples/lin_eq/gbsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/gbsv.cmo examples/lin_eq/gbsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_eq/gbsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/gbsv.cmx examples/lin_eq/gbsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq -I lib -o examples/lin_eq/gbsv.cmx examples/lin_eq/gbsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_eq/gbsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/lin_eq lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/lin_eq/gbsv.cmx -o examples/lin_eq/gbsv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/lin_eq_comp/lin_eq_comp.ml > examples/lin_eq_comp/lin_eq_comp.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq_comp -I lib -o examples/lin_eq_comp/lin_eq_comp.cmo examples/lin_eq_comp/lin_eq_comp.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq_comp -I lib -o examples/lin_eq_comp/lin_eq_comp.cmo examples/lin_eq_comp/lin_eq_comp.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_eq_comp/lin_eq_comp.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq_comp -I lib -o examples/lin_eq_comp/lin_eq_comp.cmx examples/lin_eq_comp/lin_eq_comp.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_eq_comp -I lib -o examples/lin_eq_comp/lin_eq_comp.cmx examples/lin_eq_comp/lin_eq_comp.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_eq_comp/lin_eq_comp.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/lin_eq_comp lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/lin_eq_comp/lin_eq_comp.cmx -o examples/lin_eq_comp/lin_eq_comp.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/lin_reg/lin_reg.ml > examples/lin_reg/lin_reg.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_reg -I lib -o examples/lin_reg/lin_reg.cmo examples/lin_reg/lin_reg.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_reg -I lib -o examples/lin_reg/lin_reg.cmo examples/lin_reg/lin_reg.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_reg/lin_reg.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_reg -I lib -o examples/lin_reg/lin_reg.cmx examples/lin_reg/lin_reg.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/lin_reg -I lib -o examples/lin_reg/lin_reg.cmx examples/lin_reg/lin_reg.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/lin_reg/lin_reg.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/lin_reg lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/lin_reg/lin_reg.cmx -o examples/lin_reg/lin_reg.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/qr/qr.ml > examples/qr/qr.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/qr -I lib -o examples/qr/qr.cmo examples/qr/qr.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/qr -I lib -o examples/qr/qr.cmo examples/qr/qr.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/qr/qr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/qr -I lib -o examples/qr/qr.cmx examples/qr/qr.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/qr -I lib -o examples/qr/qr.cmx examples/qr/qr.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/qr/qr.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/qr lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/qr/qr.cmx -o examples/qr/qr.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/svd/svd.ml > examples/svd/svd.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/svd -I lib -o examples/svd/svd.cmo examples/svd/svd.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/svd -I lib -o examples/svd/svd.cmo examples/svd/svd.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/svd/svd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/svd -I lib -o examples/svd/svd.cmx examples/svd/svd.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/svd -I lib -o examples/svd/svd.cmx examples/svd/svd.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/svd/svd.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/svd lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/svd/svd.cmx -o examples/svd/svd.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_gbsv.ml > examples/nag/nag_gbsv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gbsv.cmo examples/nag/nag_gbsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gbsv.cmo examples/nag/nag_gbsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_gbsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gbsv.cmx examples/nag/nag_gbsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gbsv.cmx examples/nag/nag_gbsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_gbsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_gbsv.cmx -o examples/nag/nag_gbsv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_gesv.ml > examples/nag/nag_gesv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gesv.cmo examples/nag/nag_gesv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gesv.cmo examples/nag/nag_gesv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_gesv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gesv.cmx examples/nag/nag_gesv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gesv.cmx examples/nag/nag_gesv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_gesv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_gesv.cmx -o examples/nag/nag_gesv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_gtsv.ml > examples/nag/nag_gtsv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gtsv.cmo examples/nag/nag_gtsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gtsv.cmo examples/nag/nag_gtsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_gtsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gtsv.cmx examples/nag/nag_gtsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_gtsv.cmx examples/nag/nag_gtsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_gtsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_gtsv.cmx -o examples/nag/nag_gtsv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_pbsv.ml > examples/nag/nag_pbsv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_pbsv.cmo examples/nag/nag_pbsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_pbsv.cmo examples/nag/nag_pbsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_pbsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_pbsv.cmx examples/nag/nag_pbsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_pbsv.cmx examples/nag/nag_pbsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_pbsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_pbsv.cmx -o examples/nag/nag_pbsv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_posv.ml > examples/nag/nag_posv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_posv.cmo examples/nag/nag_posv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_posv.cmo examples/nag/nag_posv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_posv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_posv.cmx examples/nag/nag_posv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_posv.cmx examples/nag/nag_posv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_posv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_posv.cmx -o examples/nag/nag_posv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_ppsv.ml > examples/nag/nag_ppsv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ppsv.cmo examples/nag/nag_ppsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ppsv.cmo examples/nag/nag_ppsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_ppsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ppsv.cmx examples/nag/nag_ppsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ppsv.cmx examples/nag/nag_ppsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_ppsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_ppsv.cmx -o examples/nag/nag_ppsv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_ptsv.ml > examples/nag/nag_ptsv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ptsv.cmo examples/nag/nag_ptsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ptsv.cmo examples/nag/nag_ptsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_ptsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ptsv.cmx examples/nag/nag_ptsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_ptsv.cmx examples/nag/nag_ptsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_ptsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_ptsv.cmx -o examples/nag/nag_ptsv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_spsv.ml > examples/nag/nag_spsv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_spsv.cmo examples/nag/nag_spsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_spsv.cmo examples/nag/nag_spsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_spsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_spsv.cmx examples/nag/nag_spsv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_spsv.cmx examples/nag/nag_spsv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_spsv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_spsv.cmx -o examples/nag/nag_spsv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/nag/nag_sysv.ml > examples/nag/nag_sysv.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_sysv.cmo examples/nag/nag_sysv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_sysv.cmo examples/nag/nag_sysv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_sysv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_sysv.cmx examples/nag/nag_sysv.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/nag -I lib -o examples/nag/nag_sysv.cmx examples/nag/nag_sysv.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/nag/nag_sysv.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/nag lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/nag/nag_sysv.cmx -o examples/nag/nag_sysv.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/schur/schur_real.ml > examples/schur/schur_real.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_real.cmo examples/schur/schur_real.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_real.cmo examples/schur/schur_real.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/schur/schur_real.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_real.cmx examples/schur/schur_real.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_real.cmx examples/schur/schur_real.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/schur/schur_real.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/schur lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/schur/schur_real.cmx -o examples/schur/schur_real.native
- + /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package bigarray -package bytes -modules examples/schur/schur_complex.ml > examples/schur/schur_complex.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_complex.cmo examples/schur/schur_complex.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlc -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_complex.cmo examples/schur/schur_complex.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/schur/schur_complex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_complex.cmx examples/schur/schur_complex.ml
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -c -g -annot -bin-annot -safe-string -no-alias-deps -strict-sequence -I lib -package bigarray -package bytes -w Aer-44 -I examples/schur -I lib -o examples/schur/schur_complex.cmx examples/schur/schur_complex.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r-44.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "examples/schur/schur_complex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- + /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -I lib -linkpkg -package bigarray -package bytes -I lib -I examples/schur lib/lacaml.cmxa lib/lacaml_common.cmx lib/lacaml_complex32.cmx lib/lacaml_io.cmx lib/lacaml_complex_io.cmx lib/lacaml_float32.cmx lib/lacaml_utils.cmx lib/lacaml_mat4_C.cmx lib/lacaml_vec4_C.cmx lib/lacaml_vec4_S.cmx lib/lacaml_impl4_C.cmx lib/lacaml_impl2_C.cmx lib/lacaml_mat2_C.cmx lib/lacaml_vec2_C.cmx lib/lacaml_C.cmx lib/lacaml_float64.cmx lib/lacaml_mat4_D.cmx lib/lacaml_vec4_D.cmx lib/lacaml_impl4_D.cmx lib/lacaml_impl2_D.cmx lib/lacaml_mat2_D.cmx lib/lacaml_real_io.cmx lib/lacaml_vec2_D.cmx lib/lacaml_D.cmx lib/lacaml_mat4_S.cmx lib/lacaml_impl4_S.cmx lib/lacaml_impl2_S.cmx lib/lacaml_mat2_S.cmx lib/lacaml_vec2_S.cmx lib/lacaml_S.cmx lib/lacaml_complex64.cmx lib/lacaml_mat4_Z.cmx lib/lacaml_vec4_Z.cmx lib/lacaml_impl4_Z.cmx lib/lacaml_impl2_Z.cmx lib/lacaml_mat2_Z.cmx lib/lacaml_vec2_Z.cmx lib/lacaml_Z.cmx lib/lacaml.cmx examples/schur/schur_complex.cmx -o examples/schur/schur_complex.native
- + /home/opam/.opam/4.14/bin/ocamlopt.opt unix.cmxa -I /home/opam/.opam/4.14/lib/ocamlbuild /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuildlib.cmxa myocamlbuild.ml /home/opam/.opam/4.14/lib/ocamlbuild/ocamlbuild.cmx -o myocamlbuild
- File "myocamlbuild.ml", line 155, characters 10-27:
- 155 |           Stream.of_channel chn
-                 ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 161, characters 10-21:
- 161 |           Stream.from
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 164, characters 23-34:
- 164 |                  match Stream.next st with
-                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 167, characters 20-34:
- 167 |                with Stream.Failure -> None)
-                           ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 170, characters 10-27:
- 170 |           Genlex.make_lexer ["="] st_line
-                 ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 173, characters 16-28:
- 173 |           match Stream.npeek 3 lexer with
-                       ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 15-27:
- 174 |             | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                      ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 32-42:
- 174 |             | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                       ^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 174, characters 48-61:
- 174 |             | [Genlex.Ident nm; Genlex.Kwd "="; Genlex.String value] ->
-                                                       ^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 175, characters 16-27:
- 175 |                 Stream.junk lexer;
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 176, characters 16-27:
- 176 |                 Stream.junk lexer;
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 177, characters 16-27:
- 177 |                 Stream.junk lexer;
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "myocamlbuild.ml", line 518, characters 43-62:
- 518 |                        List.map (fun m -> (String.uncapitalize m) ^ ".cmi")
-                                                  ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "myocamlbuild.ml", line 531, characters 51-70:
- 531 |                        List.map (fun m -> dir^"/"^(String.uncapitalize m)^".cmi")
-                                                          ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Ocamlbuild_plugin.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
-> compiled  lacaml.7.2.2
Processing  3/4: [lacaml: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "lacaml" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/lacaml.7.2.2)
- Removed /home/opam/.opam/4.14/lib/lacaml/META
- Removed /home/opam/.opam/4.14/lib/stublibs/dlllacaml_stubs.so.owner
- Removed /home/opam/.opam/4.14/lib/stublibs/dlllacaml_stubs.so
- Removed /home/opam/.opam/4.14/lib/lacaml
-> removed   lacaml.7.2.2
Processing  4/4: [lacaml: ocaml setup.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "ocaml" "setup.ml" "-install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/lacaml.7.2.2)
- File "./setup.ml", line 318, characters 20-36:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                           ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 318, characters 42-58:
- 318 |     String.compare (String.lowercase s1) (String.lowercase s2)
-                                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 14-30:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 327, characters 38-54:
- 327 |              (String.lowercase s1) = (String.lowercase s2)
-                                             ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 330, characters 25-41:
- 330 |            Hashtbl.hash (String.lowercase s)
-                                ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 368, characters 10-26:
- 368 |           String.lowercase buf
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 474, characters 13-29:
- 474 |              String.lowercase
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "./setup.ml", line 1381, characters 23-41:
- 1381 |          let compare = Pervasives.compare
-                               ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "./setup.ml", line 1825, characters 16-33:
- 1825 |     concat dir (String.capitalize base)
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "./setup.ml", line 1831, characters 16-35:
- 1831 |     concat dir (String.uncapitalize base)
-                        ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 2916, characters 10-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2922, characters 10-21:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2925, characters 23-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2928, characters 20-34:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2931, characters 10-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2934, characters 16-28:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 15-27:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 32-42:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2935, characters 48-61:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 2936, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2937, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 2938, characters 16-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3088, characters 4-21:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3107, characters 24-40:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3109, characters 21-33:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3110, characters 41-53:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3112, characters 41-54:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3114, characters 50-62:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3116, characters 50-63:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3118, characters 20-32:
- Alert deprecated: module Stdlib.Genlex
- Use the camlp-streams library instead.
- File "setup.ml", line 3131, characters 15-27:
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "setup.ml", line 3229, characters 16-34:
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "setup.ml", line 5847, characters 11-28:
- Alert deprecated: Stdlib.String.capitalize
- Use String.capitalize_ascii/StringLabels.capitalize_ascii instead.
- File "setup.ml", line 5848, characters 11-30:
- Alert deprecated: Stdlib.String.uncapitalize
- Use String.uncapitalize_ascii/StringLabels.uncapitalize_ascii instead.
- File "setup.ml", line 6484, characters 33-42:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 6485, characters 36-45:
- Warning 6 [labels-omitted]: label what was omitted in the application of this function.
- File "setup.ml", line 7905, characters 2-44:
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
- File "setup.ml", line 7909, characters 2-44:
- Warning 5 [ignored-partial-application]: this function application is partial,
- maybe some arguments are missing.
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.mli
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_common.mli
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_io.mli
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_S.mli
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_D.mli
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_C.mli
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_Z.mli
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_utils.ml
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_version.ml
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float32.ml
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float64.ml
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex32.ml
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex64.ml
- Installed /home/opam/.opam/4.14/lib/lacaml/liblacaml_stubs.a
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.cma
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.cmxa
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.a
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.cmxs
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex64.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex64.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex64.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex32.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex32.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex32.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float64.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float64.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float64.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float32.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float32.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float32.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_version.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_version.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_version.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_utils.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_utils.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_utils.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_Z.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_Z.cmti
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_Z.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_Z.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_C.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_C.cmti
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_C.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_C.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_D.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_D.cmti
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_D.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_D.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_S.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_S.cmti
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_S.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_S.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_io.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_io.cmti
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_io.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_io.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_common.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_common.cmti
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_common.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_common.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.cmti
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat2_Z.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat2_C.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat2_D.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat2_S.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat4_Z.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat4_C.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat4_D.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_mat4_S.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec2_Z.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec2_C.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec2_D.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec2_S.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec4_Z.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec4_C.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec4_D.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_vec4_S.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl2_Z.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl2_C.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl2_D.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl2_S.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl4_Z.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl4_C.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl4_D.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_impl4_S.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex_io.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_real_io.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex64.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_complex32.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float64.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_float32.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_version.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_utils.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_Z.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_C.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_D.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_S.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_io.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_common.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml.cmx
- Installed /home/opam/.opam/4.14/lib/lacaml/install_printers.ml
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_top.cma
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_top.cmxa
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_top.a
- Installed /home/opam/.opam/4.14/lib/lacaml/lacaml_top.cmxs
- Installed /home/opam/.opam/4.14/lib/lacaml/install_printers.cmi
- Installed /home/opam/.opam/4.14/lib/lacaml/install_printers.cmt
- Installed /home/opam/.opam/4.14/lib/lacaml/install_printers.annot
- Installed /home/opam/.opam/4.14/lib/lacaml/install_printers.cmx
- Installed /home/opam/.opam/4.14/lib/stublibs/dlllacaml_stubs.so
- Installed /home/opam/.opam/4.14/lib/stublibs/dlllacaml_stubs.so.owner
- ocamlfind: [WARNING] You have installed DLLs but the directory /home/opam/.opam/4.14/lib/stublibs is not mentioned in ld.conf
- Installed /home/opam/.opam/4.14/lib/lacaml/META
-> installed lacaml.7.2.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 19:23.57 ---> saved as "433823f9a35b2cc16650389b7db1560869e9f49bd7c3e714e6f702c157de4b1e"
Job succeeded
2026-03-03 19:24.07: Job succeeded