Build:
- 0
2026-02-26 12:33.05: New job: test mldonkey.3.2.1 with conf-zlib.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29394/head (42b7d54d05b5bc7b2acd4b8e282016921f6064ca)
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/29394/head" && git reset --hard 42b7d54d
git fetch origin master
git merge --no-edit e5f44b75d9fef9e17658ad0da2eb5f9a3445c951
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn conf-zlib.1 1
RUN opam reinstall conf-zlib.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" != 'conf-zlib.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall mldonkey.3.2.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" != 'mldonkey.3.2.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 mldonkey.3.2.1) || true
RUN opam reinstall --with-test --verbose mldonkey.3.2.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" != 'mldonkey.3.2.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-02-26 12:33.05: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633-conf-zlib.1-mldonkey.3.2.1-42b7d54d05b5bc7b2acd4b8e282016921f6064ca"
2026-02-26 12:33.05: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn conf-zlib.1 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-zlib.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\" != 'conf-zlib.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mldonkey.3.2.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\" != 'mldonkey.3.2.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 mldonkey.3.2.1) || true"))
(run (shell "opam reinstall --with-test --verbose mldonkey.3.2.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\" != 'mldonkey.3.2.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-02-26 12:33.05: Waiting for resource in pool OCluster
2026-02-27 02:58.51: Waiting for worker…
2026-02-27 03:07.30: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files: 65% (12048/18322)
Updating files: 66% (12093/18322)
Updating files: 67% (12276/18322)
Updating files: 68% (12459/18322)
Updating files: 69% (12643/18322)
Updating files: 70% (12826/18322)
Updating files: 71% (13009/18322)
Updating files: 72% (13192/18322)
Updating files: 73% (13376/18322)
Updating files: 74% (13559/18322)
Updating files: 75% (13742/18322)
Updating files: 76% (13925/18322)
Updating files: 77% (14108/18322)
Updating files: 78% (14292/18322)
Updating files: 79% (14475/18322)
Updating files: 80% (14658/18322)
Updating files: 81% (14841/18322)
Updating files: 82% (15025/18322)
Updating files: 83% (15208/18322)
Updating files: 84% (15391/18322)
Updating files: 85% (15574/18322)
Updating files: 86% (15757/18322)
Updating files: 87% (15941/18322)
Updating files: 88% (16124/18322)
Updating files: 89% (16307/18322)
Updating files: 90% (16490/18322)
Updating files: 91% (16674/18322)
Updating files: 92% (16857/18322)
Updating files: 93% (17040/18322)
Updating files: 94% (17223/18322)
Updating files: 95% (17406/18322)
Updating files: 96% (17590/18322)
Updating files: 97% (17773/18322)
Updating files: 98% (17956/18322)
Updating files: 99% (18139/18322)
Updating files: 100% (18322/18322)
Updating files: 100% (18322/18322), done.
HEAD is now at e5f44b75d9 Merge pull request #29458 from dinosaure/release-vif-v0.0.1_beta2
Merge made by the 'ort' strategy.
packages/conf-zlib/conf-zlib.1/opam | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
(from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
2026-02-27 03:07.33 ---> using "d6079ab6cce1b58b34ac9b5ed11aa86b7980ab728c75f5a6ba9271e98dc1ac1c" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-02-27 03:07.33 ---> using "3c00c47f9d923b8bd6ffb2b949e4b9efd562ec1af5385aec1656ef10f01c4450" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-27 03:07.33 ---> using "a92b73fe3956045426c13ac4a0686c952a1f3abe3c88ddfc7b2f3a6ed1e46736" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-02-27 03:07.33 ---> using "cae9d187aa902d60c82d0c2150bbd9c0de1870c923aa0b0063ad5a25247acae5" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-02-27 03:07.33 ---> using "feb31a4f8ccbcfb9943e7338a457db5bc00688ce26b7db5634b111626cd4af24" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-27 03:07.35 ---> using "218dc454a30b7ab4404235db8c8fdb1f5422091dcaf54e0b4d4c2167f9e06097" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-27 03:07.35 ---> using "61576cb25f4b1f74a3a66394571bc64e478163c1e334ae43ae4cbd84e7d35da7" 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 [113 kB]
- Fetched 203 kB in 0s (1408 kB/s)
- Reading package lists...
-
2026-02-27 03:07.35 ---> using "f9dbcae3c4d74eb0b927dae4c55293566c19eca2857d90411920e649cc5a13db" from cache
/home/opam: (run (shell "opam pin add -k version -yn conf-zlib.1 1"))
conf-zlib is now pinned to version 1
2026-02-27 03:07.35 ---> using "b3dc7723b35baee5e68f26c58db70bf95a6915aac55a46a8934396bddb440e1c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-zlib.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\" != 'conf-zlib.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conf-zlib.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install conf-pkg-config 4 [required by conf-zlib]
- install conf-zlib 1 (pinned)
The following system packages will first need to be installed:
pkg-config zlib1g-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.4
-> installed conf-zlib.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:07.35 ---> using "065ee5357a4c3a6c6980a96c59bf7001822fe192a1af5dc7d4896c22789bc061" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mldonkey.3.2.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\" != 'mldonkey.3.2.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mldonkey.3.2.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 5 packages
- install camlp4 4.14+1 [required by mldonkey]
- install conf-m4 1 [required by mldonkey]
- install mldonkey 3.2.1
- install num 1.6 [required by mldonkey]
- install ocamlbuild 0.16.1 [required by camlp4]
The following system packages will first need to be installed:
m4
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "m4"
- Selecting previously unselected package m4.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20693 files and directories currently installed.)
- Preparing to unpack .../archives/m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Setting up m4 (1.4.19-8) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlp4.4.14+1 (cached)
-> installed conf-m4.1
-> retrieved mldonkey.3.2.1 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> installed num.1.6
-> installed ocamlbuild.0.16.1
-> installed camlp4.4.14+1
-> installed mldonkey.3.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:12.40 ---> saved as "9abc3b34d06773f4d03110474b798f10479e2b4af39f2876c5b1a5a9cd8b23d9"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mldonkey.3.2.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile mldonkey 3.2.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved mldonkey.3.2.1 (https://opam.ocaml.org/cache)
-> removed mldonkey.3.2.1
-> installed mldonkey.3.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:15.27 ---> saved as "575e3a330ec95820a538ddd001470ea5cce0072e94ea38bbbbb2596cc517404b"
/home/opam: (run (shell "opam reinstall --with-test --verbose mldonkey.3.2.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\" != 'mldonkey.3.2.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 mldonkey 3.2.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mldonkey.3.2.1: extract]
-> retrieved mldonkey.3.2.1 (cached)
Processing 2/4: [mldonkey: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--enable-debug" "--prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mldonkey.3.2.1)
- Running m4 to generate Makefile...
- Arguments to configure: '--enable-option-checking=fatal' '--enable-debug' '--prefix' '/home/opam/.opam/4.14'
- checking for gcc... gcc
- 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 the compiler supports GNU C... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to enable C11 features... none needed
- checking how to run the C preprocessor... gcc -E
- checking build system type...
- x86_64-pc-linux-gnu
- checking host system type... x86_64-pc-linux-gnu
-
- --------------------------------
- Checking system tools.
- --------------------------------
- checking for ranlib... ranlib
- checking for gmake... gmake
- checking for make... (cached) gmake
- checking if gmake is GNU make ... yes
- checking for bzip2... bzip2
- checking for gzip... (cached) bzip2
- checking for perl... /usr/bin/perl
- checking for rpmbuild... no
- checking for rpm... no
- checking for wget... no
- wget.c: In function 'main':
- wget.c:114:9: error: implicit declaration of function 'close'; did you mean 'pclose'? [-Wimplicit-function-declaration]
- 114 | close(f);
- | ^~~~~
- | pclose
- wget.c:130:6: error: implicit declaration of function 'write'; did you mean 'fwrite'? [-Wimplicit-function-declaration]
- 130 | write(fd, buf, strlen(buf));
- | ^~~~~
- | fwrite
- wget.c:132:20: error: implicit declaration of function 'read'; did you mean 'fread'? [-Wimplicit-function-declaration]
- 132 | while((nread = read(fd, buf, 1)) > 0){
- | ^~~~
- | fread
- Cannot compile wget.c
- checking for wget... no
- ----------------------------------------
- Checking system tools finished.
- ----------------------------------------
-
- --------------------------------
- Checking OCaml compiler.
- --------------------------------
- checking for ocamlc.opt... /home/opam/.opam/4.14/bin/ocamlc.opt
- checking for ocamlc... /home/opam/.opam/4.14/bin/ocamlc.opt
- checking for camlp4... /home/opam/.opam/4.14/bin/camlp4
- checking for ocamlopt.opt... /home/opam/.opam/4.14/bin/ocamlopt.opt
- checking for ocamlopt... (cached) /home/opam/.opam/4.14/bin/ocamlopt.opt
- checking for ocamldep... /home/opam/.opam/4.14/bin/ocamldep
- checking for ocamllex.opt... /home/opam/.opam/4.14/bin/ocamllex.opt
- checking for ocamllex... (cached) /home/opam/.opam/4.14/bin/ocamllex.opt
- checking for ocamlyacc... /home/opam/.opam/4.14/bin/ocamlyacc
- checking for ocamldoc... /home/opam/.opam/4.14/bin/ocamldoc
- checking for ocamlmktop... /home/opam/.opam/4.14/bin/ocamlmktop
- checking for camlp4... (cached) /home/opam/.opam/4.14/bin/camlp4
- checking for camlp4of... /home/opam/.opam/4.14/bin/camlp4of
- -------------------------------------------
- Checking OCaml 4.14.2 finished.
- -------------------------------------------
- checking ocaml num library... found
-
- ----------------------------------
- Checking system headers.
- ----------------------------------
- checking for special C compiler options needed for large files... no
- checking for _FILE_OFFSET_BITS value needed for large files... no
- checking for stdio.h... yes
- checking for stdlib.h... yes
- checking for string.h... yes
- checking for inttypes.h... yes
- checking for stdint.h... yes
- checking for strings.h...
- yes
- checking for sys/stat.h... yes
- checking for sys/types.h... yes
- checking for unistd.h... yes
- checking whether byte ordering is bigendian... no
- checking for setrlimit... yes
- checking for getrlimit... yes
- checking for strerror_r...
- yes
- checking for strerror... yes
- checking for posix_fallocate... yes
- checking for byteswap.h... yes
- checking for sys/utsname.h... yes
- checking for arpa/inet.h... yes
- checking for sys/types.h... (cached) yes
- checking for sys/time.h... yes
- checking for sys/resource.h...
- yes
- checking for netinet/in_systm.h... yes
- checking for netinet/in.h... yes
- checking for netinet/ip.h... yes
- checking for sys/poll.h... yes
- checking for poll... yes
- checking for sys/vfs.h... yes
- checking for sys/statvfs.h... yes
- checking for sys/param.h... yes
- checking for sys/mount.h... yes
- -------------------------------------------
- Checking system headers finished.
- -------------------------------------------
-
- -----------------------------------
- Checking system libraries.
- -----------------------------------
- ----- checking zlib (required)
- checking for inflate in -lz... yes
- checking for zlib.h... yes
- checking for zlibVersion in -lz... yes
- ----- checking bzlib (optional)
- checking for bzlib.h... no
- configure: bzlib not available
- ----- checking libmagic (GNU file) (optional)
- checking for gcc options needed to detect all undeclared functions... none needed
- checking for magic.h... no
- configure: libmagic not available
- ----- checking gd (optional)
- checking for gdlib-config... no
- checking for gd.h... no
- configure: libgd not available
- ----- checking iconv (optional)
- checking for ld used by gcc... /usr/bin/ld
- checking if the linker (/usr/bin/ld) is GNU ld... yes
- checking for shared library run path origin...
- done
- checking 32-bit host C ABI... no
- checking for grep that handles long lines and -e... /usr/bin/grep
- checking for egrep... /usr/bin/grep -E
- checking for ELF binary format... yes
- checking for the common suffixes of directories in the library search path... lib,lib,lib64
- checking for iconv... yes
- checking for working iconv... yes
- checking for iconv declaration...
- extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
- checking for locale_charset... no
- configure: found nl_langinfo(CODESET)
- checking for locale_charset in -lcharset... no
- checking for libcharset.h... no
- checking for langinfo.h... yes
- checking for locale.h... yes
- ----- checking thread support (optional, strongly advised)
- checking for a sed that does not truncate output... /usr/bin/sed
- checking whether gcc is Clang... no
- checking whether pthreads work with "-pthread" and "-lpthread"... yes
- checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
- checking whether more special flags are required for pthreads... no
- checking for PTHREAD_PRIO_INHERIT... yes
- ----- GNU C Library version
- checking for linux/limits.h...
- yes
- checking for gnu/libc-version.h... yes
- checking for GNU C Library version... 2.41
- ---------------------------------------------
- Checking system libraries finished.
- ---------------------------------------------
-
- --------------------------------------
- Checking activated networks.
- --------------------------------------
- checking eDonkey... yes
- checking for g++... g++
- checking whether the compiler supports GNU C++... yes
- checking whether g++ accepts -g... yes
- checking for g++ option to enable C++11 features... none needed
- checking for g++... g++
- checking eMule SUI... yes
- checking whether C++ compiler accepts -fno-omit-frame-pointer... yes
- checking whether C++ compiler accepts -mno-omit-leaf-frame-pointer...
- yes
- checking BitTorrent... yes
- checking FileTP... yes
- checking Fasttrack... yes
- checking DirectConnect... no - bzip2 support missing
- -----------------------------------------------
- Checking activated networks finished.
- -----------------------------------------------
- configure: creating ./config.status
- config.status: creating Makefile.config
- config.status: creating mldonkey.rc
- config.status: creating ../src/utils/lib/autoconf.ml.new
- config.status: creating ../src/utils/lib/gAutoconf.ml.new
- config.status: creating ../src/utils/bitstring/bitstring.ml
- config.status: creating ../src/utils/lib/magic.ml
- config.status: creating ../src/networks/donkey/donkeySui.ml
- config.status: creating ../src/daemon/driver/driverGraphics.ml
- config.status: creating ../packages/rpm/mldonkey.spec
- config.status: creating ../packages/rpm/Makefile
- config.status: creating ../packages/slackware/mldonkey.options
- config.status: creating config.h
-
- Building dependencies (if it blocks, try 'gmake depend' to see the problem)
-
- Configuring MLDonkey 3.2.1 completed.
-
- Network modules:
- - eDonkey enabled (eMule SUI enabled)
- - BitTorrent enabled
- - FileTP (aka wget) enabled
- - Fasttrack enabled
- - Gnutella disabled - unmaintained
- - Gnutella2 disabled - unmaintained
- - Direct Connect disabled
- - Open Napster disabled - currently not usable
- - Soulseek disabled - currently not usable
- - OpenFT disabled - currently not usable
-
- Core features:
- - zlib (required) enabled
- - threads enabled
- - bzip2 disabled
- - iconv enabled
- - libmagic disabled
- - upnp & natpmp disabled
- - graphical stats disabled
-
- Compilers:
- - OCaml version 4.14.2
- - gcc version 14
- - g++ version 14
-
- \nNow execute 'gmake' to start compiling. Good luck!
-
- To compile a static code execute: gmake mlnet.static
- To produce a release tarball execute: gmake release.mlnet.static
- To clean the build directory execute: gmake maintainerclean
-
- Compiling CryptoPP.cc can take several minutes, on slow machines up to half an hour.
Processing 2/4: [mldonkey: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/mldonkey.3.2.1)
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/syslog.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/syslog.ml
- File "src/utils/lib/syslog.ml", line 123, characters 2-26:
- 123 | mutable logpath: string;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field logpath is never mutated.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/printexc2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/printexc2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/fifo.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/fifo.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/printf2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/printf2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/verificationBitmap.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/verificationBitmap.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/string2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/string2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/zlib.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/zlib.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/zip.mli
- File "src/utils/cdk/zip.mli", lines 55-56, characters 10-28:
- 55 | ..........(** Abstract type representing a handle opened for reading from
- 56 | a ZIP file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 58-59, characters 10-58:
- 58 | ..........(** Open the ZIP file with the given filename. Return a
- 59 | handle opened for reading from this file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", line 61, characters 10-68:
- 61 | (** Return a list of all entries in the given ZIP file. *)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 63-64, characters 10-38:
- 63 | ..........(** Return the comment attached to the given ZIP file, or the
- 64 | empty string if none. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 66-72, characters 10-29:
- 66 | ..........(** [Zip.find_entry zf filename] returns the description of the
- 67 | entry having name [filename] in the ZIP file [zf].
- 68 | Raises [Not_found] if no such entry exists.
- 69 | The file name must match exactly; in particular, case is
- 70 | significant. File names must use [/] (slash) as the directory
- 71 | separator. The name of a directory must end with a trailing
- 72 | [/] (slash). *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 74-76, characters 10-60:
- 74 | ..........(** [Zip.read_entry zf e] reads and uncompresses the data
- 75 | (file contents) associated with entry [e] of ZIP file [zf].
- 76 | The data is returned as a character string. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 78-80, characters 10-69:
- 78 | ..........(** [Zip.copy_entry_to_channel zf e oc] reads and uncompresses
- 79 | the data associated with entry [e] of ZIP file [zf].
- 80 | It then writes this data to the output channel [oc]. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 82-88, characters 10-29:
- 82 | ..........(** [Zip.copy_entry_to_file zf e destfile] reads and uncompresses
- 83 | the data associated with entry [e] of ZIP file [zf].
- 84 | It then writes this data to the file named [destfile].
- 85 | The file [destfile] is created if it does not exist,
- 86 | and overwritten otherwise. The last modification date of
- 87 | the file is set to that indicated in the ZIP entry [e],
- 88 | if possible. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 97-98, characters 10-28:
- 97 | ..........(** Abstract type representing a handle opened for writing to
- 98 | a ZIP file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 100-105, characters 10-30:
- 100 | ..........(** Create (or truncate to zero length) the ZIP file with
- 101 | the given filename. Return a handle opened for writing
- 102 | to this file. The optional argument [comment] is a
- 103 | comment string that is attached to the ZIP file as a whole
- 104 | (as opposed to the comments that can be attached to individual
- 105 | ZIP entries). *).
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 110-129, characters 10-45:
- 110 | ..........(** [Zip.add_entry data zf name] adds a new entry to the
- 111 | ZIP file [zf]. The data (file contents) associated with
- 112 | the entry is taken from the string [data]. It is compressed
- 113 | and written to the ZIP file [zf]. [name] is the file name
- 114 | stored along with this entry. Several optional arguments
- ...
- 126 | Default: 6 (moderate compression).
- 127 | @param mtime last modification time (in seconds since the
- 128 | epoch).
- 129 | Default: the current time. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 134-136, characters 10-55:
- 134 | ..........(** Same as [Zip.add_entry], but the data associated with the
- 135 | entry is read from the input channel given as first argument.
- 136 | The channel is read up to end of file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 141-145, characters 10-22:
- 141 | ..........(** Same as [Zip.add_entry], but the data associated with the
- 142 | entry is read from the file whose name is given as first
- 143 | argument. Also, the default value for the [mtime]
- 144 | optional parameter is the time of last modification of the
- 145 | file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/zip.mli", lines 150-162, characters 10-54:
- 150 | ..........(** [Zip.add_entry_generator zf name] returns a pair of functions
- 151 | [(add, finish)]. It adds a new entry to the
- 152 | ZIP file [zf]. The file name stored along with this entry
- 153 | is [name]. Initially, no data is stored in this entry.
- 154 | To store data in this entry, the program must repeatedly call
- ...
- 159 | program must call the [finish] function returned by
- 160 | [Zip.add_entry_generator]. [finish] must be called exactly once.
- 161 | The optional arguments to [Zip.add_entry_generator]
- 162 | are as described in {!Zip.add_entry}. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/zip.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/extlib/IO.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/extlib/IO.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/gzip.mli
- File "src/utils/cdk/gzip.mli", lines 24-25, characters 7-37:
- 24 | .......(** Abstract type representing a channel opened for reading
- 25 | from a compressed file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 27-28, characters 7-73:
- 27 | .......(** Open a compressed file for reading. The argument is a
- 28 | regular file channel already opened on the compressed file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 30-31, characters 7-19:
- 30 | .......(** Open a compressed file for reading. The argument is the file
- 31 | name. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 33-34, characters 7-74:
- 33 | .......(** Uncompress one character from the given channel, and return it.
- 34 | Raise [End_of_file] if no more compressed data is available. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 36-38, characters 7-74:
- 36 | .......(** Same as [Gzip.input_char], but return the 8-bit integer
- 37 | representing the character.
- 38 | Raise [End_of_file] if no more compressed data is available. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 40-54, characters 7-74:
- 40 | .......(** [input ic buf pos len] uncompresses up to [len] characters
- 41 | from the given channel [ic],
- 42 | storing them in string [buf], starting at character number [pos].
- 43 | It returns the actual number of characters read, between 0 and
- 44 | [len] (inclusive).
- ...
- 51 | if desired. (See also [Gzip.really_input] for reading
- 52 | exactly [len] characters.)
- 53 | Exception [Invalid_argument "Gzip.input"] is raised if
- 54 | [pos] and [len] do not designate a valid substring of [buf]. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 56-61, characters 7-74:
- 56 | .......(** [really_input ic buf pos len] uncompresses [len] characters
- 57 | from the given channel, storing them in
- 58 | string [buf], starting at character number [pos].
- 59 | Raise [End_of_file] if fewer than [len] characters can be read.
- 60 | Raise [Invalid_argument "Gzip.input"] if
- 61 | [pos] and [len] do not designate a valid substring of [buf]. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 63-66, characters 7-74:
- 63 | .......(** Close the given input channel. If the channel was created with
- 64 | [Gzip.open_in_chan], the underlying regular file channel
- 65 | (of type [Pervasives.in_channel]) is also closed.
- 66 | Do not apply any of the functions above to a closed channel. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 78-79, characters 7-35:
- 78 | .......(** Abstract type representing a channel opened for writing
- 79 | to a compressed file. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 81-88, characters 7-35:
- 81 | .......(** Open a compressed file for writing. The argument is the file
- 82 | name. The file is created if it does not exist, or
- 83 | truncated to zero length if it exists.
- 84 | The optional [level] argument (an integer between 1 and 9)
- 85 | indicates the compression level, with 1 being the weakest
- 86 | (but fastest) compression and 9 being the strongest
- 87 | (but slowest) compression. The default level is 6
- 88 | (medium compression). *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 90-93, characters 7-48:
- 90 | .......(** Open a compressed file for writing. The argument is a
- 91 | regular file channel already opened on the compressed file.
- 92 | The optional [level] argument sets the compression level
- 93 | as documented for [Gzip.open_out]. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", line 95, characters 7-67:
- 95 | (** Output one character to the given compressed channel. *)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 97-98, characters 7-66:
- 97 | .......(** Same as [Gzip.output_char], but the output character is given
- 98 | by its code. The given integer is taken modulo 256. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 100-104, characters 7-74:
- 100 | .......(** [output oc buf pos len] compresses and writes [len] characters
- 101 | from string [buf], starting at offset [pos], and writes the
- 102 | compressed data to the channel [oc].
- 103 | Raise [Invalid_argument "Gzip.output"] if
- 104 | [pos] and [len] do not designate a valid substring of [buf]. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 106-108, characters 7-24:
- 106 | .......(** Same as [output], but takes a string as argument instead of
- 107 | a byte sequence.
- 108 | @since 1.06 *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 110-113, characters 7-74:
- 110 | .......(** Close the given output channel. If the channel was created with
- 111 | [Gzip.open_out_chan], the underlying regular file channel
- 112 | (of type [Pervasives.out_channel]) is also closed.
- 113 | Do not apply any of the functions above to a closed channel. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- File "src/utils/cdk/gzip.mli", lines 115-120, characters 7-67:
- 115 | .......(** Same as [Gzip.close_out], but do not close the underlying
- 116 | regular file channel (of type [Pervasives.out_channel]);
- 117 | just flush all pending compressed data and
- 118 | dispose of the resources associated with the compression
- 119 | channel. This can be useful if e.g. the underlying file channel
- 120 | is a network socket on which more data is to be sent. *)
- Warning 50 [unexpected-docstring]: ambiguous documentation comment
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/gzip.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/tar.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/tar.ml
- File "src/utils/cdk/tar.ml", line 73, characters 2-22:
- 73 | rawchan: in_channel;
- ^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field rawchan is never read.
- (However, this field is used to build or mutate values.)
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/unix2.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/array2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/list2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/list2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/intmap.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/intmap.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/genlex2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/genlex2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/filepath.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/filepath.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/unix32.mli
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/filename2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/filename2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/options.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/options.ml
- File "src/utils/lib/options.ml", line 56, characters 4-37:
- 56 | option_section : options_section; option_advanced : bool;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field option_section is never read.
- (However, this field is used to build or mutate values.)
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/url.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/url.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/config/unix/mlUnix.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/heap.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/charset.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/charset.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/gettext.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/gettext.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/ocamlrss/rss_date.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/ocamlrss/rss_date.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/date.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/autoconf.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/basicSocket.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/basicSocket.ml
- File "src/utils/net/basicSocket.ml", line 51, characters 4-24:
- 51 | mutable flags : int;
- ^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field flags is never mutated.
- File "src/utils/net/basicSocket.ml", line 55, characters 4-26:
- 55 | mutable pollpos : int;
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field pollpos is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/net/basicSocket.ml", line 71, characters 4-26:
- 71 | mutable name : string;
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field name is never mutated.
- File "src/utils/net/basicSocket.ml", line 72, characters 4-36:
- 72 | mutable printer : (t -> string);
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field printer is never read.
- (However, this field is used to build or mutate values.)
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/ip.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/ip.ml
- File "src/utils/net/ip.ml", line 287, characters 4-43:
- 287 | mutable entries : Unix.inet_addr array;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field entries is never mutated.
- File "src/utils/net/ip.ml", line 288, characters 4-25:
- 288 | mutable error : bool;
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field error is never mutated.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/int64ops.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/unix32.ml
- File "src/utils/lib/unix32.ml", line 62, characters 8-34:
- 62 | mutable filename : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field filename is never mutated.
- File "src/utils/lib/unix32.ml", line 63, characters 8-32:
- 63 | mutable writable : bool;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field writable is never mutated.
- File "src/utils/lib/unix32.ml", line 415, characters 8-34:
- 415 | mutable filename : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field filename is never mutated.
- File "src/utils/lib/unix32.ml", line 416, characters 8-28:
- 416 | mutable pos : int64;
- ^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field pos is never mutated.
- File "src/utils/lib/unix32.ml", line 417, characters 8-28:
- 417 | mutable len : int64;
- ^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field len is never mutated.
- File "src/utils/lib/unix32.ml", line 419, characters 8-31:
- 419 | mutable fd : FDCache.t;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field fd is never mutated.
- File "src/utils/lib/unix32.ml", line 424, characters 8-33:
- 424 | mutable dirname : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field dirname is never mutated.
- File "src/utils/lib/unix32.ml", line 426, characters 8-34:
- 426 | mutable files : file list;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field files is never mutated.
- File "src/utils/lib/unix32.ml", line 427, characters 8-29:
- 427 | mutable tree : btree;
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field tree is never mutated.
- File "src/utils/lib/unix32.ml", line 700, characters 8-35:
- 700 | mutable chunkname : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field chunkname is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/lib/unix32.ml", line 703, characters 8-31:
- 703 | mutable fd : FDCache.t;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field fd is never mutated.
- File "src/utils/lib/unix32.ml", line 707, characters 8-34:
- 707 | mutable filename : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field filename is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/lib/unix32.ml", line 708, characters 8-33:
- 708 | mutable dirname : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field dirname is never mutated.
- File "src/utils/lib/unix32.ml", line 711, characters 8-32:
- 711 | mutable writable : bool;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field writable is never mutated.
- File "src/utils/lib/unix32.ml", line 1110, characters 4-30:
- 1110 | mutable filename : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field filename is never mutated.
- File "src/utils/lib/unix32.ml", line 1111, characters 4-28:
- 1111 | mutable writable : bool;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field writable is never mutated.
- File "src/utils/lib/unix32.ml", line 1506, characters 4-31:
- 1506 | mutable part_begin : int64;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field part_begin is never mutated.
- File "src/utils/lib/unix32.ml", line 1507, characters 4-29:
- 1507 | mutable part_len : int64;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field part_len is never mutated.
- File "src/utils/lib/unix32.ml", line 1508, characters 4-29:
- 1508 | mutable part_end : int64;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field part_end is never mutated.
- File "src/utils/lib/unix32.ml", line 1707, characters 2-18:
- 1707 | f_files : int64; (* total file nodes in file system *)
- ^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: unused record field f_files.
- File "src/utils/lib/unix32.ml", line 1708, characters 2-18:
- 1708 | f_ffree : int64; (* free file nodes in fs *)
- ^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: unused record field f_ffree.
- File "src/utils/lib/unix32.ml", line 1709, characters 2-16:
- 1709 | f_fsid : unit; (* See note in statfs(2) *)
- ^^^^^^^^^^^^^^
- Warning 69 [unused-field]: unused record field f_fsid.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/md4.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/md4.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/anyEndian.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/littleEndian.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/base64.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/base64.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/tcpBufferedSocket.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/tcpBufferedSocket.ml
- File "src/utils/net/tcpBufferedSocket.ml", line 141, characters 4-35:
- 141 | mutable lost_bytes : int array; (* 3600 samples*)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field lost_bytes is never mutated.
- File "src/utils/net/tcpBufferedSocket.ml", line 96, characters 4-23:
- 96 | mutable rbuf : buf;
- ^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field rbuf is never mutated.
- File "src/utils/net/tcpBufferedSocket.ml", line 97, characters 4-23:
- 97 | mutable wbuf : buf;
- ^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field wbuf is never mutated.
- File "src/utils/net/tcpBufferedSocket.ml", line 101, characters 4-32:
- 101 | mutable ndown_packets : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field ndown_packets is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/net/tcpBufferedSocket.ml", line 103, characters 4-30:
- 103 | mutable nup_packets : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field nup_packets is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/net/tcpBufferedSocket.ml", line 108, characters 4-30:
- 108 | mutable write_power : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field write_power is never mutated.
- File "src/utils/net/tcpBufferedSocket.ml", line 109, characters 4-29:
- 109 | mutable read_power : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field read_power is never mutated.
- File "src/utils/net/tcpBufferedSocket.ml", line 119, characters 4-26:
- 119 | mutable token : token;
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field token is never mutated.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/udpSocket.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/udpSocket.ml
- File "src/utils/net/udpSocket.ml", line 50, characters 4-30:
- 50 | mutable ping_time : float;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field ping_time is never mutated.
- File "src/utils/net/udpSocket.ml", line 123, characters 4-33:
- 123 | socks_proxy_address : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: unused record field socks_proxy_address.
- File "src/utils/net/udpSocket.ml", line 124, characters 4-27:
- 124 | socks_proxy_port : int;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: unused record field socks_proxy_port.
- File "src/utils/net/udpSocket.ml", line 125, characters 4-30:
- 125 | socks_proxy_user : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: unused record field socks_proxy_user.
- File "src/utils/net/udpSocket.ml", line 126, characters 4-34:
- 126 | socks_proxy_password : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: unused record field socks_proxy_password.
- File "src/utils/net/udpSocket.ml", line 145, characters 4-32:
- 145 | mutable allow_io : bool ref;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field allow_io is never mutated.
- File "src/utils/net/udpSocket.ml", line 148, characters 4-59:
- 148 | mutable tcp_bc : TcpBufferedSocket.bandwidth_controler;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field tcp_bc is never mutated.
- File "src/utils/net/udpSocket.ml", line 130, characters 4-23:
- 130 | mutable port : int;
- ^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field port is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/net/udpSocket.ml", line 137, characters 4-45:
- 137 | mutable socks_proxy : socks_proxy option;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field socks_proxy is never mutated.
- File "src/utils/net/udpSocket.ml", line 138, characters 4-46:
- 138 | mutable socks_local : (Ip.t * int) option;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field socks_local is never mutated.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/tcpServerSocket.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/tcpServerSocket.ml
- File "src/utils/net/tcpServerSocket.ml", line 35, characters 4-26:
- 35 | mutable name : string;
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field name is never mutated.
- File "src/utils/net/tcpServerSocket.ml", line 36, characters 4-26:
- 36 | mutable closed : bool;
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field closed is never mutated.
- File "src/utils/net/tcpServerSocket.ml", line 28, characters 4-29:
- 28 | mutable cc_name : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field cc_name is never mutated.
- File "src/utils/net/tcpServerSocket.ml", line 30, characters 4-54:
- 30 | mutable accept_connections : (int -> int -> bool);
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field accept_connections is never mutated.
- File "src/utils/net/tcpServerSocket.ml", line 31, characters 4-36:
- 31 | mutable allow_accept : bool ref;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field allow_accept is never mutated.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/intset.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/intset.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/http_client.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/http_client.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/mp3tagui/mp3_genres.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/mp3tagui/mp3_misc.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/mp3tagui/mp3_tag.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/mp3tagui/mp3_info.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/mp3tagui/mp3_info.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/mp3tagui/mp3tag.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/mp3tagui/mp3tag.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/store.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/store.ml
- File "src/utils/lib/store.ml", line 32, characters 4-27:
- 32 | mutable file_len : int;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field file_len is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/lib/store.ml", line 42, characters 4-32:
- 42 | mutable store_name : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field store_name is never mutated.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/misc2.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/misc.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/geoip.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonTypes.ml
- File "src/daemon/common/commonTypes.ml", line 144, characters 8-36:
- 144 | mutable uid_string : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field uid_string is never mutated.
- File "src/daemon/common/commonTypes.ml", line 145, characters 8-36:
- 145 | mutable uid_type : uid_type;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field uid_type is never mutated.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiTypes.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiProto.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/ip_set.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/unix2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/misc2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/misc.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/heap.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/ip_set.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/http_server.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/http_server.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonOptions.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonGlobals.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonMain.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/extlib.cmxa -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/utils/extlib/IO.cmx
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/cdk/zlibstubs.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/cdk/zlibstubs.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/cdk/zlibstubs.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/cdk/zlibstubs.c'
- src/utils/cdk/zlibstubs.c: In function 'camlzip_zlibversion':
- src/utils/cdk/zlibstubs.c:195:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 195 | v = copy_string (zlibVersion());
- | ^~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/cdk/bzip2stubs.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/cdk/bzip2stubs.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/cdk/bzip2stubs.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/cdk/bzip2stubs.c'
- src/utils/cdk/bzip2stubs.c: In function 'camlzip_bzCompressInit':
- src/utils/cdk/bzip2stubs.c:105:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 105 | failwith("Bzip2 compression not supported.");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/cdk/bzip2stubs.c: In function 'camlzip_bzCompress':
- src/utils/cdk/bzip2stubs.c:135:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 135 | failwith("Bzip2 compression not supported");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/cdk/bzip2stubs.c: In function 'camlzip_bzCompressEnd':
- src/utils/cdk/bzip2stubs.c:152:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 152 | failwith("Bzip2 compression not supported");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/cdk/bzip2stubs.c: In function 'camlzip_bzDecompressInit':
- src/utils/cdk/bzip2stubs.c:166:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 166 | failwith("Bzip2 compression not supported");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/cdk/bzip2stubs.c: In function 'camlzip_bzDecompress':
- src/utils/cdk/bzip2stubs.c:196:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 196 | failwith("Bzip2 compression not supported");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/cdk/bzip2stubs.c: In function 'camlzip_bzDecompressEnd':
- src/utils/cdk/bzip2stubs.c:213:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 213 | failwith("Bzip2 compression not supported");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/cdk/bzip2stubs.c: In function 'camlzip_bzlibversion':
- src/utils/cdk/bzip2stubs.c:226:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 226 | failwith("bzlibVersion not found");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -ccopt "-g -O2 -pthread -o src/utils/cdk/heap_c.o" -ccopt "" -c src/utils/cdk/heap_c.c
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/config/unix/os_stubs_c.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/config/unix/os_stubs_c.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/config/unix/os_stubs_c.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/config/unix/os_stubs_c.c'
- src/config/unix/os_stubs_c.c: In function 'os_ftruncate':
- src/config/unix/os_stubs_c.c:70:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 70 | if(!fd) failwith("ftruncate32: file is closed");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/config/unix/os_stubs_c.c: In function 'glibc_version':
- src/config/unix/os_stubs_c.c:169:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 169 | v = copy_string (gnu_get_libc_version());
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/fst_hash.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/fst_hash.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/fst_hash.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/fst_hash.c'
- In file included from src/utils/lib/fst_hash.c:182:
- src/utils/lib/fst_hash.c: In function 'fst_hash_file_ml':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'fst_hash_file' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/fst_hash.c:327:20: note: in expansion of macro 'String_val'
- 327 | if(fst_hash_file(String_val(digest), String_val(filename),
- | ^~~~~~~~~~
- src/utils/lib/fst_hash.c:201:35: note: expected 'unsigned char *' but argument is of type 'const char *'
- 201 | int fst_hash_file (unsigned char *fth, char *file, int64_t filesize)
- | ~~~~~~~~~~~~~~~^~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 2 of 'fst_hash_file' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/fst_hash.c:327:40: note: in expansion of macro 'String_val'
- 327 | if(fst_hash_file(String_val(digest), String_val(filename),
- | ^~~~~~~~~~
- src/utils/lib/fst_hash.c:201:46: note: expected 'char *' but argument is of type 'const char *'
- 201 | int fst_hash_file (unsigned char *fth, char *file, int64_t filesize)
- | ~~~~~~^~~~
- src/utils/lib/fst_hash.c:329:13: warning: "failwith" is deprecated: use "caml_failwith" instead
- 329 | failwith("Exception during FST computation");
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/fst_hash.c: In function 'fst_hash_string_ml':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'fst_hash_string' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/fst_hash.c:334:19: note: in expansion of macro 'String_val'
- 334 | fst_hash_string(String_val(digest), String_val(s), Int_val(size));
- | ^~~~~~~~~~
- src/utils/lib/fst_hash.c:275:38: note: expected 'unsigned char *' but argument is of type 'const char *'
- 275 | void fst_hash_string (unsigned char *fth, unsigned char *file, int64_t filesize)
- | ~~~~~~~~~~~~~~~^~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 2 of 'fst_hash_string' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/fst_hash.c:334:39: note: in expansion of macro 'String_val'
- 334 | fst_hash_string(String_val(digest), String_val(s), Int_val(size));
- | ^~~~~~~~~~
- src/utils/lib/fst_hash.c:275:58: note: expected 'unsigned char *' but argument is of type 'const char *'
- 275 | void fst_hash_string (unsigned char *fth, unsigned char *file, int64_t filesize)
- | ~~~~~~~~~~~~~~~^~~~
- src/utils/lib/fst_hash.c: In function 'fst_hash_checksum_ml':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'fst_hash_checksum' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:75:47: note: in definition of macro 'Val_long'
- 75 | #define Val_long(x) ((intnat) (((uintnat)(x) << 1)) + 1)
- | ^
- src/utils/lib/fst_hash.c:340:10: note: in expansion of macro 'Val_int'
- 340 | return Val_int(fst_hash_checksum(String_val(digest)));
- | ^~~~~~~
- src/utils/lib/fst_hash.c:340:36: note: in expansion of macro 'String_val'
- 340 | return Val_int(fst_hash_checksum(String_val(digest)));
- | ^~~~~~~~~~
- src/utils/lib/fst_hash.c:185:50: note: expected 'unsigned char *' but argument is of type 'const char *'
- 185 | unsigned short fst_hash_checksum (unsigned char *hash)
- | ~~~~~~~~~~~~~~~^~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -ccopt "-g -O2 -pthread -o src/utils/lib/md4_cc.o" -ccopt "" -c src/utils/lib/md4.c
- cp -f src/utils/lib/md4_cc.o src/utils/lib/md4_comp.o
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/md4_c.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/md4_c.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/md4_c.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/md4_c.c'
- In file included from /home/opam/.opam/4.14/lib/ocaml/caml/signals.h:27,
- from src/utils/lib/os_stubs.h:94,
- from src/utils/lib/md4_c.c:20:
- src/utils/lib/md4_c.c: In function 'md4_xor':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/md4_c.c:32:14: note: in expansion of macro 'String_val'
- 32 | char *m1 = String_val(m1_v);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/md4_c.c:33:14: note: in expansion of macro 'String_val'
- 33 | char *m2 = String_val(m2_v);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/md4_c.c:34:14: note: in expansion of macro 'String_val'
- 34 | char *m3 = String_val(m3_v);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/charsetstubs.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/charsetstubs.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/charsetstubs.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/charsetstubs.c'
- src/utils/lib/charsetstubs.c: In function 'raise_error':
- src/utils/lib/charsetstubs.c:171:15: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 171 | closure_f = caml_named_value("charset_error");
- | ^
- src/utils/lib/charsetstubs.c:173:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 173 | raise_constant(*closure_f);
- | ^~~~~~~~~~~~~~~~~
- src/utils/lib/charsetstubs.c: In function 'ml_copy_string_len_and_free':
- src/utils/lib/charsetstubs.c:1339:13: warning: "alloc_string" is deprecated: use "caml_alloc_string" instead
- 1339 | v = alloc_string (len);
- | ^~~~~~~~~~~~~
- In file included from src/utils/lib/charsetstubs.c:93:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/charsetstubs.c:1340:11: note: in expansion of macro 'String_val'
- 1340 | memcpy (String_val(v), str, len);
- | ^~~~~~~~~~
- In file included from src/utils/lib/charsetstubs.c:32:
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
- 43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
- | ~~~~~~~~~~~~~~~~~^~~~~~
- src/utils/lib/charsetstubs.c: In function 'ml_convert_string':
- src/utils/lib/charsetstubs.c:1351:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 1351 | c_res = ml_convert(String_val(str),string_length(str),
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/charsetstubs.c: In function 'ml_utf8_validate':
- src/utils/lib/charsetstubs.c:1361:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 1361 | return Val_bool(utf8_validate(SizedString_val(s),NULL));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/charsetstubs.c: In function 'ml_locale_charset':
- src/utils/lib/charsetstubs.c:1380:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 1380 | return (copy_string ((char*) str));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/md5_c.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/md5_c.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/md5_c.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/md5_c.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/sha1_c.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/sha1_c.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/sha1_c.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/sha1_c.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/tiger.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/tiger.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/tiger.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/tiger.c'
- In file included from /home/opam/.opam/4.14/lib/ocaml/caml/signals.h:27,
- from src/utils/lib/../../utils/lib/os_stubs.h:94,
- from src/utils/lib/tiger.c:20:
- src/utils/lib/tiger.c: In function 'tigertree_unsafe_string':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/tiger.c:830:27: note: in expansion of macro 'String_val'
- 830 | unsigned char *digest = String_val(digest_v);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/tiger.c:831:27: note: in expansion of macro 'String_val'
- 831 | unsigned char *string = String_val(string_v);
- | ^~~~~~~~~~
- src/utils/lib/tiger.c: In function 'tiger_unsafe_string':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/tiger.c:841:27: note: in expansion of macro 'String_val'
- 841 | unsigned char *digest = String_val(digest_v);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/tiger.c:842:27: note: in expansion of macro 'String_val'
- 842 | unsigned char *string = String_val(string_v);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/stubs_c.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/stubs_c.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/stubs_c.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/stubs_c.c'
- src/utils/lib/stubs_c.c: In function 'try_poll':
- src/utils/lib/stubs_c.c:143:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 143 | enter_blocking_section();
- | ^~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:145:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 145 | leave_blocking_section();
- | ^~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'try_select':
- src/utils/lib/stubs_c.c:216:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 216 | enter_blocking_section();
- | ^~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:218:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 218 | leave_blocking_section();
- | ^~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'ml_getsize64':
- src/utils/lib/stubs_c.c:375:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 375 | return copy_int64(os_getfilesize(String_val(path)));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- In file included from /home/opam/.opam/4.14/lib/ocaml/caml/signals.h:27,
- from src/utils/lib/../../utils/lib/os_stubs.h:94,
- from src/utils/lib/stubs_c.c:20:
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'os_getfilesize' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:375:36: note: in expansion of macro 'String_val'
- 375 | return copy_int64(os_getfilesize(String_val(path)));
- | ^~~~~~~~~~
- src/utils/lib/../../utils/lib/os_stubs.h:159:37: note: expected 'char *' but argument is of type 'const char *'
- 159 | extern int64_t os_getfilesize(char *path);
- | ~~~~~~^~~~
- src/utils/lib/stubs_c.c: In function 'ml_getfdsize64':
- src/utils/lib/stubs_c.c:390:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 390 | return copy_int64(os_getfdsize(fd));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'ml_strstr':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:423:13: note: in expansion of macro 'String_val'
- 423 | char *s = String_val(s_v);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:424:15: note: in expansion of macro 'String_val'
- 424 | char *sub = String_val(sub_v);
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'ml_ints_of_string':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:443:13: note: in expansion of macro 'String_val'
- 443 | char *s = String_val(s_v);
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:484:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 484 | raise_not_found();
- | ^~~~~~~~
- src/utils/lib/stubs_c.c:488:13: warning: "alloc" is deprecated: use "caml_alloc" instead
- 488 | res = alloc(4,0);
- | ^~~~~~~
- src/utils/lib/stubs_c.c: In function 'sha1_unsafe64_fd':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:512:27: note: in expansion of macro 'String_val'
- 512 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:583:1: note: in expansion of macro 'ML_HASH'
- 583 | ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end)
- | ^~~~~~~
- src/utils/lib/stubs_c.c: In function 'sha1_unsafe_string':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:544:27: note: in expansion of macro 'String_val'
- 544 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:583:1: note: in expansion of macro 'ML_HASH'
- 583 | ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end)
- | ^~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:545:27: note: in expansion of macro 'String_val'
- 545 | unsigned char *string = String_val(string_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:583:1: note: in expansion of macro 'ML_HASH'
- 583 | ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end)
- | ^~~~~~~
- src/utils/lib/stubs_c.c: In function 'sha1_unsafe_file':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:558:21: note: in expansion of macro 'String_val'
- 558 | char *filename = String_val(filename_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:583:1: note: in expansion of macro 'ML_HASH'
- 583 | ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end)
- | ^~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:559:27: note: in expansion of macro 'String_val'
- 559 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:583:1: note: in expansion of macro 'ML_HASH'
- 583 | ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end)
- | ^~~~~~~
- src/utils/lib/stubs_c.c:583:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 583 | ML_HASH(sha1,SHA1_CTX,sha1_begin,sha1_hash, sha1_end)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'md5_unsafe64_fd':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:512:27: note: in expansion of macro 'String_val'
- 512 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:584:1: note: in expansion of macro 'ML_HASH'
- 584 | ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish)
- | ^~~~~~~
- src/utils/lib/stubs_c.c: In function 'md5_unsafe_string':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:544:27: note: in expansion of macro 'String_val'
- 544 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:584:1: note: in expansion of macro 'ML_HASH'
- 584 | ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish)
- | ^~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:545:27: note: in expansion of macro 'String_val'
- 545 | unsigned char *string = String_val(string_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:584:1: note: in expansion of macro 'ML_HASH'
- 584 | ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish)
- | ^~~~~~~
- src/utils/lib/stubs_c.c: In function 'md5_unsafe_file':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:558:21: note: in expansion of macro 'String_val'
- 558 | char *filename = String_val(filename_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:584:1: note: in expansion of macro 'ML_HASH'
- 584 | ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish)
- | ^~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:559:27: note: in expansion of macro 'String_val'
- 559 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:584:1: note: in expansion of macro 'ML_HASH'
- 584 | ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish)
- | ^~~~~~~
- src/utils/lib/stubs_c.c:584:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 584 | ML_HASH(md5,md5_state_t,md5_init,md5_append,md5_finish)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'md4_unsafe64_fd':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:512:27: note: in expansion of macro 'String_val'
- 512 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:585:1: note: in expansion of macro 'ML_HASH'
- 585 | ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish)
- | ^~~~~~~
- src/utils/lib/stubs_c.c: In function 'md4_unsafe_string':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:544:27: note: in expansion of macro 'String_val'
- 544 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:585:1: note: in expansion of macro 'ML_HASH'
- 585 | ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish)
- | ^~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:545:27: note: in expansion of macro 'String_val'
- 545 | unsigned char *string = String_val(string_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:585:1: note: in expansion of macro 'ML_HASH'
- 585 | ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish)
- | ^~~~~~~
- src/utils/lib/stubs_c.c: In function 'md4_unsafe_file':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:558:21: note: in expansion of macro 'String_val'
- 558 | char *filename = String_val(filename_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:585:1: note: in expansion of macro 'ML_HASH'
- 585 | ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish)
- | ^~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:559:27: note: in expansion of macro 'String_val'
- 559 | unsigned char *digest = String_val(digest_v); \
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c:585:1: note: in expansion of macro 'ML_HASH'
- 585 | ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish)
- | ^~~~~~~
- src/utils/lib/stubs_c.c:585:13: warning: "raise_not_found" is deprecated: use "caml_raise_not_found" instead
- 585 | ML_HASH(md4,MD4_CTX,MD4Init,MD4Update,md4_finish)
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'tigertree_unsafe64_fd':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/stubs_c.c:636:27: note: in expansion of macro 'String_val'
- 636 | unsigned char *digest = String_val(digest_v);
- | ^~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'ml_gethostbyname':
- src/utils/lib/stubs_c.c:733:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 733 | enter_blocking_section();
- | ^~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:735:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 735 | leave_blocking_section();
- | ^~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'ml_ip_job_start':
- src/utils/lib/stubs_c.c:909:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 909 | enter_blocking_section();
- | ^~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:915:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 915 | leave_blocking_section ();
- | ^~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'copy_statfs':
- src/utils/lib/stubs_c.c:1104:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1104 | v = copy_int64 (buf->f_type); caml_modify (&Field (bufv, 0), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1106:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1106 | v = copy_int64 (buf->f_bsize); caml_modify (&Field (bufv, 1), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1107:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1107 | v = copy_int64 (buf->f_blocks); caml_modify (&Field (bufv, 2), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1108:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1108 | v = copy_int64 (buf->f_bfree); caml_modify (&Field (bufv, 3), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1109:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1109 | v = copy_int64 (buf->f_bavail); caml_modify (&Field (bufv, 4), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1110:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1110 | v = copy_int64 (buf->f_files); caml_modify (&Field (bufv, 5), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1111:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1111 | v = copy_int64 (buf->f_ffree); caml_modify (&Field (bufv, 6), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1131:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1131 | v = copy_int64 (buf->f_namelen); caml_modify (&Field (bufv, 8), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1132:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 1132 | v = copy_string ("-1"); caml_modify (&Field (bufv, 9), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c:1135:13: warning: "copy_int64" is deprecated: use "caml_copy_int64" instead
- 1135 | v = copy_int64 (-1); caml_modify (&Field (bufv, 10), v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'statfs_statfs':
- src/utils/lib/stubs_c.c:1155:13: warning: "raise_constant" is deprecated: use "caml_raise_constant" instead
- 1155 | raise_constant(*(value *)caml_named_value("error"));
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'ml_check_endianness':
- src/utils/lib/stubs_c.c:1266:13: warning: "copy_string" is deprecated: use "caml_copy_string" instead
- 1266 | v = copy_string ("little endian");
- | ^~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/stubs_c.c: In function 'ml_getrlimit':
- src/utils/lib/stubs_c.c:1370:13: warning: "alloc_tuple" is deprecated: use "caml_alloc_tuple" instead
- 1370 | retval = alloc_tuple(2);
- | ^~~~~~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/zlib2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/zlib2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/arg2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/arg2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/hashtbl2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/hashtbl2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/file.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/file.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/bitv.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/bitv.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/stringMap.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/stringMap.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/levenshtein.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/indexer.mli
- File "src/utils/lib/indexer.mli", line 78, characters 29-33:
- 78 | module FullMake (Doc : Doc) (Make : Make) : sig
- ^^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Make.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/indexer.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/indexer1.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/indexer1.ml
- File "src/utils/lib/indexer1.ml", line 46, characters 8-30:
- 46 | suffix_value : string;
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field suffix_value is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/lib/indexer1.ml", line 39, characters 8-31:
- 39 | mutable next_doc : int;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field next_doc is never read.
- (However, this field is used to build or mutate values.)
- File "src/utils/lib/indexer1.ml", line 40, characters 8-32:
- 40 | mutable next_word : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field next_word is never read.
- (However, this field is used to build or mutate values.)
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/indexer2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/indexer2.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/http_lexer.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/set2.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/set2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/queues.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/queues.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/mailer.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/bigEndian.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/cobs.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/terminal.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/terminal.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/cdk.cmxa src/utils/cdk/zlibstubs.o src/utils/cdk/bzip2stubs.o src/utils/cdk/heap_c.o src/config/unix/os_stubs_c.o src/utils/lib/fst_hash.o src/utils/lib/md4_comp.o src/utils/lib/md4_c.o src/utils/lib/charsetstubs.o src/utils/lib/md5_c.o src/utils/lib/sha1_c.o src/utils/lib/tiger.o src/utils/lib/stubs_c.o -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/utils/cdk/zlib.cmx src/utils/cdk/zlib2.cmx src/utils/cdk/zip.cmx src/utils/cdk/gzip.cmx src/utils/cdk/tar.cmx src/utils/lib/autoconf.cmx src/utils/lib/fifo.cmx src/utils/cdk/arg2.cmx src/utils/lib/syslog.cmx src/utils/cdk/printexc2.cmx src/utils/cdk/printf2.cmx src/utils/cdk/heap.cmx src/utils/cdk/genlex2.cmx src/utils/cdk/filepath.cmx src/utils/cdk/string2.cmx src/utils/cdk/filename2.cmx src/utils/cdk/array2.cmx src/utils/cdk/hashtbl2.cmx src/utils/cdk/unix2.cmx src/utils/cdk/file.cmx src/utils/cdk/list2.cmx src/config/unix/mlUnix.cmx src/utils/lib/bitv.cmx src/utils/lib/intmap.cmx src/utils/lib/stringMap.cmx src/utils/lib/int64ops.cmx src/utils/lib/options.cmx src/utils/lib/levenshtein.cmx src/utils/lib/intset.cmx src/utils/lib/store.cmx src/utils/lib/indexer.cmx src/utils/lib/indexer1.cmx src/utils/lib/indexer2.cmx src/utils/lib/misc2.cmx src/utils/lib/misc.cmx src/utils/lib/unix32.cmx src/utils/lib/md4.cmx src/utils/lib/http_lexer.cmx src/utils/lib/url.cmx src/utils/ocamlrss/rss_date.cmx src/utils/lib/date.cmx src/utils/lib/charset.cmx src/utils/lib/gettext.cmx src/utils/lib/set2.cmx src/utils/lib/queues.cmx src/utils/lib/verificationBitmap.cmx src/utils/net/basicSocket.cmx src/utils/net/ip.cmx src/utils/net/ip_set.cmx src/utils/net/geoip.cmx src/utils/net/base64.cmx src/utils/net/mailer.cmx src/utils/net/anyEndian.cmx src/utils/net/bigEndian.cmx src/utils/net/littleEndian.cmx src/utils/net/tcpBufferedSocket.cmx src/utils/net/tcpServerSocket.cmx src/utils/net/udpSocket.cmx src/utils/net/http_server.cmx src/utils/net/http_client.cmx src/utils/net/cobs.cmx src/utils/net/terminal.cmx src/utils/mp3tagui/mp3_info.cmx src/utils/mp3tagui/mp3_genres.cmx src/utils/mp3tagui/mp3_misc.cmx src/utils/mp3tagui/mp3_tag.cmx src/utils/mp3tagui/mp3tag.cmx
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/bitstring/bitstring_c.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/bitstring/bitstring_c.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/bitstring/bitstring_c.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/bitstring/bitstring_c.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/bitstring/bitstring.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/bitstring/bitstring.ml
- File "src/utils/bitstring/bitstring.ml", line 842, characters 15-59:
- 842 | let add_byte ({ buf = buf; len = len; last = last } as t) byte =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "src/utils/bitstring/bitstring.ml", line 858, characters 14-58:
- 858 | let add_bit ({ buf = buf; len = len; last = last } as t) bit =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/bitstring.cmxa src/utils/bitstring/bitstring_c.o -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/utils/bitstring/bitstring.cmx
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/magic_nomagic.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/magic.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/magic.cmxa -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/utils/lib/magic_nomagic.cmx src/utils/lib/magic.cmx
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/daemon/common/commonHasher_c.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/daemon/common/commonHasher_c.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/daemon/common/commonHasher_c.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/daemon/common/commonHasher_c.c'
- In file included from /home/opam/.opam/4.14/lib/ocaml/caml/signals.h:27,
- from src/daemon/common/../../utils/lib/os_stubs.h:94,
- from src/daemon/common/commonHasher_c.c:22:
- src/daemon/common/commonHasher_c.c: In function 'ml_job_done':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/daemon/common/commonHasher_c.c:295:20: note: in expansion of macro 'String_val'
- 295 | char *result = String_val(result_v);
- | ^~~~~~~~~~
- src/daemon/common/commonHasher_c.c:296:13: warning: "string_length" is deprecated: use "caml_string_length" instead
- 296 | int result_len = string_length(result_v);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/daemon/common/commonHasher_c.c: In function 'ml_job_start':
- src/daemon/common/commonHasher_c.c:396:13: warning: "enter_blocking_section" is deprecated: use "caml_enter_blocking_section" instead
- 396 | enter_blocking_section();
- | ^~~~~~~~~~~~~~~
- src/daemon/common/commonHasher_c.c:402:13: warning: "leave_blocking_section" is deprecated: use "caml_leave_blocking_section" instead
- 402 | leave_blocking_section ();
- | ^~~~~~~~~~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_types.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_types.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_parser.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_parser.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_lexer.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_lexer.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_dtd.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml_dtd.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xmlParser.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xmlParser.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/xml-light/xml.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/ocamlrss/rss_messages.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/ocamlrss/rss_types.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/ocamlrss/rss_io.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/ocamlrss/rss.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/ocamlrss/rss.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonEvent.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonPictures.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonUserDb.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonMessages.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonBitzi.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/int64ops.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/geoip.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonTypes.ml
- File "src/daemon/common/commonTypes.ml", line 144, characters 8-36:
- 144 | mutable uid_string : string;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field uid_string is never mutated.
- File "src/daemon/common/commonTypes.ml", line 145, characters 8-36:
- 145 | mutable uid_type : uid_type;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field uid_type is never mutated.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiTypes.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiProto.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiDecoding.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiDecoding.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiEncoding.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/guiEncoding.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/giftParser.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/giftParser.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/giftLexer.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/giftEncoding.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/giftDecoding.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonHasher.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonHasher.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonHosts.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonHosts.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonIndexing.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/common.cmxa src/daemon/common/commonHasher_c.o -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/utils/xml-light/xml_types.cmx src/utils/xml-light/xml_parser.cmx src/utils/xml-light/xml_lexer.cmx src/utils/xml-light/xml_dtd.cmx src/utils/xml-light/xmlParser.cmx src/utils/xml-light/xml.cmx src/utils/ocamlrss/rss_messages.cmx src/utils/ocamlrss/rss_types.cmx src/utils/ocamlrss/rss_io.cmx src/utils/ocamlrss/rss.cmx src/daemon/common/commonTypes.cmx src/daemon/common/guiTypes.cmx src/daemon/common/guiProto.cmx src/daemon/common/commonEvent.cmx src/daemon/common/commonOptions.cmx src/daemon/common/commonPictures.cmx src/daemon/common/commonUserDb.cmx src/daemon/common/commonMessages.cmx src/daemon/common/commonGlobals.cmx src/daemon/common/commonBitzi.cmx src/daemon/common/guiDecoding.cmx src/daemon/common/guiEncoding.cmx src/daemon/common/giftLexer.cmx src/daemon/common/giftParser.cmx src/daemon/common/giftEncoding.cmx src/daemon/common/giftDecoding.cmx src/daemon/common/commonHasher.cmx src/daemon/common/commonHosts.cmx src/daemon/common/commonIndexing.cmx
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/net/upnp_stubs.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/net/upnp_stubs.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/net/upnp_stubs.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/net/upnp_stubs.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/upnpClient.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/upnpClient.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonUser.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonNetwork.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonNetwork.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonServer.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonClient.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonClient.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonFile.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonFile.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonResult.mli
- File "src/daemon/common/commonResult.mli", line 54, characters 15-27:
- 54 | functor (FilterResult : sig
- ^^^^^^^^^^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter FilterResult.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonResult.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonWeb.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonBlocking.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonComplexOptions.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonComplexOptions.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonShared.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonShared.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonRoom.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonRoom.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonSearch.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonSearch.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonMultimedia.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonMultimedia.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonSwarming.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonInteractive.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonChunks.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonChunks.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonDownloads.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonDownloads.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonUploads.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonSources.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonSources.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonStats.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/client.cmxa src/utils/net/upnp_stubs.o -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/utils/net/upnpClient.cmx src/daemon/common/commonUser.cmx src/daemon/common/commonNetwork.cmx src/daemon/common/commonServer.cmx src/daemon/common/commonClient.cmx src/daemon/common/commonFile.cmx src/daemon/common/commonResult.cmx src/daemon/common/commonWeb.cmx src/daemon/common/commonBlocking.cmx src/daemon/common/commonComplexOptions.cmx src/daemon/common/commonShared.cmx src/daemon/common/commonRoom.cmx src/daemon/common/commonSearch.cmx src/daemon/common/commonMultimedia.cmx src/daemon/common/commonSwarming.cmx src/daemon/common/commonInteractive.cmx src/daemon/common/commonChunks.cmx src/daemon/common/commonDownloads.cmx src/daemon/common/commonUploads.cmx src/daemon/common/commonSources.cmx src/daemon/common/commonStats.cmx
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/networks/fasttrack/enc_type_1.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/networks/fasttrack/enc_type_1.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/networks/fasttrack/enc_type_1.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/networks/fasttrack/enc_type_1.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/networks/fasttrack/enc_type_2.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/networks/fasttrack/enc_type_2.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/networks/fasttrack/enc_type_2.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/networks/fasttrack/enc_type_2.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/networks/fasttrack/enc_type_20.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/networks/fasttrack/enc_type_20.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/networks/fasttrack/enc_type_20.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/networks/fasttrack/enc_type_20.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/networks/fasttrack/enc_type_80.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/networks/fasttrack/enc_type_80.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/networks/fasttrack/enc_type_80.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/networks/fasttrack/enc_type_80.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/networks/fasttrack/fst_crypt.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/networks/fasttrack/fst_crypt.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/networks/fasttrack/fst_crypt.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/networks/fasttrack/fst_crypt.c'
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/networks/fasttrack/fst_crypt_ml.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/networks/fasttrack/fst_crypt_ml.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/networks/fasttrack/fst_crypt_ml.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/networks/fasttrack/fst_crypt_ml.c'
- In file included from src/networks/fasttrack/fst_crypt_ml.c:25:
- src/networks/fasttrack/fst_crypt_ml.c: In function 'ml_apply_cipher':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/networks/fasttrack/fst_crypt_ml.c:50:13: note: in expansion of macro 'String_val'
- 50 | char *s = String_val(s_v);
- | ^~~~~~~~~~
- src/networks/fasttrack/fst_crypt_ml.c: In function 'ml_cipher_packet_get':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/networks/fasttrack/fst_crypt_ml.c:86:13: note: in expansion of macro 'String_val'
- 86 | char *s = String_val(s_v);
- | ^~~~~~~~~~
- src/networks/fasttrack/fst_crypt_ml.c: In function 'ml_cipher_packet_set':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/networks/fasttrack/fst_crypt_ml.c:140:13: note: in expansion of macro 'String_val'
- 140 | char *s = String_val(s_v);
- | ^~~~~~~~~~
- src/networks/fasttrack/fst_crypt_ml.c: In function 'ml_cipher_packet_set_xored':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/networks/fasttrack/fst_crypt_ml.c:161:13: note: in expansion of macro 'String_val'
- 161 | char *s = String_val(s_v);
- | ^~~~~~~~~~
- g++ -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -o src/utils/lib/CryptoPP.o "-I/home/opam/.opam/4.14/lib/ocaml" -c src/utils/lib/CryptoPP.cc
- In file included from src/utils/lib/CryptoPP.cc:85:
- src/utils/lib/CryptoPP.h:3936:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3936 | BufferedTransformation::Get;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3937:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3937 | BufferedTransformation::Peek;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3938:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3938 | BufferedTransformation::TransferTo;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3939:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3939 | BufferedTransformation::CopyTo;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3940:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3940 | BufferedTransformation::CopyRangeTo;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3941:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3941 | BufferedTransformation::TransferMessagesTo;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3942:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3942 | BufferedTransformation::CopyMessagesTo;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3943:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3943 | BufferedTransformation::TransferAllTo;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:3944:9: warning: access declarations are deprecated in favor of using-declarations; suggestion: add the 'using' keyword [-Wdeprecated]
- 3944 | BufferedTransformation::CopyAllTo;
- | ^~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h: In destructor 'virtual CryptoPP::AlgorithmParametersBase::~AlgorithmParametersBase()':
- src/utils/lib/CryptoPP.h:4349:45: warning: 'bool std::uncaught_exception()' is deprecated: use 'std::uncaught_exceptions()' instead [-Wdeprecated-declarations]
- 4349 | if (!std::uncaught_exception())
- | ~~~~~~~~~~~~~~~~~~~~~~~^~
- In file included from /usr/include/c++/14/ext/concurrence.h:34,
- from /usr/include/c++/14/bits/shared_ptr_base.h:62,
- from /usr/include/c++/14/bits/shared_ptr.h:53,
- from /usr/include/c++/14/memory:80,
- from src/utils/lib/CryptoPP.h:369:
- /usr/include/c++/14/exception:125:8: note: declared here
- 125 | bool uncaught_exception() _GLIBCXX_USE_NOEXCEPT __attribute__ ((__pure__));
- | ^~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:4355:33: warning: 'throw' will always call 'terminate' [-Wterminate]
- 4355 | throw ParameterNotUsed(m_name);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP.h:4355:33: note: in C++11 destructors default to 'noexcept'
- src/utils/lib/CryptoPP.cc: In member function 'virtual unsigned int CryptoPP::PK_Signer::Sign(CryptoPP::RandomNumberGenerator&, CryptoPP::PK_MessageAccumulator*, CryptoPP::byte*) const':
- src/utils/lib/CryptoPP.cc:698:14: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 698 | std::auto_ptr<PK_MessageAccumulator> m(messageAccumulator);
- | ^~~~~~~~
- In file included from /usr/include/c++/14/memory:78:
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'virtual unsigned int CryptoPP::PK_Signer::SignMessage(CryptoPP::RandomNumberGenerator&, const CryptoPP::byte*, unsigned int, CryptoPP::byte*) const':
- src/utils/lib/CryptoPP.cc:704:14: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 704 | std::auto_ptr<PK_MessageAccumulator> m(NewSignatureAccumulator(rng));
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'virtual unsigned int CryptoPP::PK_Signer::SignMessageWithRecovery(CryptoPP::RandomNumberGenerator&, const CryptoPP::byte*, unsigned int, const CryptoPP::byte*, unsigned int, CryptoPP::byte*) const':
- src/utils/lib/CryptoPP.cc:712:14: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 712 | std::auto_ptr<PK_MessageAccumulator> m(NewSignatureAccumulator(rng));
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'virtual bool CryptoPP::PK_Verifier::Verify(CryptoPP::PK_MessageAccumulator*) const':
- src/utils/lib/CryptoPP.cc:720:14: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 720 | std::auto_ptr<PK_MessageAccumulator> m(messageAccumulator);
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'virtual bool CryptoPP::PK_Verifier::VerifyMessage(const CryptoPP::byte*, unsigned int, const CryptoPP::byte*, unsigned int) const':
- src/utils/lib/CryptoPP.cc:726:14: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 726 | std::auto_ptr<PK_MessageAccumulator> m(NewVerificationAccumulator());
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'virtual CryptoPP::DecodingResult CryptoPP::PK_Verifier::Recover(CryptoPP::byte*, CryptoPP::PK_MessageAccumulator*) const':
- src/utils/lib/CryptoPP.cc:734:14: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 734 | std::auto_ptr<PK_MessageAccumulator> m(messageAccumulator);
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'virtual CryptoPP::DecodingResult CryptoPP::PK_Verifier::RecoverMessage(CryptoPP::byte*, const CryptoPP::byte*, unsigned int, const CryptoPP::byte*, unsigned int) const':
- src/utils/lib/CryptoPP.cc:742:14: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 742 | std::auto_ptr<PK_MessageAccumulator> m(NewVerificationAccumulator());
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'std::vector<short unsigned int>* CryptoPP::NewPrimeTable::operator()() const':
- src/utils/lib/CryptoPP.cc:1047:22: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 1047 | std::auto_ptr<std::vector<word16> > pPrimeTable(new std::vector<word16>);
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- src/utils/lib/CryptoPP.cc: In member function 'void CryptoPP::ProxyFilter::SetFilter(CryptoPP::Filter*)':
- src/utils/lib/CryptoPP.cc:6788:22: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
- 6788 | std::auto_ptr<OutputProxy> temp(proxy = new OutputProxy(*this, false));
- | ^~~~~~~~
- /usr/include/c++/14/bits/unique_ptr.h:59:28: note: declared here
- 59 | template<typename> class auto_ptr;
- | ^~~~~~~~
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -verbose -ccopt "-I /byterun -o src/utils/lib/CryptoPP_stubs.o" -ccopt "-g -O2 -pthread" -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" -c src/utils/lib/CryptoPP_stubs.c
- + gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -c -g -I /byterun -o src/utils/lib/CryptoPP_stubs.o -g -O2 -pthread -pthread -I'/home/opam/.opam/4.14/lib/ocaml' 'src/utils/lib/CryptoPP_stubs.c'
- In file included from src/utils/lib/CryptoPP_stubs.h:24,
- from src/utils/lib/CryptoPP_stubs.c:20:
- src/utils/lib/CryptoPP_stubs.c: In function 'ml_loadKey':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ^
- src/utils/lib/CryptoPP_stubs.c:35:13: note: in expansion of macro 'String_val'
- 35 | char *s = String_val(privatekey);
- | ^~~~~~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memmove' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP_stubs.c:41:11: note: in expansion of macro 'String_val'
- 41 | memmove(String_val(res), buf, len);
- | ^~~~~~~~~~
- In file included from src/utils/lib/CryptoPP_stubs.h:23:
- /usr/include/string.h:47:29: note: expected 'void *' but argument is of type 'const char *'
- 47 | extern void *memmove (void *__dest, const void *__src, size_t __n)
- | ~~~~~~^~~~~~
- src/utils/lib/CryptoPP_stubs.c: In function 'ml_createSignature':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memmove' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 290 | #define String_val(x) ((const char *) Bp_val(x))
- | ~^~~~~~~~~~~~~~~~~~~~~~~~~
- src/utils/lib/CryptoPP_stubs.c:61:11: note: in expansion of macro 'String_val'
- 61 | memmove(String_val(res), buf, len);
- | ^~~~~~~~~~
- /usr/include/string.h:47:29: note: expected 'void *' but argument is of type 'const char *'
- 47 | extern void *memmove (void *__dest, const void *__src, size_t __n)
- | ~~~~~~^~~~~~
- src/utils/lib/CryptoPP_stubs.c: In function 'cc_lprintf_nl':
- src/utils/lib/CryptoPP_stubs.c:90:36: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 90 | if (caml_func == NULL) caml_func = caml_named_value("ml_lprintf_nl");
- | ^
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackNetwork.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackTypes.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackOptions.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackGlobals.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackComplexOptions.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackFunctions.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackProtocol.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackProto.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackClients.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackHandler.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackServers.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackInteractive.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fasttrack/fasttrackMain.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPTypes.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPOptions.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPGlobals.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPComplexOptions.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPProtocol.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPClients.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPHTTP.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPFTP.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPSSH.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPInteractive.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/fileTP/fileTPMain.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bencode.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTRate.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTTypes.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTOptions.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/bitstring/bitstring_persistent.mli
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/bitstring/bitstring.ml
- File "src/utils/bitstring/bitstring.ml", line 842, characters 15-59:
- 842 | let add_byte ({ buf = buf; len = len; last = last } as t) byte =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "src/utils/bitstring/bitstring.ml", line 858, characters 14-58:
- 858 | let add_bit ({ buf = buf; len = len; last = last } as t) bit =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/bitstring.cma src/utils/bitstring/bitstring_c.o -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/utils/bitstring/bitstring.cmo
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/bitstring -I +camlp4 camlp4lib.cma -c src/utils/bitstring/bitstring_persistent.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/bitstring -I +camlp4 camlp4lib.cma -pp '/home/opam/.opam/4.14/bin/camlp4of -impl' -c src/utils/bitstring/pa_bitstring.mlt src/utils/bitstring/bitstring_persistent.cmo build/bitstring.cma
- /home/opam/.opam/4.14/bin/camlp4of build/bitstring.cma src/utils/bitstring/bitstring_persistent.cmo src/utils/bitstring/pa_bitstring.cmo -impl src/networks/bittorrent/bTUdpTracker.mlp -o src/networks/bittorrent/bTUdpTracker.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTUdpTracker.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTProtocol.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTTorrent.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/kademlia.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bT_DHT.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTGlobals.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTComplexOptions.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/date.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/config/unix/mlUnix.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/mailer.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/lib/autoconf.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonOptions.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonUserDb.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonGlobals.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/cdk/array2.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonSwarming.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonEvent.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonUser.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonPictures.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonServer.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonIndexing.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonInteractive.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/common/commonStats.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTRate.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTTypes.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTStats.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTStats.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTTracker.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTChooser.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTClients.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTInteractive.ml
- File "src/networks/bittorrent/bTInteractive.ml", line 321, characters 23-32:
- 321 | let emit_file text ?(desc=text) ~value ~size ~progress ~extra =
- ^^^^^^^^^
- Warning 16 [unerasable-optional-argument]: this optional argument cannot be erased.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/bittorrent/bTMain.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeySui1.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeySui.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyTypes.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyOptions.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyMftp.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyMftp.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyImport.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyOpenProtocol.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoClient.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoServer.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoUdp.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyPandora.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyGlobals.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyTypes.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/anyEndian.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/utils/net/littleEndian.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoServer.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoUdp.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoClient.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoCom.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoCom.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyComplexOptions.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyComplexOptions.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeySupernode.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyShare.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyShare.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyReliability.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyThieves.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyStats.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyStats.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyOneFile.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyOneFile.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyOvernetImport.ml
- /home/opam/.opam/4.14/bin/camlp4of build/bitstring.cma src/utils/bitstring/bitstring_persistent.cmo src/utils/bitstring/pa_bitstring.cmo -impl src/networks/donkey/donkeyNodesDat.mlp -o src/networks/donkey/donkeyNodesDat.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyNodesDat.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyOvernet.mli
- File "src/networks/donkey/donkeyOvernet.mli", line 105, characters 12-17:
- 105 | module Make(Proto: sig
- ^^^^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Proto.
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyOvernet.ml
- File "src/networks/donkey/donkeyOvernet.ml", line 297, characters 4-37:
- 297 | mutable search_kind : search_for;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field search_kind is never mutated.
- File "src/networks/donkey/donkeyOvernet.ml", line 312, characters 4-31:
- 312 | mutable search_start : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field search_start is never mutated.
- File "src/networks/donkey/donkeyOvernet.ml", line 313, characters 4-34:
- 313 | mutable search_lifetime : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field search_lifetime is never mutated.
- File "src/networks/donkey/donkeyOvernet.ml", line 315, characters 4-57:
- 315 | mutable search_results : (Md4.t, tag list) Hashtbl.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field search_results is never mutated.
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoKademlia.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoKademlia.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyClient.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyClient.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoOvernet.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyProtoOvernet.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyUdp.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyFiles.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyServers.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyServers.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeySearch.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeySearch.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyInteractive.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/networks/donkey/donkeyMain.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/core.cmxa src/networks/fasttrack/enc_type_1.o src/networks/fasttrack/enc_type_2.o src/networks/fasttrack/enc_type_20.o src/networks/fasttrack/enc_type_80.o src/networks/fasttrack/fst_crypt.o src/networks/fasttrack/fst_crypt_ml.o src/utils/lib/CryptoPP.o src/utils/lib/CryptoPP_stubs.o -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/networks/fasttrack/fasttrackNetwork.cmx src/networks/fasttrack/fasttrackTypes.cmx src/networks/fasttrack/fasttrackOptions.cmx src/networks/fasttrack/fasttrackGlobals.cmx src/networks/fasttrack/fasttrackComplexOptions.cmx src/networks/fasttrack/fasttrackFunctions.cmx src/networks/fasttrack/fasttrackProtocol.cmx src/networks/fasttrack/fasttrackProto.cmx src/networks/fasttrack/fasttrackClients.cmx src/networks/fasttrack/fasttrackHandler.cmx src/networks/fasttrack/fasttrackServers.cmx src/networks/fasttrack/fasttrackInteractive.cmx src/networks/fasttrack/fasttrackMain.cmx src/networks/fileTP/fileTPTypes.cmx src/networks/fileTP/fileTPOptions.cmx src/networks/fileTP/fileTPGlobals.cmx src/networks/fileTP/fileTPComplexOptions.cmx src/networks/fileTP/fileTPProtocol.cmx src/networks/fileTP/fileTPClients.cmx src/networks/fileTP/fileTPHTTP.cmx src/networks/fileTP/fileTPFTP.cmx src/networks/fileTP/fileTPSSH.cmx src/networks/fileTP/fileTPInteractive.cmx src/networks/fileTP/fileTPMain.cmx src/networks/bittorrent/bencode.cmx src/networks/bittorrent/bTRate.cmx src/networks/bittorrent/bTTypes.cmx src/networks/bittorrent/bTOptions.cmx src/networks/bittorrent/bTUdpTracker.cmx src/networks/bittorrent/bTProtocol.cmx src/networks/bittorrent/bTTorrent.cmx src/networks/bittorrent/kademlia.cmx src/networks/bittorrent/bT_DHT.cmx src/networks/bittorrent/bTGlobals.cmx src/networks/bittorrent/bTComplexOptions.cmx src/networks/bittorrent/bTStats.cmx src/networks/bittorrent/bTTracker.cmx src/networks/bittorrent/bTChooser.cmx src/networks/bittorrent/bTClients.cmx src/networks/bittorrent/bTInteractive.cmx src/networks/bittorrent/bTMain.cmx src/networks/donkey/donkeySui1.cmx src/networks/donkey/donkeySui.cmx src/networks/donkey/donkeyTypes.cmx src/networks/donkey/donkeyOptions.cmx src/networks/donkey/donkeyMftp.cmx src/networks/donkey/donkeyImport.cmx src/networks/donkey/donkeyOpenProtocol.cmx src/networks/donkey/donkeyProtoClient.cmx src/networks/donkey/donkeyProtoServer.cmx src/networks/donkey/donkeyProtoUdp.cmx src/networks/donkey/donkeyPandora.cmx src/networks/donkey/donkeyGlobals.cmx src/networks/donkey/donkeyProtoCom.cmx src/networks/donkey/donkeyComplexOptions.cmx src/networks/donkey/donkeySupernode.cmx src/networks/donkey/donkeyShare.cmx src/networks/donkey/donkeyReliability.cmx src/networks/donkey/donkeyThieves.cmx src/networks/donkey/donkeyStats.cmx src/networks/donkey/donkeyOneFile.cmx src/networks/donkey/donkeyOvernetImport.cmx src/networks/donkey/donkeyNodesDat.cmx src/networks/donkey/donkeyOvernet.cmx src/networks/donkey/donkeyProtoKademlia.cmx src/networks/donkey/donkeyClient.cmx src/networks/donkey/donkeyProtoOvernet.cmx src/networks/donkey/donkeyUdp.cmx src/networks/donkey/donkeyFiles.cmx src/networks/donkey/donkeyServers.cmx src/networks/donkey/donkeySearch.cmx src/networks/donkey/donkeyInteractive.cmx src/networks/donkey/donkeyMain.cmx
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverGraphics_nogd.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverGraphics.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverInteractive.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverCommands.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverCommands.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverControlers.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverControlers.ml
- /home/opam/.opam/4.14/bin/ocamlc.opt -g -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverInterface.mli
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverInterface.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -I src/utils/extlib -I src/utils/cdk -I src/utils/bitstring -I src/utils/lib -I src/utils/ocamlrss -I src/utils/xml-light -I src/utils/net -I tools -I src/daemon/common -I src/daemon/driver -I src/utils/mp3tagui -I src/config/unix -I src/networks/fasttrack -I src/networks/fileTP -I src/networks/bittorrent -I src/networks/donkey -I +camlp4 -c src/daemon/driver/driverMain.ml
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -a -o build/driver.cmxa -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" src/daemon/driver/driverGraphics_nogd.cmx src/daemon/driver/driverGraphics.cmx src/daemon/driver/driverInteractive.cmx src/daemon/driver/driverCommands.cmx src/daemon/driver/driverControlers.cmx src/daemon/driver/driverInterface.cmx src/daemon/driver/driverMain.cmx
- /home/opam/.opam/4.14/bin/ocamlopt.opt -g -inline 10 -w +a-3-4-6-27-29-32-35-37-41-44-45-48-60-70 -linkall -o mlnet \
- bigarray.cmxa unix.cmxa str.cmxa nums.cmxa -ccopt " " -cclib "-lz " -ccopt "-pthread" -cclib "-lpthread" \
- \
- \
- -cc 'g++ -g -O2' -ccopt '-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer' \
- \
- \
- \
- -I build build/extlib.cmxa build/cdk.cmxa build/bitstring.cmxa build/magic.cmxa build/common.cmxa build/client.cmxa build/core.cmxa build/driver.cmxa src/daemon/common/commonMain.cmx
-> compiled mldonkey.3.2.1
-> removed mldonkey.3.2.1
-> installed mldonkey.3.2.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:18.14 ---> saved as "c1b1ba68f11cc0382b8a4526b4fb40636cdf9b9ea7175de066c8da59c4bbfd79"
Job succeeded
2026-02-27 03:18.23: Job succeeded