(not at the head of any monitored branch or PR)
2026-04-10 17:57.45: New job: test dose3.5.0.1 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.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" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall dose3.5.0.1; \
    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" != 'dose3.5.0.1' && 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 dose3.5.0.1) || true
RUN opam reinstall --with-test --verbose dose3.5.0.1; \
    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" != 'dose3.5.0.1' && 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-04-10 17:57.45: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-dose3.5.0.1-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.45: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (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 dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.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\" != 'dune.3.22.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dose3.5.0.1;\
             \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\" != 'dose3.5.0.1' && 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 dose3.5.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose dose3.5.0.1;\
             \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\" != 'dose3.5.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-10 17:57.45: Waiting for resource in pool OCluster
2026-04-11 03:31.38: Waiting for worker…
2026-04-11 03:33.21: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:33.33 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-04-11 03:33.33 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 03:33.33 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, 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.3
2026-04-11 03:33.33 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-04-11 03:33.33 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:33.34 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:33.34 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" 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 [121 kB]
- Fetched 211 kB in 0s (2063 kB/s)
- Reading package lists...
2026-04-11 03:33.34 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:33.34 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.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\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:33.34 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dose3.5.0.1;\
                        \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\" != 'dose3.5.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dose3.5.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
  - install base-bytes base    [required by extlib]
  - install cppo       1.8.0   [required by dose3]
  - install cudf       0.10    [required by dose3]
  - install dose3      5.0.1
  - install extlib     1.7.7-1 [required by dose3]
  - install ocamlbuild 0.16.1  [required by dose3]
  - install ocamlfind  1.9.8   [required by dose3]
  - install ocamlgraph 1.8.8   [required by dose3]
  - install re         1.14.0  [required by dose3]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved cudf.0.10  (cached)
-> retrieved dose3.5.0.1  (cached)
-> retrieved extlib.1.7.7-1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlgraph.1.8.8  (cached)
-> retrieved re.1.14.0  (cached)
-> installed cppo.1.8.0
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed extlib.1.7.7-1
-> installed cudf.0.10
-> installed ocamlgraph.1.8.8
-> installed dose3.5.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:34.07 ---> saved as "85939ae3ab5c7579d2a76523c1ce3bb767e98e2bbafa1c03bc4ee6dca3f5b345"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dose3.5.0.1  (https://opam.ocaml.org/cache)
-> removed   dose3.5.0.1
-> installed dose3.5.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:34.31 ---> saved as "df909289271d8f268ad62b042d3f4bea5a18cade8358fafb236c63b13a1ce190"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dose3.5.0.1;\
                        \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\" != 'dose3.5.0.1' && 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 dose3 5.0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dose3.5.0.1: extract]
-> retrieved dose3.5.0.1  (cached)
[dose3: patch] applying 0001-Install-mli-cmx-etc.patch
[dose3: patch] applying 0002-dont-make-printconf.patch
[dose3: patch] applying 0003-Fix-for-ocaml-4.06.patch
[dose3: patch] applying 0004-Add-unix-as-dependency-to-dose3.common-in-META.in.patch
Processing  2/4: [dose3: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1)
- checking for ocamlc... ocamlc
- OCaml version is 4.14.3
- OCaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking for ocamlc.opt... ocamlc.opt
- checking for ocamlopt.opt... ocamlopt.opt
- checking for dynlink.cmxa... yes
- checking for ocaml... ocaml
- checking for ocamldep... ocamldep
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for ocamldoc... ocamldoc
- checking for ocamlbuild... ocamlbuild
- checking OCaml Sys.os_type... Unix
- checking for gawk... no
- checking for mawk... mawk
- checking for cppo... yes
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for ocamlyacc... ocamlyacc
- checking for ocamlfind... ocamlfind
- checking for OCaml findlib package cudf... found
- checking for OCaml findlib package extlib... found
- checking for OCaml findlib package re.pcre... found
- checking for OCaml findlib package ocamlgraph... found
- checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
- checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to accept ISO C89... none needed
- checking how to run the C preprocessor... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 -E
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for ANSI C header files... 
- yes
- configure: creating ./config.status
- config.status: creating Makefile.config
- config.status: creating _tags
- config.status: creating META
- config.status: creating dose3.odocl
- config.status: creating common/versionInfo.ml
- config.status: creating applications/dose-tests.list
Processing  2/4: [dose3: make printconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "printconf" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1)
- 
- cudf: 0.10
- re.pcre: [unspecified]
- extlib: 1.7.7
- ocamlgraph: 1.8.8
- 
- DESTDIR: 
- OCAMLFIND_DESTDIR: 
- Prefix: /usr/local
- Libdir: /home/opam/.opam/4.14/lib
- Bindir: /usr/local/bin
- OCAML_OS_TYPE: Unix
- OCAML_SYSTEM: linux
- Code type: native
- ----------------------
- Install: ocamlfind install -destdir /home/opam/.opam/4.14/lib
- Remove: ocamlfind remove -destdir /home/opam/.opam/4.14/lib
- 
Processing  2/4: [dose3: make libs]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "libs" "apps" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1)
- /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- cppo -V OCAML:4.14.3 myocamlbuild.ml.pp -o myocamlbuild.ml
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY common/common.otarget
- + /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
- + ocamlfind ocamlc -config
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q common/format822_lexer.mll
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/format822_lexer.ml > common/format822_lexer.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/format822.ml > common/format822.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/input.mli > common/input.mli.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/url.mli > common/url.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/url.cmi common/url.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/url.cmi common/url.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/util.mli > common/util.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/input.cmi common/input.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/util.cmi common/util.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/input.cmi common/input.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/util.cmi common/util.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + /home/opam/.opam/4.14/bin/ocamlyacc common/format822_parser.mly
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/format822_parser.mli > common/format822_parser.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822.cmo common/format822.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822.cmo common/format822.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_parser.cmi common/format822_parser.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_parser.cmi common/format822_parser.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/format822_parser.ml > common/format822_parser.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/edosSolver.mli > common/edosSolver.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/edosSolver.cmi common/edosSolver.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/edosSolver.cmi common/edosSolver.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/edosSolver.ml > common/edosSolver.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/cudfSolver.mli > common/cudfSolver.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfSolver.cmi common/cudfSolver.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfSolver.cmi common/cudfSolver.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/cudfSolver.ml > common/cudfSolver.ml.depends
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q common/shell_lexer.mll
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/shell_lexer.ml > common/shell_lexer.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/shell_lexer.cmo common/shell_lexer.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/shell_lexer.cmo common/shell_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/input.ml > common/input.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/util.ml > common/util.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/cudfAdd.mli > common/cudfAdd.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfAdd.cmi common/cudfAdd.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfAdd.cmi common/cudfAdd.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/cudfAdd.ml > common/cudfAdd.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/cudfDiff.mli > common/cudfDiff.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfDiff.cmi common/cudfDiff.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfDiff.cmi common/cudfDiff.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/cudfDiff.ml > common/cudfDiff.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/versionInfo.ml > common/versionInfo.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/url.ml > common/url.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/criteria_types.ml > common/criteria_types.ml.depends
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q common/criteria_lexer.mll
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/criteria_lexer.ml > common/criteria_lexer.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlyacc common/criteria_parser.mly
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/criteria_parser.mli > common/criteria_parser.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_types.cmo common/criteria_types.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_types.cmo common/criteria_types.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_parser.cmi common/criteria_parser.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_parser.cmi common/criteria_parser.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/criteria_parser.ml > common/criteria_parser.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/criteria.mli > common/criteria.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria.cmi common/criteria.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria.cmi common/criteria.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules common/criteria.ml > common/criteria.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_lexer.cmo common/criteria_lexer.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_lexer.cmo common/criteria_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_lexer.cmo common/format822_lexer.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_parser.cmo common/format822_parser.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/edosSolver.cmo common/edosSolver.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfSolver.cmo common/cudfSolver.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/input.cmo common/input.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/util.cmo common/util.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfAdd.cmo common/cudfAdd.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfDiff.cmo common/cudfDiff.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/versionInfo.cmo common/versionInfo.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/url.cmo common/url.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_lexer.cmo common/format822_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_parser.cmo common/criteria_parser.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/versionInfo.cmo common/versionInfo.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria.cmo common/criteria.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/url.cmo common/url.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfDiff.cmo common/cudfDiff.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/input.cmo common/input.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_parser.cmo common/format822_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfSolver.cmo common/cudfSolver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/cudfSolver.ml", line 15, characters 14-21:
- 13 | .......
- 14 | 
- 15 | .....ne __la............
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_parser.cmo common/criteria_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfAdd.cmo common/cudfAdd.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/cudfAdd.ml", line 13, characters 14-21:
- 13 |  Remember the original hashtable module from Ocaml standard library,
-                    ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/util.cmo common/util.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/util.ml", line 96, characters 6-21:
- 95 | ......
- 96 |     end else i.......................................
- 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 "common/util.ml", line 103, characters 6-21:
- 100 | ......
- 101 |     end
- 102 | 
- 103 |   let.............................
- 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 "common/util.ml", line 163, characters 6-21:
- 162 | .....
- 163 |     ) fmt
- 164 | end
- 165 | 
- 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
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria.cmo common/criteria.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/criteria.ml", line 16, characters 14-21:
- 16 | efine __label __FILE__
-                    ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/edosSolver.cmo common/edosSolver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -pack common/util.cmo common/url.cmo common/input.cmo common/format822.cmo common/format822_parser.cmo common/format822_lexer.cmo common/edosSolver.cmo common/cudfSolver.cmo common/cudfAdd.cmo common/cudfDiff.cmo common/versionInfo.cmo common/criteria_types.cmo common/criteria_parser.cmo common/criteria_lexer.cmo common/criteria.cmo -o common/common.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/util.cmx common/util.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/util.cmx common/util.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/util.ml", line 96, characters 6-21:
- 95 | ......
- 96 |     end else i.......................................
- 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 "common/util.ml", line 103, characters 6-21:
- 100 | ......
- 101 |     end
- 102 | 
- 103 |   let.............................
- 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 "common/util.ml", line 163, characters 6-21:
- 162 | .....
- 163 |     ) fmt
- 164 | end
- 165 | 
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/url.cmx common/url.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/url.cmx common/url.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/input.cmx common/input.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/input.cmx common/input.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822.cmx common/format822.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822.cmx common/format822.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_parser.cmx common/format822_parser.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_parser.cmx common/format822_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/shell_lexer.cmx common/shell_lexer.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/shell_lexer.cmx common/shell_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfAdd.cmx common/cudfAdd.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfAdd.cmx common/cudfAdd.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/cudfAdd.ml", line 13, characters 14-21:
- 13 |  Remember the original hashtable module from Ocaml standard library,
-                    ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_types.cmx common/criteria_types.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_types.cmx common/criteria_types.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_parser.cmx common/criteria_parser.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_parser.cmx common/criteria_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_lexer.cmx common/criteria_lexer.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria_lexer.cmx common/criteria_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_lexer.cmx common/format822_lexer.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/edosSolver.cmx common/edosSolver.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfSolver.cmx common/cudfSolver.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfDiff.cmx common/cudfDiff.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/versionInfo.cmx common/versionInfo.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria.cmx common/criteria.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/versionInfo.cmx common/versionInfo.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/format822_lexer.cmx common/format822_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfDiff.cmx common/cudfDiff.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/criteria.cmx common/criteria.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/criteria.ml", line 16, characters 14-21:
- 16 | efine __label __FILE__
-                    ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/cudfSolver.cmx common/cudfSolver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "common/cudfSolver.ml", line 15, characters 14-21:
- 13 | .......
- 14 | 
- 15 | .....ne __la............
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Common -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I common -I doselibs -o common/edosSolver.cmx common/edosSolver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + touch common/common.mli  ; if  ocamlfind ocamlopt -pack -I common common/util.cmx common/url.cmx common/input.cmx common/format822.cmx common/format822_parser.cmx common/format822_lexer.cmx common/edosSolver.cmx common/cudfSolver.cmx common/cudfAdd.cmx common/cudfDiff.cmx common/versionInfo.cmx common/criteria_types.cmx common/criteria_parser.cmx common/criteria_lexer.cmx common/criteria.cmx -o common/common.cmx  ; then  rm -f common/common.mli  ; else  rm -f common/common.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I common common/shell_lexer.cmx common/common.cmx -o common/common.cmxa
- + ocamlfind ocamlc -a -I common common/shell_lexer.cmo common/common.cmo -o common/common.cma
- + ocamlfind ocamlopt -shared -linkall -I common common/common.cmxa -o common/common.cmxs
- # Parallel statistics: { count(total): 4(61), max: 12, min: 2, average(total): 5.500(1.295) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY versioning/versioning.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules versioning/debian.mli > versioning/debian.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/debian.cmi versioning/debian.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/debian.cmi versioning/debian.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules versioning/debian.ml > versioning/debian.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules versioning/semver.mli > versioning/semver.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semver.cmi versioning/semver.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semver.cmi versioning/semver.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules versioning/semver.ml > versioning/semver.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules versioning/semverNode.mli > versioning/semverNode.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semverNode.cmi versioning/semverNode.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semverNode.cmi versioning/semverNode.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules versioning/semverNode.ml > versioning/semverNode.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules versioning/utils.ml > versioning/utils.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/debian.cmo versioning/debian.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semver.cmo versioning/semver.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semverNode.cmo versioning/semverNode.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/utils.cmo versioning/utils.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semver.cmo versioning/semver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/utils.cmo versioning/utils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semverNode.cmo versioning/semverNode.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "versioning/semverNode.ml", line 17, characters 14-21:
- 15 | ...
- 16 | 
- 17 | ........._label ........
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "versioning/semverNode.ml", line 95, characters 17-29:
- 95 | ed.(3),parsed.(5),pre,build)
-                       ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- File "versioning/semverNode.ml", line 96, characters 16-26:
- 95 | ...
- 96 | ............nvalid_arg....................................................................
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- File "versioning/semverNode.ml", line 97, characters 16-26:
- 97 | "%s: Parsing Error. Invalid Version" version))
-                      ^^^^^^^^^^
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- File "versioning/semverNode.ml", line 111, characters 20-38:
- 111 | ....................e
- 111 |    2. We 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 "versioning/semverNode.ml", line 138, characters 11-29:
- 138 |   let c1 = Pervasives.compare x.major y.major in
-                  ^^^^^^^^^^^^^^^^^^
- 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 "versioning/semverNode.ml", line 141, characters 13-31:
- 141 |     let c2 = Pervasives.compare x.minor y.minor in
-                    ^^^^^^^^^^^^^^^^^^
- 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 "versioning/semverNode.ml", line 144, characters 13-31:
- 144 |     let c3 = Pervasives.compare x.patch y.patch in
-                    ^^^^^^^^^^^^^^^^^^
- 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
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/debian.cmo versioning/debian.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "versioning/debian.ml", line 19, characters 14-21:
- 19 | ine __label __FILE__
-                    ^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -pack versioning/debian.cmo versioning/semverNode.cmo versioning/semver.cmo versioning/utils.cmo -o versioning/versioning.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semverNode.cmx versioning/semverNode.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semverNode.cmx versioning/semverNode.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "versioning/semverNode.ml", line 17, characters 14-21:
- 15 | ...
- 16 | 
- 17 | ........._label ........
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "versioning/semverNode.ml", line 95, characters 17-29:
- 95 | ed.(3),parsed.(5),pre,build)
-                       ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- File "versioning/semverNode.ml", line 96, characters 16-26:
- 95 | ...
- 96 | ............nvalid_arg....................................................................
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- File "versioning/semverNode.ml", line 97, characters 16-26:
- 97 | "%s: Parsing Error. Invalid Version" version))
-                      ^^^^^^^^^^
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- File "versioning/semverNode.ml", line 111, characters 20-38:
- 111 | ....................e
- 111 |    2. We 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 "versioning/semverNode.ml", line 138, characters 11-29:
- 138 |   let c1 = Pervasives.compare x.major y.major in
-                  ^^^^^^^^^^^^^^^^^^
- 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 "versioning/semverNode.ml", line 141, characters 13-31:
- 141 |     let c2 = Pervasives.compare x.minor y.minor in
-                    ^^^^^^^^^^^^^^^^^^
- 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 "versioning/semverNode.ml", line 144, characters 13-31:
- 144 |     let c3 = Pervasives.compare x.patch y.patch in
-                    ^^^^^^^^^^^^^^^^^^
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/debian.cmx versioning/debian.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semver.cmx versioning/semver.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/utils.cmx versioning/utils.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/semver.cmx versioning/semver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/utils.cmx versioning/utils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Versioning -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I versioning -I doselibs -o versioning/debian.cmx versioning/debian.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "versioning/debian.ml", line 19, characters 14-21:
- 19 | ine __label __FILE__
-                    ^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + touch versioning/versioning.mli  ; if  ocamlfind ocamlopt -pack -I versioning versioning/debian.cmx versioning/semverNode.cmx versioning/semver.cmx versioning/utils.cmx -o versioning/versioning.cmx  ; then  rm -f versioning/versioning.mli  ; else  rm -f versioning/versioning.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I versioning versioning/versioning.cmx -o versioning/versioning.cmxa
- + ocamlfind ocamlc -a -I versioning versioning/versioning.cmo -o versioning/versioning.cma
- + ocamlfind ocamlopt -shared -linkall -I versioning versioning/versioning.cmxa -o versioning/versioning.cmxs
- # Parallel statistics: { count(total): 3(18), max: 4, min: 2, average(total): 3.000(1.333) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY pef/pef.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/packages_types.ml > pef/packages_types.ml.depends
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q pef/packages_lexer.mll
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/packages_lexer.ml > pef/packages_lexer.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlyacc pef/packages_parser.mly
- + /home/opam/.opam/4.14/bin/ocamlyacc pef/packages_parser.mly
- 2 rules never reduced
- 13 reduce/reduce conflicts.
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/packages_parser.mli > pef/packages_parser.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_types.cmo pef/packages_types.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_types.cmo pef/packages_types.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_parser.cmi pef/packages_parser.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_parser.cmi pef/packages_parser.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/packages_parser.ml > pef/packages_parser.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/pefcudf.ml > pef/pefcudf.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/packages.mli > pef/packages.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages.cmi pef/packages.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages.cmi pef/packages.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/packages.ml > pef/packages.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_lexer.cmo pef/packages_lexer.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_lexer.cmo pef/packages_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/printer.mli > pef/printer.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/printer.cmi pef/printer.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/printer.cmi pef/printer.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules pef/printer.ml > pef/printer.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_parser.cmo pef/packages_parser.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/pefcudf.cmo pef/pefcudf.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages.cmo pef/packages.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/printer.cmo pef/printer.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/printer.cmo pef/printer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/pefcudf.cmo pef/pefcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages.cmo pef/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "pef/packages.ml", line 15, characters 14-21:
- 14 | ...........
- 15 | ..en Comm..
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I pef -I doselibs -o pef/packages_parser.cmo pef/packages_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -pack pef/packages_types.cmo pef/packages_parser.cmo pef/packages_lexer.cmo pef/printer.cmo pef/packages.cmo pef/pefcudf.cmo -o pef/pef.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages_types.cmx pef/packages_types.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages_types.cmx pef/packages_types.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages_parser.cmx pef/packages_parser.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages_parser.cmx pef/packages_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages_lexer.cmx pef/packages_lexer.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages_lexer.cmx pef/packages_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/printer.cmx pef/printer.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/printer.cmx pef/printer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages.cmx pef/packages.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/packages.cmx pef/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "pef/packages.ml", line 15, characters 14-21:
- 14 | ...........
- 15 | ..en Comm..
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/pefcudf.cmx pef/pefcudf.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Pef -pp cppo -I pef -I doselibs -o pef/pefcudf.cmx pef/pefcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + touch pef/pef.mli  ; if  ocamlfind ocamlopt -pack -I pef pef/packages_types.cmx pef/packages_parser.cmx pef/packages_lexer.cmx pef/printer.cmx pef/packages.cmx pef/pefcudf.cmx -o pef/pef.cmx  ; then  rm -f pef/pef.mli  ; else  rm -f pef/pef.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I pef pef/pef.cmx -o pef/pef.cmxa
- + ocamlfind ocamlc -a -I pef pef/pef.cmo -o pef/pef.cma
- + ocamlfind ocamlopt -shared -linkall -I pef pef/pef.cmxa -o pef/pef.cmxs
- # Parallel statistics: { count(total): 2(28), max: 4, min: 2, average(total): 3.000(1.143) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY npm/npm.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + /home/opam/.opam/4.14/bin/ocamllex.opt -q npm/npm_lexer.mll
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules npm/npm_lexer.ml > npm/npm_lexer.ml.depends
- + /home/opam/.opam/4.14/bin/ocamlyacc npm/npm_parser.mly
- + /home/opam/.opam/4.14/bin/ocamlyacc npm/npm_parser.mly
- 1 rule never reduced
- 4 reduce/reduce conflicts.
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules npm/npm_parser.mli > npm/npm_parser.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npm_parser.cmi npm/npm_parser.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npm_parser.cmi npm/npm_parser.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules npm/npm_parser.ml > npm/npm_parser.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules npm/packages.mli > npm/packages.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/packages.cmi npm/packages.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/packages.cmi npm/packages.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules npm/packages.ml > npm/packages.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npm_lexer.cmo npm/npm_lexer.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npm_lexer.cmo npm/npm_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules npm/npmcudf.ml > npm/npmcudf.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npm_parser.cmo npm/npm_parser.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/packages.cmo npm/packages.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npmcudf.cmo npm/npmcudf.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npmcudf.cmo npm/npmcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/npm_parser.cmo npm/npm_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I npm -I doselibs -o npm/packages.cmo npm/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "npm/packages.ml", line 21, characters 14-21:
- 20 | 
- 21 | .............el __FI....
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "npm/packages.ml", line 32, characters 20-30:
- 32 | ....................) in
- 32 |      ...................................
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- + ocamlfind ocamlc -pack npm/npm_parser.cmo npm/npm_lexer.cmo npm/packages.cmo npm/npmcudf.cmo -o npm/npm.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/npm_parser.cmx npm/npm_parser.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/npm_parser.cmx npm/npm_parser.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/npm_lexer.cmx npm/npm_lexer.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/npm_lexer.cmx npm/npm_lexer.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/packages.cmx npm/packages.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/npmcudf.cmx npm/npmcudf.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/npmcudf.cmx npm/npmcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Npm -pp cppo -I npm -I doselibs -o npm/packages.cmx npm/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "npm/packages.ml", line 21, characters 14-21:
- 20 | 
- 21 | .............el __FI....
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "npm/packages.ml", line 32, characters 20-30:
- 32 | ....................) in
- 32 |      ...................................
- Warning 6 [labels-omitted]: label rex was omitted in the application of this function.
- + touch npm/npm.mli  ; if  ocamlfind ocamlopt -pack -I npm npm/npm_parser.cmx npm/npm_lexer.cmx npm/packages.cmx npm/npmcudf.cmx -o npm/npm.cmx  ; then  rm -f npm/npm.mli  ; else  rm -f npm/npm.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I npm npm/npm.cmx -o npm/npm.cmxa
- + ocamlfind ocamlc -a -I npm npm/npm.cmo -o npm/npm.cma
- + ocamlfind ocamlopt -shared -linkall -I npm npm/npm.cmxa -o npm/npm.cmxs
- # Parallel statistics: { count(total): 3(20), max: 3, min: 2, average(total): 2.333(1.200) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY deb/debian.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/packages.mli > deb/packages.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/packages.cmi deb/packages.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/packages.cmi deb/packages.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/packages.ml > deb/packages.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/apt.ml > deb/apt.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/sources.ml > deb/sources.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/architecture.mli > deb/architecture.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/architecture.cmi deb/architecture.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/architecture.cmi deb/architecture.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/debcudf.mli > deb/debcudf.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debcudf.cmi deb/debcudf.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debcudf.cmi deb/debcudf.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/debcudf.ml > deb/debcudf.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/sources.cmo deb/sources.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/sources.cmo deb/sources.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/sources.ml", line 30, characters 4-32:
- 30 | = Pef.Packages.parse_s ~required:true Pef.Packages.parse_version in
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 34, characters 4-32:
- 34 | ....) =
- 34 |     let f = Pef.Packages......................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 38, characters 4-32:
- 38 | ....rmula) =
- 38 |     let f = Pef.Pac................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 42, characters 4-32:
- 42 | ....ddepsformula) =
- 42 |     let f = .......................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 46, characters 4-32:
- 46 | .....builddepsformula) =
- 46 |     let............................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 50, characters 4-32:
- 50 | ....lddepslist) =
- 50 |     let f = Pe..................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 54, characters 4-32:
- 54 | ....builddepslist) =
- 54 |     let f =.....................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 58, characters 4-32:
- 58 | ....ypes.builddepslist) =
- 58 |     le..........................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 62, characters 4-32:
- 62 | ....n
- 62 |   method architecture = sn..............
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/release.mli > deb/release.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/release.cmi deb/release.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/release.cmi deb/release.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/release.ml > deb/release.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/architecture.ml > deb/architecture.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/debutil.mli > deb/debutil.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debutil.cmi deb/debutil.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debutil.cmi deb/debutil.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/debutil.ml > deb/debutil.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/evolution.ml > deb/evolution.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules deb/edsp.ml > deb/edsp.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/apt.cmo deb/apt.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/apt.cmo deb/apt.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/apt.ml", line 15, characters 14-21:
-    | ....
- 15 | .........ib
- 15 | open.......
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/packages.cmo deb/packages.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debcudf.cmo deb/debcudf.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/release.cmo deb/release.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/architecture.cmo deb/architecture.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debutil.cmo deb/debutil.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/evolution.cmo deb/evolution.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/edsp.cmo deb/edsp.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debutil.cmo deb/debutil.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/release.cmo deb/release.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/evolution.cmo deb/evolution.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/architecture.cmo deb/architecture.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/architecture.ml", line 18, characters 14-21:
- 17 | .......
- 18 | ......ommon
- 19 | 
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/edsp.cmo deb/edsp.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/edsp.ml", line 15, characters 14-21:
-    | ...
- 15 | ..........b
- 15 | open ......
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/packages.cmo deb/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/packages.ml", line 122, characters 4-30:
- 122 | ....ing_wl oc priority;
- 122 |     Pe.............................................
- Warning 6 [labels-omitted]: label tostring was omitted in the application of this function.
- File "deb/packages.ml", line 125, characters 4-30:
- 125 | ....formula_wl oc depends;
- 125 |    ..............................................
- Warning 6 [labels-omitted]: label tostring was omitted in the application of this function.
- File "deb/packages.ml", line 197, characters 17-35:
-     | ..
- 197 | ..............e x y =
- 197 |       let ..............
- 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 "deb/packages.ml", line 233, characters 19-33:
- 233 | rex:installed_re (pkg#get_extra "Status")
-                          ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "deb/packages.ml", line 235, characters 6-20:
- 235 | y match String.split (pkg#get_extra "Status") " " with
-             ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I deb -I doselibs -o deb/debcudf.cmo deb/debcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/debcudf.ml", line 17, characters 16-34:
-    | .............
- 17 | ..d)
- 17 | module OcamlHas..............
- 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
- + ocamlfind ocamlc -pack deb/packages.cmo deb/apt.cmo deb/architecture.cmo deb/sources.cmo deb/debcudf.cmo deb/release.cmo deb/debutil.cmo deb/evolution.cmo deb/edsp.cmo -o deb/debian.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/packages.cmx deb/packages.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/packages.cmx deb/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/packages.ml", line 122, characters 4-30:
- 122 | ....ing_wl oc priority;
- 122 |     Pe.............................................
- Warning 6 [labels-omitted]: label tostring was omitted in the application of this function.
- File "deb/packages.ml", line 125, characters 4-30:
- 125 | ....formula_wl oc depends;
- 125 |    ..............................................
- Warning 6 [labels-omitted]: label tostring was omitted in the application of this function.
- File "deb/packages.ml", line 197, characters 17-35:
-     | ..
- 197 | ..............e x y =
- 197 |       let ..............
- 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 "deb/packages.ml", line 233, characters 19-33:
- 233 | rex:installed_re (pkg#get_extra "Status")
-                          ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- File "deb/packages.ml", line 235, characters 6-20:
- 235 | y match String.split (pkg#get_extra "Status") " " with
-             ^^^^^^^^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/architecture.cmx deb/architecture.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/architecture.cmx deb/architecture.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/architecture.ml", line 18, characters 14-21:
- 17 | .......
- 18 | ......ommon
- 19 | 
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/sources.cmx deb/sources.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/sources.cmx deb/sources.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/sources.ml", line 30, characters 4-32:
- 30 | = Pef.Packages.parse_s ~required:true Pef.Packages.parse_version in
-          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 34, characters 4-32:
- 34 | ....) =
- 34 |     let f = Pef.Packages......................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 38, characters 4-32:
- 38 | ....rmula) =
- 38 |     let f = Pef.Pac................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 42, characters 4-32:
- 42 | ....ddepsformula) =
- 42 |     let f = .......................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 46, characters 4-32:
- 46 | .....builddepsformula) =
- 46 |     let............................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 50, characters 4-32:
- 50 | ....lddepslist) =
- 50 |     let f = Pe..................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 54, characters 4-32:
- 54 | ....builddepslist) =
- 54 |     let f =.....................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 58, characters 4-32:
- 58 | ....ypes.builddepslist) =
- 58 |     le..........................................................................
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- File "deb/sources.ml", line 62, characters 4-32:
- 62 | ....n
- 62 |   method architecture = sn..............
- Warning 6 [labels-omitted]: labels parse, par, field were omitted in the application of this function.
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/apt.cmx deb/apt.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/apt.cmx deb/apt.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/apt.ml", line 15, characters 14-21:
-    | ....
- 15 | .........ib
- 15 | open.......
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/debcudf.cmx deb/debcudf.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/debcudf.cmx deb/debcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/debcudf.ml", line 17, characters 16-34:
-    | .............
- 17 | ..d)
- 17 | module OcamlHas..............
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/release.cmx deb/release.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/debutil.cmx deb/debutil.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/evolution.cmx deb/evolution.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/edsp.cmx deb/edsp.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/release.cmx deb/release.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/debutil.cmx deb/debutil.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/evolution.cmx deb/evolution.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Debian -pp cppo -I deb -I doselibs -o deb/edsp.cmx deb/edsp.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "deb/edsp.ml", line 15, characters 14-21:
-    | ...
- 15 | ..........b
- 15 | open ......
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + touch deb/debian.mli  ; if  ocamlfind ocamlopt -pack -I deb deb/packages.cmx deb/apt.cmx deb/architecture.cmx deb/sources.cmx deb/debcudf.cmx deb/release.cmx deb/debutil.cmx deb/evolution.cmx deb/edsp.cmx -o deb/debian.cmx  ; then  rm -f deb/debian.mli  ; else  rm -f deb/debian.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I deb deb/debian.cmx -o deb/debian.cmxa
- + ocamlfind ocamlc -a -I deb deb/debian.cmo -o deb/debian.cma
- + ocamlfind ocamlopt -shared -linkall -I deb deb/debian.cmxa -o deb/debian.cmxs
- # Parallel statistics: { count(total): 3(33), max: 7, min: 2, average(total): 4.333(1.303) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY opencsw/csw.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules opencsw/cswcudf.ml > opencsw/cswcudf.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules opencsw/packages.ml > opencsw/packages.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opencsw -I doselibs -o opencsw/packages.cmo opencsw/packages.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opencsw -I doselibs -o opencsw/packages.cmo opencsw/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "opencsw/packages.ml", line 15, characters 14-21:
- 14 | ........
- 15 | .....Common
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opencsw -I doselibs -o opencsw/cswcudf.cmo opencsw/cswcudf.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opencsw -I doselibs -o opencsw/cswcudf.cmo opencsw/cswcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -pack opencsw/packages.cmo opencsw/cswcudf.cmo -o opencsw/csw.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Csw -pp cppo -I opencsw -I doselibs -o opencsw/packages.cmx opencsw/packages.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Csw -pp cppo -I opencsw -I doselibs -o opencsw/packages.cmx opencsw/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "opencsw/packages.ml", line 15, characters 14-21:
- 14 | ........
- 15 | .....Common
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Csw -pp cppo -I opencsw -I doselibs -o opencsw/cswcudf.cmx opencsw/cswcudf.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Csw -pp cppo -I opencsw -I doselibs -o opencsw/cswcudf.cmx opencsw/cswcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + touch opencsw/csw.mli  ; if  ocamlfind ocamlopt -pack -I opencsw opencsw/packages.cmx opencsw/cswcudf.cmx -o opencsw/csw.cmx  ; then  rm -f opencsw/csw.mli  ; else  rm -f opencsw/csw.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I opencsw opencsw/csw.cmx -o opencsw/csw.cmxa
- + ocamlfind ocamlc -a -I opencsw opencsw/csw.cmo -o opencsw/csw.cma
- + ocamlfind ocamlopt -shared -linkall -I opencsw opencsw/csw.cmxa -o opencsw/csw.cmxs
- # Parallel statistics: { count(total): 1(11), max: 2, min: 2, average(total): 2.000(1.091) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY opam/opam.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules opam/opamcudf.ml > opam/opamcudf.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules opam/packages.mli > opam/packages.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opam -I doselibs -o opam/packages.cmi opam/packages.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opam -I doselibs -o opam/packages.cmi opam/packages.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -modules opam/packages.ml > opam/packages.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opam -I doselibs -o opam/opamcudf.cmo opam/opamcudf.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opam -I doselibs -o opam/packages.cmo opam/packages.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opam -I doselibs -o opam/opamcudf.cmo opam/opamcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -I opam -I doselibs -o opam/packages.cmo opam/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -pack opam/packages.cmo opam/opamcudf.cmo -o opam/opam.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Opam -pp cppo -I opam -I doselibs -o opam/packages.cmx opam/packages.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Opam -pp cppo -I opam -I doselibs -o opam/packages.cmx opam/packages.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Opam -pp cppo -I opam -I doselibs -o opam/opamcudf.cmx opam/opamcudf.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Opam -pp cppo -I opam -I doselibs -o opam/opamcudf.cmx opam/opamcudf.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + touch opam/opam.mli  ; if  ocamlfind ocamlopt -pack -I opam opam/packages.cmx opam/opamcudf.cmx -o opam/opam.cmx  ; then  rm -f opam/opam.mli  ; else  rm -f opam/opam.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I opam opam/opam.cmx -o opam/opam.cmxa
- + ocamlfind ocamlc -a -I opam opam/opam.cmo -o opam/opam.cma
- + ocamlfind ocamlopt -shared -linkall -I opam opam/opam.cmxa -o opam/opam.cmxs
- # Parallel statistics: { count(total): 2(12), max: 2, min: 2, average(total): 2.000(1.167) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY algo/algo.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/diagnostic.mli > algo/diagnostic.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/diagnostic.cmi algo/diagnostic.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/diagnostic.cmi algo/diagnostic.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/diagnostic.ml > algo/diagnostic.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/defaultgraphs.ml > algo/defaultgraphs.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/defaultgraphs.cmo algo/defaultgraphs.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/defaultgraphs.cmo algo/defaultgraphs.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/defaultgraphs.ml", line 95, characters 15-33:
- 95 | ...............! *)
- 95 |       |Or i -................
- 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 "algo/defaultgraphs.ml", line 118, characters 22-40:
- 115 | ................
- 116 | .....
- 117 | 
- 118 |   let default_pp..........................
- 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 "algo/defaultgraphs.ml", line 321, characters 14-32:
- 321 | > Hashtbl.hash (0,p.Cudf.package,p.Cudf.version)
-                     ^^^^^^^^^^^^^^^^^^
- 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 "algo/defaultgraphs.ml", line 723, characters 18-36:
- 722 | ...........
- 723 | ......le O = GraphOper(G.
- 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
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/depsolver_int.mli > algo/depsolver_int.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver_int.cmi algo/depsolver_int.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver_int.cmi algo/depsolver_int.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/depsolver_int.ml > algo/depsolver_int.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/depsolver.mli > algo/depsolver.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver.cmi algo/depsolver.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver.cmi algo/depsolver.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/depsolver.ml > algo/depsolver.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/flatten.ml > algo/flatten.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/statistics.ml > algo/statistics.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/dominators.ml > algo/dominators.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/strongdeps.mli > algo/strongdeps.mli.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongdeps.cmi algo/strongdeps.mli
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongdeps.cmi algo/strongdeps.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/strongdeps.ml > algo/strongdeps.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/strongconflicts_int.ml > algo/strongconflicts_int.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules algo/strongconflicts.ml > algo/strongconflicts.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts_int.cmo algo/strongconflicts_int.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts_int.cmo algo/strongconflicts_int.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/strongconflicts_int.ml", line 29, characters 16-34:
- 29 |  Graph.Imperative.Graph.ConcreteLabeled(PkgV)(CflE)
-                      ^^^^^^^^^^^^^^^^^^
- 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 "algo/strongconflicts_int.ml", line 46, characters 55-73:
-    | ..............
- 46 | ........................................23 in
- 46 |   Cudf.iteri.....................
- 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
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/diagnostic.cmo algo/diagnostic.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver_int.cmo algo/depsolver_int.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver.cmo algo/depsolver.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/flatten.cmo algo/flatten.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/statistics.cmo algo/statistics.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/dominators.cmo algo/dominators.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongdeps.cmo algo/strongdeps.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts.cmo algo/strongconflicts.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts.cmo algo/strongconflicts.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/strongconflicts.ml", line 27, characters 16-34:
- 27 | ................ph.PkgV)(CflE)
-    | 
- 27 | (*..........
- 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
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongdeps.cmo algo/strongdeps.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver_int.cmo algo/depsolver_int.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/dominators.cmo algo/dominators.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/flatten.cmo algo/flatten.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/statistics.cmo algo/statistics.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver.cmo algo/depsolver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/diagnostic.cmo algo/diagnostic.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/diagnostic.ml", line 308, characters 12-30:
-     | .........
- 308 | ..  else c
-     |   in
- 308 |   cm.....
- 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 "algo/diagnostic.ml", line 509, characters 20-38:
- 509 | ....................alse root l  in
- 509 |   ..........................................
- 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
- + ocamlfind ocamlc -pack algo/defaultgraphs.cmo algo/diagnostic.cmo algo/depsolver_int.cmo algo/depsolver.cmo algo/flatten.cmo algo/statistics.cmo algo/dominators.cmo algo/strongdeps.cmo algo/strongconflicts_int.cmo algo/strongconflicts.cmo -o algo/algo.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/defaultgraphs.cmx algo/defaultgraphs.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/defaultgraphs.cmx algo/defaultgraphs.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/defaultgraphs.ml", line 95, characters 15-33:
- 95 | ...............! *)
- 95 |       |Or i -................
- 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 "algo/defaultgraphs.ml", line 118, characters 22-40:
- 115 | ................
- 116 | .....
- 117 | 
- 118 |   let default_pp..........................
- 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 "algo/defaultgraphs.ml", line 321, characters 14-32:
- 321 | > Hashtbl.hash (0,p.Cudf.package,p.Cudf.version)
-                     ^^^^^^^^^^^^^^^^^^
- 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 "algo/defaultgraphs.ml", line 723, characters 18-36:
- 722 | ...........
- 723 | ......le O = GraphOper(G.
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/diagnostic.cmx algo/diagnostic.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/diagnostic.cmx algo/diagnostic.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/diagnostic.ml", line 308, characters 12-30:
-     | .........
- 308 | ..  else c
-     |   in
- 308 |   cm.....
- 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 "algo/diagnostic.ml", line 509, characters 20-38:
- 509 | ....................alse root l  in
- 509 |   ..........................................
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver_int.cmx algo/depsolver_int.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver_int.cmx algo/depsolver_int.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver.cmx algo/depsolver.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/depsolver.cmx algo/depsolver.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts_int.cmx algo/strongconflicts_int.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts_int.cmx algo/strongconflicts_int.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/strongconflicts_int.ml", line 29, characters 16-34:
- 29 |  Graph.Imperative.Graph.ConcreteLabeled(PkgV)(CflE)
-                      ^^^^^^^^^^^^^^^^^^
- 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 "algo/strongconflicts_int.ml", line 46, characters 55-73:
-    | ..............
- 46 | ........................................23 in
- 46 |   Cudf.iteri.....................
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/flatten.cmx algo/flatten.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/statistics.cmx algo/statistics.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/dominators.cmx algo/dominators.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongdeps.cmx algo/strongdeps.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts.cmx algo/strongconflicts.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongconflicts.cmx algo/strongconflicts.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "algo/strongconflicts.ml", line 27, characters 16-34:
- 27 | ................ph.PkgV)(CflE)
-    | 
- 27 | (*..........
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/strongdeps.cmx algo/strongdeps.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/dominators.cmx algo/dominators.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/flatten.cmx algo/flatten.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -package ocamlgraph -for-pack Algo -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I algo -I doselibs -o algo/statistics.cmx algo/statistics.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + touch algo/algo.mli  ; if  ocamlfind ocamlopt -pack -I algo algo/defaultgraphs.cmx algo/diagnostic.cmx algo/depsolver_int.cmx algo/depsolver.cmx algo/flatten.cmx algo/statistics.cmx algo/dominators.cmx algo/strongdeps.cmx algo/strongconflicts_int.cmx algo/strongconflicts.cmx -o algo/algo.cmx  ; then  rm -f algo/algo.mli  ; else  rm -f algo/algo.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I algo algo/algo.cmx -o algo/algo.cmxa
- + ocamlfind ocamlc -a -I algo algo/algo.cmo -o algo/algo.cma
- + ocamlfind ocamlopt -shared -linkall -I algo algo/algo.cmxa -o algo/algo.cmxs
- # Parallel statistics: { count(total): 3(32), max: 8, min: 2, average(total): 5.000(1.375) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY doseparseNoRpm/doseparseNoRpm.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparseNoRpm/stdDebian.ml > doseparseNoRpm/stdDebian.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparseNoRpm/stdDebug.ml > doseparseNoRpm/stdDebug.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparseNoRpm/stdLoaders.ml > doseparseNoRpm/stdLoaders.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparseNoRpm/stdOptions.ml > doseparseNoRpm/stdOptions.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebian.cmo doseparseNoRpm/stdDebian.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebian.cmo doseparseNoRpm/stdDebian.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparseNoRpm/stdUtils.ml > doseparseNoRpm/stdUtils.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdOptions.cmo doseparseNoRpm/stdOptions.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdUtils.cmo doseparseNoRpm/stdUtils.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdUtils.cmo doseparseNoRpm/stdUtils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "doseparseNoRpm/stdUtils.ml", line 94, characters 10-25:
- 94 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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 "doseparseNoRpm/stdUtils.ml", line 99, characters 10-25:
- 99 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdOptions.cmo doseparseNoRpm/stdOptions.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebug.cmo doseparseNoRpm/stdDebug.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdLoaders.cmo doseparseNoRpm/stdLoaders.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebug.cmo doseparseNoRpm/stdDebug.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdLoaders.cmo doseparseNoRpm/stdLoaders.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -pack doseparseNoRpm/stdDebian.cmo doseparseNoRpm/stdDebug.cmo doseparseNoRpm/stdOptions.cmo doseparseNoRpm/stdUtils.cmo doseparseNoRpm/stdLoaders.cmo -o doseparseNoRpm/doseparseNoRpm.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebian.cmx doseparseNoRpm/stdDebian.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebian.cmx doseparseNoRpm/stdDebian.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdOptions.cmx doseparseNoRpm/stdOptions.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdUtils.cmx doseparseNoRpm/stdUtils.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdUtils.cmx doseparseNoRpm/stdUtils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "doseparseNoRpm/stdUtils.ml", line 94, characters 10-25:
- 94 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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 "doseparseNoRpm/stdUtils.ml", line 99, characters 10-25:
- 99 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdOptions.cmx doseparseNoRpm/stdOptions.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebug.cmx doseparseNoRpm/stdDebug.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdLoaders.cmx doseparseNoRpm/stdLoaders.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdDebug.cmx doseparseNoRpm/stdDebug.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack DoseparseNoRpm -pp cppo -pp 'cppo -V OCAML:4.14.3   -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparseNoRpm -I doselibs -o doseparseNoRpm/stdLoaders.cmx doseparseNoRpm/stdLoaders.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + touch doseparseNoRpm/doseparseNoRpm.mli  ; if  ocamlfind ocamlopt -pack -I doseparseNoRpm doseparseNoRpm/stdDebian.cmx doseparseNoRpm/stdDebug.cmx doseparseNoRpm/stdOptions.cmx doseparseNoRpm/stdUtils.cmx doseparseNoRpm/stdLoaders.cmx -o doseparseNoRpm/doseparseNoRpm.cmx  ; then  rm -f doseparseNoRpm/doseparseNoRpm.mli  ; else  rm -f doseparseNoRpm/doseparseNoRpm.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I doseparseNoRpm doseparseNoRpm/doseparseNoRpm.cmx -o doseparseNoRpm/doseparseNoRpm.cmxa
- + ocamlfind ocamlc -a -I doseparseNoRpm doseparseNoRpm/doseparseNoRpm.cmo -o doseparseNoRpm/doseparseNoRpm.cma
- + ocamlfind ocamlopt -shared -linkall -I doseparseNoRpm doseparseNoRpm/doseparseNoRpm.cmxa -o doseparseNoRpm/doseparseNoRpm.cmxs
- # Parallel statistics: { count(total): 5(16), max: 2, min: 2, average(total): 2.000(1.312) }
- ocamlbuild  -j 10 -no-links -cflags -warn-error,FPSXY doseparse/doseparse.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparse/stdDebian.ml > doseparse/stdDebian.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparse/stdDebug.ml > doseparse/stdDebug.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparse/stdLoaders.ml > doseparse/stdLoaders.ml.depends
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparse/stdOptions.ml > doseparse/stdOptions.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebian.cmo doseparse/stdDebian.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebian.cmo doseparse/stdDebian.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamldep -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -modules doseparse/stdUtils.ml > doseparse/stdUtils.ml.depends
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdOptions.cmo doseparse/stdOptions.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdUtils.cmo doseparse/stdUtils.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdUtils.cmo doseparse/stdUtils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "doseparse/stdUtils.ml", line 94, characters 10-25:
- 94 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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 "doseparse/stdUtils.ml", line 99, characters 10-25:
- 99 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdOptions.cmo doseparse/stdOptions.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebug.cmo doseparse/stdDebug.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdLoaders.cmo doseparse/stdLoaders.ml
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebug.cmo doseparse/stdDebug.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdLoaders.cmo doseparse/stdLoaders.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlc -pack doseparse/stdDebian.cmo doseparse/stdDebug.cmo doseparse/stdOptions.cmo doseparse/stdUtils.cmo doseparse/stdLoaders.cmo -o doseparse/doseparse.cmo
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebian.cmx doseparse/stdDebian.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebian.cmx doseparse/stdDebian.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdOptions.cmx doseparse/stdOptions.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdUtils.cmx doseparse/stdUtils.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdUtils.cmx doseparse/stdUtils.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- File "doseparse/stdUtils.ml", line 94, characters 10-25:
- 94 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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 "doseparse/stdUtils.ml", line 99, characters 10-25:
- 99 |           Pervasives.exit(64) end
-                ^^^^^^^^^^^^^^^
- 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
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdOptions.cmx doseparse/stdOptions.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebug.cmx doseparse/stdDebug.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdLoaders.cmx doseparse/stdLoaders.ml
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdDebug.cmx doseparse/stdDebug.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + ocamlfind ocamlopt -c -warn-error FPSXY -w -24 -ccopt -O9 -package extlib -package re.pcre -package cudf -for-pack Doseparse -pp cppo -pp 'cppo -V OCAML:4.14.3    -D '\''OCAMLGRAPHVERSION 188'\''' -I doseparse -I doselibs -o doseparse/stdLoaders.cmx doseparse/stdLoaders.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'FPSXY', is deprecated.
- Use the equivalent signed form: +F+P+S+X+Y.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- Hint: Did you make a spelling mistake when using a mnemonic name?
- + touch doseparse/doseparse.mli  ; if  ocamlfind ocamlopt -pack -I doseparse doseparse/stdDebian.cmx doseparse/stdDebug.cmx doseparse/stdOptions.cmx doseparse/stdUtils.cmx doseparse/stdLoaders.cmx -o doseparse/doseparse.cmx  ; then  rm -f doseparse/doseparse.mli  ; else  rm -f doseparse/doseparse.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a -I doseparse doseparse/doseparse.cmx -o doseparse/doseparse.cmxa
- + ocamlfind ocamlc -a -I doseparse doseparse/doseparse.cmo -o doseparse/doseparse.cma
- + ocamlfind ocamlopt -shared -linkall -I doseparse doseparse/doseparse.cmxa -o doseparse/doseparse.cmxs
- # Parallel statistics: { count(total): 5(16), max: 2, min: 2, average(total): 2.000(1.312) }
- ocamlbuild  -j 10 applications/apps.otarget
- + /home/opam/.opam/4.14/bin/ocamlc.opt -config
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -modules applications/distcheck.ml > applications/distcheck.ml.depends
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/distcheck.cmo applications/distcheck.ml
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/distcheck.cmx applications/distcheck.ml
- + ocamlfind ocamldep -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -modules applications/deb-buildcheck.ml > applications/deb-buildcheck.ml.depends
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/deb-buildcheck.cmo applications/deb-buildcheck.ml
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/deb-buildcheck.cmx applications/deb-buildcheck.ml
- + ocamlfind ocamldep -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -modules applications/ceve.ml > applications/ceve.ml.depends
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/ceve.cmo applications/ceve.ml
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/ceve.cmx applications/ceve.ml
- + ocamlfind ocamldep -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -modules applications/apt-cudf.ml > applications/apt-cudf.ml.depends
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/apt-cudf.cmo applications/apt-cudf.ml
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/apt-cudf.cmo applications/apt-cudf.ml
- File "applications/apt-cudf.ml", line 21, characters 14-21:
- 21 | Util.Logging(struct let label = "apt-cudf backend" end) ;;
-                    ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/apt-cudf.cmx applications/apt-cudf.ml
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/apt-cudf.cmx applications/apt-cudf.ml
- File "applications/apt-cudf.ml", line 21, characters 14-21:
- 21 | Util.Logging(struct let label = "apt-cudf backend" end) ;;
-                    ^^^^^^^
- Alert deprecated: module Re_pcre
- Use Re.Pcre
- + ocamlfind ocamldep -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -modules applications/outdated.ml > applications/outdated.ml.depends
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/outdated.cmo applications/outdated.ml
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/outdated.cmx applications/outdated.ml
- + ocamlfind ocamldep -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -modules applications/challenged.ml > applications/challenged.ml.depends
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/challenged.cmo applications/challenged.ml
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/challenged.cmo applications/challenged.ml
- File "applications/challenged.ml", line 278, characters 10-37:
- 278 | ..........ement of vl
-     |        *)
- 278 |      ...................................................................................
- Warning 6 [labels-omitted]: label pp_property was omitted in the application of this function.
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/challenged.cmx applications/challenged.ml
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/challenged.cmx applications/challenged.ml
- File "applications/challenged.ml", line 278, characters 10-37:
- 278 | ..........ement of vl
-     |        *)
- 278 |      ...................................................................................
- Warning 6 [labels-omitted]: label pp_property was omitted in the application of this function.
- + ocamlfind ocamldep -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -modules applications/deb-coinstall.ml > applications/deb-coinstall.ml.depends
- + ocamlfind ocamlc -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/deb-coinstall.cmo applications/deb-coinstall.ml
- + ocamlfind ocamlopt -c -w -24 -ccopt -O9 -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -pp cppo -pp 'cppo -V OCAML:4.14.3  -D '\''OCAMLGRAPHVERSION 188'\''' -I applications -I doselibs -o applications/deb-coinstall.cmx applications/deb-coinstall.ml
- + ocamlfind ocamlopt -linkpkg doselibs/common.cmxa doselibs/versioning.cmxa doselibs/pef.cmxa doselibs/opam.cmxa doselibs/npm.cmxa doselibs/debian.cmxa doselibs/csw.cmxa doselibs/algo.cmxa doselibs/doseparse.cmxa -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -I applications applications/distcheck.cmx -o applications/distcheck.native
- + ocamlfind ocamlopt -linkpkg doselibs/common.cmxa doselibs/versioning.cmxa doselibs/pef.cmxa doselibs/opam.cmxa doselibs/npm.cmxa doselibs/debian.cmxa doselibs/csw.cmxa doselibs/algo.cmxa doselibs/doseparseNoRpm.cmxa -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -I applications applications/deb-buildcheck.cmx -o applications/deb-buildcheck.native
- + ocamlfind ocamlopt -linkpkg doselibs/common.cmxa doselibs/versioning.cmxa doselibs/pef.cmxa doselibs/opam.cmxa doselibs/npm.cmxa doselibs/debian.cmxa doselibs/csw.cmxa doselibs/algo.cmxa doselibs/doseparse.cmxa -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -I applications applications/ceve.cmx -o applications/ceve.native
- + ocamlfind ocamlopt -linkpkg doselibs/common.cmxa doselibs/versioning.cmxa doselibs/pef.cmxa doselibs/opam.cmxa doselibs/npm.cmxa doselibs/debian.cmxa doselibs/csw.cmxa doselibs/algo.cmxa doselibs/doseparseNoRpm.cmxa -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -I applications applications/apt-cudf.cmx -o applications/apt-cudf.native
- + ocamlfind ocamlopt -linkpkg doselibs/common.cmxa doselibs/versioning.cmxa doselibs/pef.cmxa doselibs/opam.cmxa doselibs/npm.cmxa doselibs/debian.cmxa doselibs/csw.cmxa doselibs/algo.cmxa doselibs/doseparseNoRpm.cmxa -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -I applications applications/outdated.cmx -o applications/outdated.native
- + ocamlfind ocamlopt -linkpkg doselibs/common.cmxa doselibs/versioning.cmxa doselibs/pef.cmxa doselibs/opam.cmxa doselibs/npm.cmxa doselibs/debian.cmxa doselibs/csw.cmxa doselibs/algo.cmxa doselibs/doseparseNoRpm.cmxa -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -I applications applications/challenged.cmx -o applications/challenged.native
- + ocamlfind ocamlopt -linkpkg doselibs/common.cmxa doselibs/versioning.cmxa doselibs/pef.cmxa doselibs/opam.cmxa doselibs/npm.cmxa doselibs/debian.cmxa doselibs/csw.cmxa doselibs/algo.cmxa doselibs/doseparse.cmxa -package extlib -package re.pcre -package unix -package cudf -package re.str -package ocamlgraph -I applications applications/deb-coinstall.cmx -o applications/deb-coinstall.native
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1/_build/applications/distcheck.native /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1/_build/applications/deb-buildcheck.native /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1/_build/applications/ceve.native /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1/_build/applications/apt-cudf.native /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1/_build/applications/outdated.native /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1/_build/applications/challenged.native /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- + ln -sf /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1/_build/applications/deb-coinstall.native /home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1
- # Parallel statistics: { count(total): 1(23), max: 7, min: 7, average(total): 7.000(1.261) }
-> compiled  dose3.5.0.1
[dose3: patch] applying 0001-Install-mli-cmx-etc.patch
[dose3: patch] applying 0002-dont-make-printconf.patch
[dose3: patch] applying 0003-Fix-for-ocaml-4.06.patch
[dose3: patch] applying 0004-Add-unix-as-dependency-to-dose3.common-in-META.in.patch
Processing  3/4: [dose3: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "./configure" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/dose3.5.0.1)
- checking for ocamlc... ocamlc
- OCaml version is 4.14.3
- OCaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking for ocamlc.opt... ocamlc.opt
- checking for ocamlopt.opt... ocamlopt.opt
- checking for dynlink.cmxa... yes
- checking for ocaml... ocaml
- checking for ocamldep... ocamldep
- checking for ocamlmktop... ocamlmktop
- checking for ocamlmklib... ocamlmklib
- checking for ocamldoc... ocamldoc
- checking for ocamlbuild... ocamlbuild
- checking OCaml Sys.os_type... Unix
- checking for gawk... no
- checking for mawk... mawk
- checking for cppo... yes
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for ocamlyacc... ocamlyacc
- checking for ocamlfind... ocamlfind
- checking for OCaml findlib package cudf... found
- checking for OCaml findlib package extlib... found
- checking for OCaml findlib package re.pcre... found
- checking for OCaml findlib package ocamlgraph... found
- checking for gcc... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 accepts -g... yes
- checking for gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 option to accept ISO C89... none needed
- checking how to run the C preprocessor... gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC  -D_FILE_OFFSET_BITS=64 -E
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for ANSI C header files... 
- yes
- configure: creating ./config.status
- config.status: creating Makefile.config
- config.status: creating _tags
- config.status: creating META
- config.status: creating dose3.odocl
- config.status: creating common/versionInfo.ml
- config.status: creating applications/dose-tests.list
Processing  3/4: [dose3: make uninstalllib]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "make" "uninstalllib" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/dose3.5.0.1)
- Removed /home/opam/.opam/4.14/lib/dose3/META
- Removed /home/opam/.opam/4.14/lib/dose3
- Uninstall dose librairies from /home/opam/.opam/4.14/lib
-> removed   dose3.5.0.1
Processing  4/4: [dose3: make installlib]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "installlib" (CWD=/home/opam/.opam/4.14/.opam-switch/build/dose3.5.0.1)
- Installed /home/opam/.opam/4.14/lib/dose3/versioning.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/pef.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/opam.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/npm.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/doseparseNoRpm.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/doseparse.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/debian.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/csw.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/common.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/algo.cmx
- Installed /home/opam/.opam/4.14/lib/dose3/versioning.a
- Installed /home/opam/.opam/4.14/lib/dose3/pef.a
- Installed /home/opam/.opam/4.14/lib/dose3/opam.a
- Installed /home/opam/.opam/4.14/lib/dose3/npm.a
- Installed /home/opam/.opam/4.14/lib/dose3/doseparseNoRpm.a
- Installed /home/opam/.opam/4.14/lib/dose3/doseparse.a
- Installed /home/opam/.opam/4.14/lib/dose3/debian.a
- Installed /home/opam/.opam/4.14/lib/dose3/csw.a
- Installed /home/opam/.opam/4.14/lib/dose3/common.a
- Installed /home/opam/.opam/4.14/lib/dose3/algo.a
- Installed /home/opam/.opam/4.14/lib/dose3/versioning.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/pef.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/opam.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/npm.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/doseparseNoRpm.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/doseparse.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/debian.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/csw.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/common.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/algo.cmxs
- Installed /home/opam/.opam/4.14/lib/dose3/versioning.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/pef.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/opam.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/npm.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/doseparseNoRpm.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/doseparse.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/debian.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/csw.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/common.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/algo.cmxa
- Installed /home/opam/.opam/4.14/lib/dose3/versioning.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/pef.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/opam.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/npm.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/doseparseNoRpm.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/doseparse.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/debian.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/csw.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/common.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/algo.cmi
- Installed /home/opam/.opam/4.14/lib/dose3/versioning.cma
- Installed /home/opam/.opam/4.14/lib/dose3/pef.cma
- Installed /home/opam/.opam/4.14/lib/dose3/opam.cma
- Installed /home/opam/.opam/4.14/lib/dose3/npm.cma
- Installed /home/opam/.opam/4.14/lib/dose3/doseparseNoRpm.cma
- Installed /home/opam/.opam/4.14/lib/dose3/doseparse.cma
- Installed /home/opam/.opam/4.14/lib/dose3/debian.cma
- Installed /home/opam/.opam/4.14/lib/dose3/csw.cma
- Installed /home/opam/.opam/4.14/lib/dose3/common.cma
- Installed /home/opam/.opam/4.14/lib/dose3/algo.cma
- Installed /home/opam/.opam/4.14/lib/dose3/META
- Install dose librairies to /home/opam/.opam/4.14/lib
-> installed dose3.5.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:34.54 ---> saved as "1dc127d4501ff68ed154087550458121766a95b83da36126ad976bc90b80de45"
Job succeeded
2026-04-11 03:35.07: Job succeeded