- github
- ocaml
- opam-repository
- 118a69
- compilers,5.4,dune.3.22.0~alpha0,revdeps,pari-bindings.0.1
(not at the head of any monitored branch or PR)
2026-03-02 19:36.02: New job: test pari-bindings.0.1 with dune.3.22.0~alpha0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
on debian-13-ocaml-5.4/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/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.0~alpha0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall pari-bindings.0.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'pari-bindings.0.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test pari-bindings.0.1) || true
RUN opam reinstall --with-test --verbose pari-bindings.0.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'pari-bindings.0.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-02 19:36.02: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-dune.3.22.0~alpha0-pari-bindings.0.1-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:36.02: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha0' && 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 pari-bindings.0.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'pari-bindings.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test pari-bindings.0.1) || true"))
(run (shell "opam reinstall --with-test --verbose pari-bindings.0.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'pari-bindings.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-02 19:36.02: Waiting for resource in pool OCluster
2026-03-03 08:00.41: Waiting for worker…
2026-03-03 08:02.28: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
.../chrome-trace/chrome-trace.3.22.0~alpha0/opam | 39 +++++++++++
.../dune-action-plugin.3.22.0~alpha0/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.0~alpha0/opam | 40 ++++++++++++
.../dune-build-info.3.22.0~alpha0/opam | 45 +++++++++++++
.../dune-configurator.3.22.0~alpha0/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.0~alpha0/opam | 42 ++++++++++++
.../dune-private-libs.3.22.0~alpha0/opam | 50 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.0~alpha0/opam | 37 +++++++++++
packages/dune/dune.3.22.0~alpha0/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.0~alpha0/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.0~alpha0/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.0~alpha0/opam | 38 +++++++++++
packages/stdune/stdune.3.22.0~alpha0/opam | 46 +++++++++++++
.../top-closure/top-closure.3.22.0~alpha0/opam | 38 +++++++++++
packages/xdg/xdg.3.22.0~alpha0/opam | 39 +++++++++++
18 files changed, 797 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c' locally
docker.io/ocaml/opam@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c: Pulling from ocaml/opam
ef235bf1a09a: Already exists
58b06b604a42: Already exists
b55f23c32d5a: Already exists
aa415425edb7: Already exists
c4f39ed7469c: Already exists
ca248a2fdd5e: Already exists
74109c509b2f: Already exists
18c2fa2271cb: Already exists
37d4d41661a2: Already exists
0b2f35f78814: Already exists
e65f29522a9a: Already exists
603a51b67573: Already exists
89b2faa02f16: Already exists
e5f11471afd4: Already exists
d7b0e5daa224: Already exists
7bec4d50f3b2: Already exists
d3a70ed71f1c: Already exists
90de03d9b27a: Already exists
a28f685cf2db: Already exists
5bb5e02041c7: Already exists
74f9af816199: Already exists
74c2f6cb4138: Already exists
4f4fb700ef54: Already exists
5ce9bdcb2952: Already exists
bf18c14e9b34: Already exists
bb4b67501479: Already exists
89e7ed0468f5: Already exists
640077527026: Already exists
363b481ff012: Already exists
437bd8bc3ce9: Already exists
2bcf3429833a: Already exists
3e5fe21454e9: Already exists
f3afb11ae499: Already exists
c3a5b88f5e5f: Already exists
124a1dc355b1: Already exists
0a9982d37abd: Already exists
9b8b724665ed: Already exists
f81507befe71: Already exists
7984e4546bf9: Already exists
3579b890ab6e: Already exists
e83772930ba8: Already exists
ae210f88246e: Already exists
e035ef68bd1a: Already exists
10a755270a5b: Already exists
ba9bc7232694: Already exists
d6bc4e91a30f: Already exists
a3c4c8a1f4e2: Already exists
845ad49c4ca0: Already exists
Digest: sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
Status: Downloaded newer image for ocaml/opam@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
2026-03-03 08:02.39 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-03 08:02.39 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 08:02.39 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" 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 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-03 08:02.39 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-03 08:02.39 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 08:02.41 ---> using "eec15e3492f38e67613d1a01ad00877a9a3ba45d19f73e6250e19cd2bda0a34c" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 08:02.41 ---> using "b219e5557ed366603222e74c0319619404e73f91801374c46bc0615017490834" 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 (1287 kB/s)
- Reading package lists...
-
2026-03-03 08:02.41 ---> using "411e66a2e15299fe700f96de3484c141af0207f3778de7985d9b3b9532bed7f1" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 08:02.41 ---> using "2f9d235ba473e057f7f5361d0a2909273f5e0fdc881489604942445353473ef7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.0~alpha0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.0~alpha0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.0~alpha0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0 (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 08:02.41 ---> using "f408636eb0246d657c1391cb7970d0cd4140119dfc0439ba4e0d991b34b6c9dc" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall pari-bindings.0.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'pari-bindings.0.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
pari-bindings.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 93 packages
- install astring 0.8.5 [required by mdx, odoc]
- install base v0.17.3 [required by core]
- install base_bigstring v0.17.0 [required by core]
- install base_quickcheck v0.17.1 [required by core]
- install bin_prot v0.17.0-1 [required by core]
- install camlp-streams 5.0.1 [required by mdx]
- install capitalization v0.17.0 [required by ppx_string_conv]
- install cmdliner 2.1.0 [required by mdx, odoc]
- install conf-bison 2 [required by pari-bindings]
- install conf-gmp 5 [required by pari-bindings]
- install conf-libffi 2.0.0 [required by ctypes-foreign]
- install conf-perl 2 [required by pari-bindings]
- install conf-pkg-config 4 [required by ctypes-foreign]
- install core v0.17.1 [required by pari-bindings]
- install cppo 1.8.0 [required by mdx, odoc]
- install crunch 4.0.0 [required by odoc]
- install csexp 1.5.2 [required by mdx]
- install ctypes 0.24.0 [required by pari-bindings]
- install ctypes-foreign 0.24.0 [required by pari-bindings]
- install dune-configurator 3.22.0~alpha0 [required by ctypes, ctypes-foreign]
- install fieldslib v0.17.0 [required by core]
- install fmt 0.11.0 [required by mdx, odoc]
- install fpath 0.7.3 [required by odoc]
- install gel v0.17.0 [required by ppx_diff]
- install int_repr v0.17.0 [required by base_bigstring]
- install integers 0.7.0 [required by ctypes]
- install jane-street-headers v0.17.0 [required by core]
- install jst-config v0.17.0 [required by core]
- install logs 0.10.0 [required by mdx]
- install mdx 2.5.1 [required by pari-bindings]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-version 4.0.3 [required by mdx]
- install ocaml_intrinsics_kernel v0.17.1 [required by base]
- install ocamlbuild 0.16.1 [required by logs, astring, fmt, fpath]
- install ocamlfind 1.9.8 [required by mdx]
- install odoc 3.1.0 [required by pari-bindings]
- install odoc-parser 3.1.0 [required by odoc]
- install pari-bindings 0.1
- install parsexp v0.17.0 [required by sexplib]
- install ppx_assert v0.17.0 [required by core]
- install ppx_base v0.17.0 [required by core]
- install ppx_bench v0.17.1 [required by ppx_jane]
- install ppx_bin_prot v0.17.1 [required by ppx_jane]
- install ppx_cold v0.17.0 [required by ppx_base]
- install ppx_compare v0.17.0 [required by ppx_diff]
- install ppx_custom_printf v0.17.0 [required by ppx_jane]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppx_diff v0.17.1 [required by core]
- install ppx_disable_unused_warnings v0.17.0 [required by ppx_jane]
- install ppx_enumerate v0.17.0 [required by ppx_diff]
- install ppx_expect v0.17.3 [required by ppx_jane]
- install ppx_fields_conv v0.17.0 [required by ppx_jane]
- install ppx_fixed_literal v0.17.0 [required by ppx_jane]
- install ppx_globalize v0.17.2 [required by ppx_base]
- install ppx_hash v0.17.0 [required by core]
- install ppx_here v0.17.0 [required by ppx_jane]
- install ppx_ignore_instrumentation v0.17.0 [required by ppx_jane]
- install ppx_inline_test v0.17.1 [required by core]
- install ppx_jane v0.17.0 [required by core]
- install ppx_let v0.17.1 [required by ppx_jane]
- install ppx_log v0.17.0 [required by ppx_jane]
- install ppx_module_timer v0.17.0 [required by ppx_jane]
- install ppx_optcomp v0.17.1 [required by core]
- install ppx_optional v0.17.0 [required by ppx_jane]
- install ppx_pipebang v0.17.0 [required by ppx_jane]
- install ppx_sexp_conv v0.17.1 [required by core]
- install ppx_sexp_message v0.17.0 [required by core]
- install ppx_sexp_value v0.17.0 [required by ppx_jane]
- install ppx_stable v0.17.1 [required by ppx_jane]
- install ppx_stable_witness v0.17.0 [required by ppx_jane]
- install ppx_string v0.17.0 [required by ppx_jane]
- install ppx_string_conv v0.17.0 [required by ppx_jane]
- install ppx_tydi v0.17.1 [required by ppx_jane]
- install ppx_typerep_conv v0.17.1 [required by ppx_jane]
- install ppx_variants_conv v0.17.1 [required by ppx_jane]
- install ppxlib 0.37.0 [required by ppx_diff]
- install ppxlib_jane v0.17.4 [required by ppx_diff]
- install ptime 1.2.0 [required by crunch]
- install re 1.14.0 [required by mdx]
- install result 1.5 [required by mdx]
- install seq base [required by tyxml]
- install sexplib v0.17.0 [required by core]
- install sexplib0 v0.17.0 [required by base]
- install splittable_random v0.17.0 [required by core]
- install stdio v0.17.0 [required by core]
- install stdlib-shims 0.3.0 [required by integers]
- install time_now v0.17.0 [required by core]
- install topkg 1.1.1 [required by logs, astring, fmt, fpath]
- install typerep v0.17.1 [required by core]
- install tyxml 4.6.0 [required by odoc]
- install uutf 1.0.4 [required by tyxml]
- install variantslib v0.17.0 [required by core]
The following system packages will first need to be installed:
bison libffi-dev libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "bison" "libffi-dev" "libgmp-dev" "pkg-config"
- 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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../0-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package bison.
- Preparing to unpack .../1-bison_2%3a3.8.2+dfsg-1+b2_amd64.deb ...
- Unpacking bison (2:3.8.2+dfsg-1+b2) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../2-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../3-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../4-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../5-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../6-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../7-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../8-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up m4 (1.4.19-8) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up bison (2:3.8.2+dfsg-1+b2) ...
- update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- 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 <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.17.3 (cached)
-> retrieved base_bigstring.v0.17.0 (cached)
-> retrieved base_quickcheck.v0.17.1 (cached)
-> retrieved bin_prot.v0.17.0-1 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved capitalization.v0.17.0 (cached)
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved core.v0.17.1 (cached)
-> installed conf-bison.2
-> installed conf-gmp.5
-> installed conf-perl.2
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0 (cached)
-> installed conf-libffi.2.0.0
-> retrieved crunch.4.0.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.24.0, ctypes-foreign.0.24.0 (cached)
-> installed csexp.1.5.2
-> installed camlp-streams.5.0.1
-> retrieved dune-configurator.3.22.0~alpha0 (cached)
-> installed cppo.1.8.0
-> retrieved fieldslib.v0.17.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved fpath.0.7.3 (cached)
-> retrieved gel.v0.17.0 (cached)
-> retrieved int_repr.v0.17.0 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved jane-street-headers.v0.17.0 (cached)
-> retrieved jst-config.v0.17.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved mdx.2.5.1 (cached)
-> retrieved num.1.6 (cached)
-> installed jane-street-headers.v0.17.0
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-version.4.0.3 (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed ocaml-version.4.0.3
-> installed ocaml_intrinsics_kernel.v0.17.1
-> retrieved odoc.3.1.0, odoc-parser.3.1.0 (cached)
-> retrieved pari-bindings.0.1 (cached)
-> retrieved parsexp.v0.17.0 (cached)
-> retrieved ppx_assert.v0.17.0 (cached)
-> retrieved ppx_base.v0.17.0 (cached)
-> retrieved ppx_bench.v0.17.1 (cached)
-> retrieved ppx_bin_prot.v0.17.1 (cached)
-> retrieved ppx_cold.v0.17.0 (cached)
-> retrieved ppx_compare.v0.17.0 (cached)
-> retrieved ppx_custom_printf.v0.17.0 (cached)
-> installed cmdliner.2.1.0
-> installed dune-configurator.3.22.0~alpha0
-> installed num.1.6
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_diff.v0.17.1 (cached)
-> retrieved ppx_disable_unused_warnings.v0.17.0 (cached)
-> retrieved ppx_enumerate.v0.17.0 (cached)
-> retrieved ppx_expect.v0.17.3 (cached)
-> retrieved ppx_fields_conv.v0.17.0 (cached)
-> retrieved ppx_fixed_literal.v0.17.0 (cached)
-> retrieved ppx_globalize.v0.17.2 (cached)
-> retrieved ppx_hash.v0.17.0 (cached)
-> retrieved ppx_here.v0.17.0 (cached)
-> retrieved ppx_ignore_instrumentation.v0.17.0 (cached)
-> retrieved ppx_inline_test.v0.17.1 (cached)
-> retrieved ppx_jane.v0.17.0 (cached)
-> retrieved ppx_let.v0.17.1 (cached)
-> retrieved ppx_log.v0.17.0 (cached)
-> retrieved ppx_module_timer.v0.17.0 (cached)
-> installed ppx_derivers.1.2.1
-> retrieved ppx_optcomp.v0.17.1 (cached)
-> retrieved ppx_optional.v0.17.0 (cached)
-> retrieved ppx_pipebang.v0.17.0 (cached)
-> retrieved ppx_sexp_conv.v0.17.1 (cached)
-> retrieved ppx_sexp_message.v0.17.0 (cached)
-> retrieved ppx_sexp_value.v0.17.0 (cached)
-> retrieved ppx_stable.v0.17.1 (cached)
-> retrieved ppx_stable_witness.v0.17.0 (cached)
-> retrieved ppx_string.v0.17.0 (cached)
-> retrieved ppx_string_conv.v0.17.0 (cached)
-> retrieved ppx_tydi.v0.17.1 (cached)
-> retrieved ppx_typerep_conv.v0.17.1 (cached)
-> retrieved ppx_variants_conv.v0.17.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved ppxlib_jane.v0.17.4 (cached)
-> retrieved ptime.1.2.0 (cached)
-> retrieved re.1.14.0 (cached)
-> retrieved result.1.5 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib.v0.17.0 (cached)
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved splittable_random.v0.17.0 (cached)
-> retrieved stdio.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved time_now.v0.17.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved typerep.v0.17.1 (cached)
-> retrieved tyxml.4.6.0 (cached)
-> retrieved uutf.1.0.4 (cached)
-> retrieved variantslib.v0.17.0 (cached)
-> installed result.1.5
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed integers.0.7.0
-> installed re.1.14.0
-> installed ocamlfind.1.9.8
-> installed parsexp.v0.17.0
-> installed ocamlbuild.0.16.1
-> installed sexplib.v0.17.0
-> installed ctypes.0.24.0
-> installed base.v0.17.3
-> installed ctypes-foreign.0.24.0
-> installed fieldslib.v0.17.0
-> installed variantslib.v0.17.0
-> installed stdio.v0.17.0
-> installed topkg.1.1.1
-> installed typerep.v0.17.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed crunch.4.0.0
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed odoc-parser.3.1.0
-> installed tyxml.4.6.0
-> installed mdx.2.5.1
-> installed ppxlib.0.37.0
-> installed ppxlib_jane.v0.17.4
-> installed ppx_optcomp.v0.17.1
-> installed ppx_tydi.v0.17.1
-> installed ppx_disable_unused_warnings.v0.17.0
-> installed ppx_cold.v0.17.0
-> installed ppx_here.v0.17.0
-> installed ppx_stable_witness.v0.17.0
-> installed ppx_typerep_conv.v0.17.1
-> installed ppx_variants_conv.v0.17.1
-> installed ppx_fields_conv.v0.17.0
-> installed ppx_pipebang.v0.17.0
-> installed ppx_stable.v0.17.1
-> installed ppx_ignore_instrumentation.v0.17.0
-> installed ppx_fixed_literal.v0.17.0
-> installed odoc.3.1.0
-> installed ppx_compare.v0.17.0
-> installed ppx_enumerate.v0.17.0
-> installed ppx_globalize.v0.17.2
-> installed ppx_optional.v0.17.0
-> installed ppx_sexp_conv.v0.17.1
-> installed ppx_let.v0.17.1
-> installed ppx_hash.v0.17.0
-> installed ppx_assert.v0.17.0
-> installed ppx_sexp_value.v0.17.0
-> installed ppx_sexp_message.v0.17.0
-> installed ppx_custom_printf.v0.17.0
-> installed ppx_base.v0.17.0
-> installed capitalization.v0.17.0
-> installed jst-config.v0.17.0
-> installed bin_prot.v0.17.0-1
-> installed ppx_string.v0.17.0
-> installed time_now.v0.17.0
-> installed ppx_bin_prot.v0.17.1
-> installed ppx_module_timer.v0.17.0
-> installed ppx_string_conv.v0.17.0
-> installed ppx_inline_test.v0.17.1
-> installed ppx_bench.v0.17.1
-> installed ppx_expect.v0.17.3
-> installed splittable_random.v0.17.0
-> installed base_quickcheck.v0.17.1
-> installed ppx_log.v0.17.0
-> installed ppx_jane.v0.17.0
-> installed gel.v0.17.0
-> installed int_repr.v0.17.0
-> installed base_bigstring.v0.17.0
-> installed ppx_diff.v0.17.1
-> installed core.v0.17.1
[ERROR] The compilation of pari-bindings.0.1 failed at "dune build -p pari-bindings -j 71 @install".
#=== ERROR while compiling pari-bindings.0.1 ==================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.0 | file:///home/opam/opam-repository
# path ~/.opam/5.4/.opam-switch/build/pari-bindings.0.1
# command ~/.opam/opam-init/hooks/sandbox.sh build dune build -p pari-bindings -j 71 @install
# exit-code 1
# env-file ~/.opam/log/pari-bindings-7-97036c.env
# output-file ~/.opam/log/pari-bindings-7-97036c.out
### output ###
# (cd _build/default/pari_bindings/libpari && /usr/bin/sh -c 'if [ "$(uname)" = "Darwin" ]; then CC=$(find /usr/local/bin -name "gcc-[0-9]*" 2>&1 | head -n 1) ./Configure --prefix=local --with-gmp-lib=/opt/homebrew/lib --with-gmp-include=/opt/homebrew/include; elif [ "$(uname)" = "FreeBSD" ]; then ./Configure --prefix=local --with-gmp-lib=/usr/local/lib --with-gmp-include=/usr/local/include; else ./Configure --prefix=local; fi;')
# Configuring pari-2.16.1 (DEVELOPMENT VERSION)
# Checking echo to see how to suppress newlines...
# ...using \c
# Looking for some tools first ...
# ...gzip is /usr/bin/gzip
# ...cc is /usr/bin/cc
# ...gcc is /usr/bin/gcc
# ...ld is /usr/bin/ld
# ...perl is /usr/bin/perl
# ...zcat is /usr/bin/zcat
# Choosing C compiler ...
# GNU compatible compiler: gcc version 14.2.0 (Debian 14.2.0-19)
# Using mt engine single
# Given the previous choices, sizeof(long) is 8 chars.
# The internal word representation of a double is not needed (64bit).
# ==========================================================================
# Building for: amd64 running linux (x86-64/GMP kernel) 64-bit version
# ==========================================================================
# C compiler is /usr/bin/gcc -O3 -Wall -fno-strict-aliasing -fPIC
# Executable linker is /usr/bin/gcc -O3 -Wall -fno-strict-aliasing -Wl,--export-dynamic
# Dynamic Lib linker is /usr/bin/gcc -shared $(CFLAGS) $(DLCFLAGS) -Wl,-shared,-soname=$(LIBPARI_SONAME)
# Looking in C lib for some symbols...
# ...Found sse2.
# ...I did not find avx.
# ...Found exp2.
# ...Found log2.
# ...Found rint.
# ...Found strftime.
# ...Found getrusage.
# ...Found gettimeofday.
# ...Found sigaction.
# ...Found TIOCGWINSZ.
# ...Found getrlimit.
# ...Found stat.
# ...Found vsnprintf.
# ...Found mmap.
# ...Found waitpid.
# ...Found setsid.
# ...Found getenv.
# ...Found isatty.
# ...Found alarm.
# ...Found system.
# ...Found dlopen.
# Checking for optional libraries and headers...
# Using GNU MP, version 6.3.0
# ...Found X11 header files in /usr/include/X11
# ...X11 libraries: -lX11
# Hi-Res Graphics: X11
# ###
# ### Readline library does not seem to work. Maybe install libncurses?
# ###
# ### Building without GNU readline support
# Installation prefix ? [local]
# ...for architecture-independent files (share-prefix) ? [local/share]
# Installation directories for:
# ...executables (gp, gphelp) ? [local/bin]
# ...libraries (libpari) ? [local/lib]
# ...include files ? [local/include]
# ...manual pages ? [local/share/man/man1]
# ...other system-dependent data ? [local/lib/pari]
# ...other system-independent data ? [local/share/pari]
# Default is dynamic executable and shared library
# ==========================================================================
# Extracting Olinux-x86_64/Makefile.examples
# Extracting Olinux-x86_64/Makefile
# Extracting Makefile
# Extracting Olinux-x86_64/paricfg.h
# Extracting scripts and macros
# ...in doc
# ...in misc
# ==========================================================================
# Shall we try to build pari 2.16.1 (development) now (y/n)? [n]
# Ok. Type "make install" when you are ready
# Bye !
# (cd _build/default/pari_bindings/libpari && /usr/bin/make gp) 2> /dev/null
# Making gp in Olinux-x86_64
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/Olinux-x86_64'
# File ../src/funclist updated.
# ../config/genkernel ../src ../src/kernel/x86_64/asm0.h > parilvl0.h
# if test -r ./tune.h; then d=.; else d=../src/kernel/gmp; fi; cat $d/tune.h ../src/kernel/gmp/int.h ../src/kernel/none/level1.h > parilvl1.h
# cat parilvl0.h parilvl1.h > mpinl.h
# cat ../src/mt/single.h > parimt.h
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o emacs.o ../src/gp/emacs.c
# f=funclist-$$-linux-x86_64.tmp; (cd ../src/desc && /usr/bin/perl merge_822 ../../src/funclist > $f) && mv ../src/desc/$f ../src/desc/pari.desc
# f=gp_init-$$-linux-x86_64.tmp; (cd ../src/desc && /usr/bin/perl gen_proto gp pari.desc > $f) && mv ../src/desc/$f ../src/gp/gp_init.h
# /usr/bin/gcc -c -I. -I../src/headers -I../src/language -DDL_DFLT_NAME=NULL -O3 -Wall -fno-strict-aliasing -o gp.o ../src/gp/gp.c
# /usr/bin/gcc -c -I. -I../src/headers -I../src/language -O3 -Wall -fno-strict-aliasing -o gp_rl.o ../src/gp/gp_rl.c
# /usr/bin/gcc -c -I. -I../src/headers -I../src/language -O3 -Wall -fno-strict-aliasing -o texmacs.o ../src/gp/texmacs.c
# /usr/bin/gcc -c -I. -I../src/headers -O3 -Wall -fno-strict-aliasing -o whatnow.o ../src/gp/whatnow.c
# /usr/bin/gcc -c -I. -I../src/headers -I/usr/include -O3 -Wall -fno-strict-aliasing -o plotX.o ../src/graph/plotX.c
# cat ../src/kernel/gmp/mp.c ../src/kernel/none/cmp.c ../src/kernel/none/gcdll.c ../src/kernel/none/halfgcd.c ../src/kernel/none/ratlift.c ../src/kernel/none/invmod.c ../src/kernel/gmp/gcd.c ../src/kernel/gmp/gcdext.c ../src/kernel/none/mp_indep.c ../src/kernel/none/add.c > mpker.c
# /usr/bin/gcc -c -O3 -Wall -fno-strict-aliasing -funroll-loops -fPIC -I. -I../src/headers -o mpker.o mpker.c
# /usr/bin/gcc -c -I. -I../src/headers -O3 -Wall -fno-strict-aliasing -fPIC -o mpinl.o ../src/kernel/none/mpinl.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -funroll-loops -O3 -Wall -fno-strict-aliasing -o F2v.o ../src/basemath/F2v.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o F2x.o ../src/basemath/F2x.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o F2xqE.o ../src/basemath/F2xqE.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -funroll-loops -O3 -Wall -fno-strict-aliasing -o F3v.o ../src/basemath/F3v.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FF.o ../src/basemath/FF.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o Fle.o ../src/basemath/Fle.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o Flv.o ../src/basemath/Flv.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o Flx.o ../src/basemath/Flx.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FlxX.o ../src/basemath/FlxX.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FlxqE.o ../src/basemath/FlxqE.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o Flxq_log.o ../src/basemath/Flxq_log.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FpE.o ../src/basemath/FpE.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FpV.o ../src/basemath/FpV.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FpX.o ../src/basemath/FpX.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FpXQX_factor.o ../src/basemath/FpXQX_factor.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FpXX.o ../src/basemath/FpXX.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o FpX_factor.o ../src/basemath/FpX_factor.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o QX_factor.o ../src/basemath/QX_factor.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o Qfb.o ../src/basemath/Qfb.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o RgV.o ../src/basemath/RgV.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o RgX.o ../src/basemath/RgX.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o Ser.o ../src/basemath/Ser.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ZG.o ../src/basemath/ZG.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ZV.o ../src/basemath/ZV.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ZX.o ../src/basemath/ZX.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o Zp.o ../src/basemath/Zp.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o alglin1.o ../src/basemath/alglin1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o alglin2.o ../src/basemath/alglin2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o alglin3.o ../src/basemath/alglin3.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o aprcl.o ../src/basemath/aprcl.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o arith1.o ../src/basemath/arith1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o arith2.o ../src/basemath/arith2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o base1.o ../src/basemath/base1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o base2.o ../src/basemath/base2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o base3.o ../src/basemath/base3.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o base4.o ../src/basemath/base4.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o base5.o ../src/basemath/base5.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bb_group.o ../src/basemath/bb_group.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bb_hnf.o ../src/basemath/bb_hnf.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bern.o ../src/basemath/bern.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bibli1.o ../src/basemath/bibli1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bibli2.o ../src/basemath/bibli2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bit.o ../src/basemath/bit.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bnflog.o ../src/basemath/bnflog.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o bnfunits.o ../src/basemath/bnfunits.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o buch1.o ../src/basemath/buch1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o buch2.o ../src/basemath/buch2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o buch3.o ../src/basemath/buch3.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o buch4.o ../src/basemath/buch4.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o char.o ../src/basemath/char.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o concat.o ../src/basemath/concat.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o crvwtors.o ../src/basemath/crvwtors.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o digits.o ../src/basemath/digits.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o dirichlet.o ../src/basemath/dirichlet.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ecpp.o ../src/basemath/ecpp.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ellanal.o ../src/basemath/ellanal.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o elliptic.o ../src/basemath/elliptic.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ellisog.o ../src/basemath/ellisog.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ellpadic.o ../src/basemath/ellpadic.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ellpadiclambdamu.o ../src/basemath/ellpadiclambdamu.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ellrank.o ../src/basemath/ellrank.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ellsea.o ../src/basemath/ellsea.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o elltors.o ../src/basemath/elltors.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o factcyclo.o ../src/basemath/factcyclo.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o galconj.o ../src/basemath/galconj.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o gen1.o ../src/basemath/gen1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o gen2.o ../src/basemath/gen2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o gen3.o ../src/basemath/gen3.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o grossenchar.o ../src/basemath/grossenchar.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o hgm.o ../src/basemath/hgm.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o hnf_snf.o ../src/basemath/hnf_snf.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o hyperell.o ../src/basemath/hyperell.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o hypergeom.o ../src/basemath/hypergeom.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ifactor1.o ../src/basemath/ifactor1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ispower.o ../src/basemath/ispower.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o kummer.o ../src/basemath/kummer.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o lambert.o ../src/basemath/lambert.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o lerch.o ../src/basemath/lerch.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o lfun.o ../src/basemath/lfun.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o lfunquad.o ../src/basemath/lfunquad.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o lfunutils.o ../src/basemath/lfunutils.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o lll.o ../src/basemath/lll.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o map.o ../src/basemath/map.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o matperm.o ../src/basemath/matperm.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o mellininv.o ../src/basemath/mellininv.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o mftrace.o ../src/basemath/mftrace.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o modsym.o ../src/basemath/modsym.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o msfarey.o ../src/basemath/msfarey.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o nffactor.o ../src/basemath/nffactor.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o nflist.o ../src/basemath/nflist.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o nflistQT.o ../src/basemath/nflistQT.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o pclgp.o ../src/basemath/pclgp.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o perm.o ../src/basemath/perm.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o polarit1.o ../src/basemath/polarit1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o polarit2.o ../src/basemath/polarit2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o polarit3.o ../src/basemath/polarit3.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o polclass.o ../src/basemath/polclass.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o polmodular.o ../src/basemath/polmodular.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o prime.o ../src/basemath/prime.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o qfisom.o ../src/basemath/qfisom.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o qfsolve.o ../src/basemath/qfsolve.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o quad.o ../src/basemath/quad.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ramanujantau.o ../src/basemath/ramanujantau.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o random.o ../src/basemath/random.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o rootpol.o ../src/basemath/rootpol.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o subcyclo.o ../src/basemath/subcyclo.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o subfield.o ../src/basemath/subfield.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o subgroup.o ../src/basemath/subgroup.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o trans1.o ../src/basemath/trans1.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o trans2.o ../src/basemath/trans2.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o trans3.o ../src/basemath/trans3.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o volcano.o ../src/basemath/volcano.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o zetamult.o ../src/basemath/zetamult.c
# bison -d ../src/language/parse.y -o ../src/language/parse.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o anal.o ../src/language/anal.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o compile.o ../src/language/compile.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o default.o ../src/language/default.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o es.o ../src/language/es.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o eval.o ../src/language/eval.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o forprime.o ../src/language/forprime.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o gplib.o ../src/language/gplib.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o hash.o ../src/language/hash.c
# f=init-$$-linux-x86_64.tmp; (cd ../src/desc && /usr/bin/perl gen_proto basic pari.desc > $f) && mv ../src/desc/$f ../src/language/init.h
# f=default-$$-linux-x86_64.tmp; (cd ../src/desc && /usr/bin/perl gen_proto default pari.desc > $f) && mv ../src/desc/$f ../src/language/default.h
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o init.o ../src/language/init.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o intnum.o ../src/language/intnum.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o members.o ../src/language/members.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o paricfg.o ../src/language/paricfg.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o pariinl.o ../src/language/pariinl.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o readline.o ../src/language/readline.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o str.o ../src/language/str.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o sumiter.o ../src/language/sumiter.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o parse.o ../src/language/parse.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o algebras.o ../src/modules/algebras.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o elldata.o ../src/modules/elldata.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o ellfromeqn.o ../src/modules/ellfromeqn.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o forperm.o ../src/modules/forperm.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o forsubset.o ../src/modules/forsubset.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o galois.o ../src/modules/galois.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o galpol.o ../src/modules/galpol.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o genus2red.o ../src/modules/genus2red.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o groupid.o ../src/modules/groupid.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o krasner.o ../src/modules/krasner.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o mpqs.o ../src/modules/mpqs.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o part.o ../src/modules/part.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -funroll-loops -O3 -Wall -fno-strict-aliasing -o ratpoints.o ../src/modules/ratpoints.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o stark.o ../src/modules/stark.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o thue.o ../src/modules/thue.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o mt.o ../src/mt/mt.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o single.o ../src/mt/single.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o plotport.o ../src/graph/plotport.c
# /usr/bin/gcc -c -I. -I../src/headers -fPIC -O3 -Wall -fno-strict-aliasing -o plottty.o ../src/graph/plottty.c
# rm -f libpari-gmp-2.16.so.1.0.0
# /usr/bin/gcc -o "/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/Olinux-x86_64"/libpari-gmp-2.16.so.1.0.0 -shared -O3 -Wall -fno-strict-aliasing -fPIC -Wl,-shared,-soname=libpari-gmp-2.16.so.1 mpker.o mpinl.o F2v.o F2x.o F2xqE.o F3v.o FF.o Fle.o Flv.o Flx.o FlxX.o FlxqE.o Flxq_log.o FpE.o FpV.o FpX.o FpXQX_factor.o FpXX.o FpX_factor.o QX_factor.o Qfb.o RgV.o RgX.o Ser.o ZG.o ZV.o ZX.o Zp.o alglin1.o alglin2.o alglin3.o aprcl.o arith1.o arith2.o base1.o base2.o base3.o base4.o base5.o bb_group.o bb_hnf.o bern.o bibli1.o bibli2.o bit.o bnflog.o bnfunits.o buch1.o buch2.o buch3.o buch4.o char.o concat.o crvwtors.o digits.o dirichlet.o ecpp.o ellanal.o elliptic.o ellisog.o ellpadic.o ellpadiclambdamu.o ellrank.o ellsea.o elltors.o factcyclo.o galconj.o gen1.o gen2.o gen3.o grossenchar.o hgm.o hnf_snf.o hyperell.o hypergeom.o ifactor1.o ispower.o kummer.o lambert.o lerch.o lfun.o lfunquad.o lfunutils.o lll.o map.o matperm.o mellininv.o mftrace.o modsym.o msfarey.o nffactor.o nflist.o nflistQT.o pclgp.o perm.o polarit1.o polarit2.o polarit3.o polclass.o polmodular.o prime.o qfisom.o qfsolve.o quad.o ramanujantau.o random.o rootpol.o subcyclo.o subfield.o subgroup.o trans1.o trans2.o trans3.o volcano.o zetamult.o anal.o compile.o default.o es.o eval.o forprime.o gplib.o hash.o init.o intnum.o members.o paricfg.o pariinl.o readline.o str.o sumiter.o parse.o algebras.o elldata.o ellfromeqn.o forperm.o forsubset.o galois.o galpol.o genus2red.o groupid.o krasner.o mpqs.o part.o ratpoints.o stark.o thue.o mt.o single.o plotport.o plottty.o -lc -lm -lgmp -lm
# if test "libpari-gmp-2.16.so.1.0.0" != "libpari.so"; then rm -f libpari.so; ln -s libpari-gmp-2.16.so.1.0.0 libpari.so; fi
# if test "libpari-gmp-2.16.so.1.0.0" != "libpari-gmp-2.16.so.1"; then rm -f libpari-gmp-2.16.so.1; ln -s libpari-gmp-2.16.so.1.0.0 libpari-gmp-2.16.so.1; fi
# rm -f gp-dyn
# /usr/bin/gcc -o gp-dyn -L"/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/Olinux-x86_64" -O3 -Wall -fno-strict-aliasing -Wl,--export-dynamic emacs.o gp.o gp_rl.o texmacs.o whatnow.o plotX.o -Wl,-rpath,"/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari"/Olinux-x86_64:"/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/local/lib" -lpari -lX11 -lm
# : gp-dyn
# rm -f ../gp
# ln -s Olinux-x86_64/gp-dyn ../gp
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/Olinux-x86_64'
# (cd _build/default/pari_bindings/libpari && /usr/bin/make install-lib-sta) 2> /dev/null
# Making install-lib-sta in Olinux-x86_64
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/Olinux-x86_64'
# rm -f libpari.a
# ar r libpari.a mpker.o mpinl.o F2v.o F2x.o F2xqE.o F3v.o FF.o Fle.o Flv.o Flx.o FlxX.o FlxqE.o Flxq_log.o FpE.o FpV.o FpX.o FpXQX_factor.o FpXX.o FpX_factor.o QX_factor.o Qfb.o RgV.o RgX.o Ser.o ZG.o ZV.o ZX.o Zp.o alglin1.o alglin2.o alglin3.o aprcl.o arith1.o arith2.o base1.o base2.o base3.o base4.o base5.o bb_group.o bb_hnf.o bern.o bibli1.o bibli2.o bit.o bnflog.o bnfunits.o buch1.o buch2.o buch3.o buch4.o char.o concat.o crvwtors.o digits.o dirichlet.o ecpp.o ellanal.o elliptic.o ellisog.o ellpadic.o ellpadiclambdamu.o ellrank.o ellsea.o elltors.o factcyclo.o galconj.o gen1.o gen2.o gen3.o grossenchar.o hgm.o hnf_snf.o hyperell.o hypergeom.o ifactor1.o ispower.o kummer.o lambert.o lerch.o lfun.o lfunquad.o lfunutils.o lll.o map.o matperm.o mellininv.o mftrace.o modsym.o msfarey.o nffactor.o nflist.o nflistQT.o pclgp.o perm.o polarit1.o polarit2.o polarit3.o polclass.o polmodular.o prime.o qfisom.o qfsolve.o quad.o ramanujantau.o random.o rootpol.o subcyclo.o subfield.o subgroup.o trans1.o trans2.o trans3.o volcano.o zetamult.o anal.o compile.o default.o es.o eval.o forprime.o gplib.o hash.o init.o intnum.o members.o paricfg.o pariinl.o readline.o str.o sumiter.o parse.o algebras.o elldata.o ellfromeqn.o forperm.o forsubset.o galois.o galpol.o genus2red.o groupid.o krasner.o mpqs.o part.o ratpoints.o stark.o thue.o mt.o single.o plotport.o plottty.o
# ranlib libpari.a
# mkdir -p "/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/local/lib"
# rm -f "/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/local/lib"/libpari.a
# ../config/install -m 644 libpari.a "/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/local/lib"/libpari.a
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/pari-bindings.0.1/_build/default/pari_bindings/libpari/Olinux-x86_64'
# (cd _build/default/pari_bindings && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -g -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -Ofast -finline-functions -ffast-math -funroll-all-loops -I./pari_bindings/libpari/src/headers -I../pari_bindings/libpari/src/headers -I./_build/default/pari_bindings -I../../../_build/default/pari_bindings -I../../_build/default/pari_bindings -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/ctypes libpari__c_cout_generated_types.c -o libpari__c_cout_generated_types.exe)
# In file included from /home/opam/.opam/5.4/lib/ocaml/caml/config.h:20,
# from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:19,
# from /home/opam/.opam/5.4/lib/ctypes/ocaml_integers.h:11,
# from /home/opam/.opam/5.4/lib/ctypes/ctypes_primitives.h:16,
# from /home/opam/.opam/5.4/lib/ctypes/ctypes_cstubs_internals.h:13,
# from libpari__c_cout_generated_types.c:4:
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:145:9: warning: "HAS_SYSTEM" redefined
# 145 | #define HAS_SYSTEM 1
# | ^~~~~~~~~~
# In file included from ../pari_bindings/libpari/src/headers/pari.h:17,
# from libpari__c_cout_generated_types.c:1:
# ../../../_build/default/pari_bindings/paricfg.h:36:9: note: this is the location of the previous definition
# 36 | #define HAS_SYSTEM
# | ^~~~~~~~~~
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:184:9: warning: "HAS_WAITPID" redefined
# 184 | #define HAS_WAITPID 1
# | ^~~~~~~~~~~
# ../../../_build/default/pari_bindings/paricfg.h:40:9: note: this is the location of the previous definition
# 40 | #define HAS_WAITPID
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:226:9: warning: "HAS_SETSID" redefined
# 226 | #define HAS_SETSID 1
# | ^~~~~~~~~~
# ../../../_build/default/pari_bindings/paricfg.h:42:9: note: this is the location of the previous definition
# 42 | #define HAS_SETSID
# | ^~~~~~~~~~
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:252:9: warning: "HAS_MMAP" redefined
# 252 | #define HAS_MMAP 1
# | ^~~~~~~~
# ../../../_build/default/pari_bindings/paricfg.h:49:9: note: this is the location of the previous definition
# 49 | #define HAS_MMAP
# | ^~~~~~~~
# (cd _build/default/pari_bindings && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -Ofast -finline-functions -ffast-math -funroll-all-loops -I./pari_bindings/libpari/src/headers -I../pari_bindings/libpari/src/headers -I./_build/default/pari_bindings -I../../../_build/default/pari_bindings -I../../_build/default/pari_bindings -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/base -I /home/opam/.opam/5.4/lib/base/base_internalhash_types -I /home/opam/.opam/5.4/lib/base/md5 -I /home/opam/.opam/5.4/lib/base/shadow_stdlib -I /home/opam/.opam/5.4/lib/base_bigstring -I /home/opam/.opam/5.4/lib/base_quickcheck -I /home/opam/.opam/5.4/lib/base_quickcheck/ppx_quickcheck/runtime -I /home/opam/.opam/5.4/lib/bin_prot -I /home/opam/.opam/5.4/lib/bin_prot/shape -I /home/opam/.opam/5.4/lib/core -I /home/opam/.opam/5.4/lib/core/base_for_tests -I /home/opam/.opam/5.4/lib/core/command -I /home/opam/.opam/5.4/lib/core/filename_base -I /home/opam/.opam/5.4/lib/core/heap_block -I /home/opam/.opam/5.4/lib/core/univ_map -I /home/opam/.opam/5.4/lib/core/validate -I /home/opam/.opam/5.4/lib/ctypes -I /home/opam/.opam/5.4/lib/ctypes-foreign -I /home/opam/.opam/5.4/lib/ctypes/stubs -I /home/opam/.opam/5.4/lib/fieldslib -I /home/opam/.opam/5.4/lib/gel -I /home/opam/.opam/5.4/lib/int_repr -I /home/opam/.opam/5.4/lib/integers -I /home/opam/.opam/5.4/lib/jane-street-headers -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ocaml_intrinsics_kernel -I /home/opam/.opam/5.4/lib/parsexp -I /home/opam/.opam/5.4/lib/ppx_assert/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_bench/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_compare/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_diff/diffable -I /home/opam/.opam/5.4/lib/ppx_diff/diffable_cinaps -I /home/opam/.opam/5.4/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_expect/config -I /home/opam/.opam/5.4/lib/ppx_expect/config_types -I /home/opam/.opam/5.4/lib/ppx_expect/make_corrected_file -I /home/opam/.opam/5.4/lib/ppx_expect/runtime -I /home/opam/.opam/5.4/lib/ppx_hash/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_here/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_inline_test/config -I /home/opam/.opam/5.4/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_log/syntax -I /home/opam/.opam/5.4/lib/ppx_log/types -I /home/opam/.opam/5.4/lib/ppx_module_timer/runtime -I /home/opam/.opam/5.4/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/5.4/lib/ppx_stable_witness/runtime -I /home/opam/.opam/5.4/lib/ppx_stable_witness/stable_witness -I /home/opam/.opam/5.4/lib/ppx_string/runtime -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/sexplib -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/splittable_random -I /home/opam/.opam/5.4/lib/stdio -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/time_now -I /home/opam/.opam/5.4/lib/typerep -I /home/opam/.opam/5.4/lib/variantslib -o libpari__c_cout_generated_functions__Function_description__Function.o -c libpari__c_cout_generated_functions__Function_description__Function.c)
# In file included from /home/opam/.opam/5.4/lib/ocaml/caml/config.h:20,
# from /home/opam/.opam/5.4/lib/ocaml/caml/mlvalues.h:19,
# from /home/opam/.opam/5.4/lib/ctypes/ocaml_integers.h:11,
# from /home/opam/.opam/5.4/lib/ctypes/ctypes_primitives.h:16,
# from /home/opam/.opam/5.4/lib/ctypes/ctypes_cstubs_internals.h:13,
# from libpari__c_cout_generated_functions__Function_description__Function.c:2:
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:145:9: warning: "HAS_SYSTEM" redefined
# 145 | #define HAS_SYSTEM 1
# | ^~~~~~~~~~
# In file included from ../pari_bindings/libpari/src/headers/pari.h:17,
# from libpari__c_cout_generated_functions__Function_description__Function.c:1:
# ../../../_build/default/pari_bindings/paricfg.h:36:9: note: this is the location of the previous definition
# 36 | #define HAS_SYSTEM
# | ^~~~~~~~~~
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:184:9: warning: "HAS_WAITPID" redefined
# 184 | #define HAS_WAITPID 1
# | ^~~~~~~~~~~
# ../../../_build/default/pari_bindings/paricfg.h:40:9: note: this is the location of the previous definition
# 40 | #define HAS_WAITPID
# | ^~~~~~~~~~~
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:226:9: warning: "HAS_SETSID" redefined
# 226 | #define HAS_SETSID 1
# | ^~~~~~~~~~
# ../../../_build/default/pari_bindings/paricfg.h:42:9: note: this is the location of the previous definition
# 42 | #define HAS_SETSID
# | ^~~~~~~~~~
# /home/opam/.opam/5.4/lib/ocaml/caml/s.h:252:9: warning: "HAS_MMAP" redefined
# 252 | #define HAS_MMAP 1
# | ^~~~~~~~
# ../../../_build/default/pari_bindings/paricfg.h:49:9: note: this is the location of the previous definition
# 49 | #define HAS_MMAP
# | ^~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_168_get_F2xq_field':
# libpari__c_cout_generated_functions__Function_description__Function.c:1896:29: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 1896 | struct bb_field* x1469 = get_F2xq_field(x1467, x1468);
# | ^~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_189_get_F2xqE_group':
# libpari__c_cout_generated_functions__Function_description__Function.c:2188:29: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 2188 | struct bb_group* x1731 = get_F2xqE_group(x1727, x1728, x1729, x1730);
# | ^~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_465_get_Flxq_field':
# libpari__c_cout_generated_functions__Function_description__Function.c:5749:29: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 5749 | struct bb_field* x5387 = get_Flxq_field(x5382, x5383, x5384);
# | ^~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_466_get_Flxq_star':
# libpari__c_cout_generated_functions__Function_description__Function.c:5761:29: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 5761 | struct bb_group* x5399 = get_Flxq_star(x5394, x5395, x5396);
# | ^~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_600_get_FlxqXQ_algebra':
# libpari__c_cout_generated_functions__Function_description__Function.c:7877:31: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 7877 | struct bb_algebra* x7569 = get_FlxqXQ_algebra(x7563, x7564, x7565, x7566);
# | ^~~~~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_628_get_FlxqE_group':
# libpari__c_cout_generated_functions__Function_description__Function.c:8368:4: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 8368 | get_FlxqE_group(x8036, x8037, x8038, x8039, x8040);
# | ^~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_684_get_FpE_group':
# libpari__c_cout_generated_functions__Function_description__Function.c:9222:29: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 9222 | struct bb_group* x8774 = get_FpE_group(x8770, x8771, x8772, x8773);
# | ^~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_685_get_FpXQE_group':
# libpari__c_cout_generated_functions__Function_description__Function.c:9239:4: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 9239 | get_FpXQE_group(x8783, x8784, x8785, x8786, x8787);
# | ^~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_806_get_FpXQ_star':
# libpari__c_cout_generated_functions__Function_description__Function.c:10785:30: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 10785 | struct bb_group* x10112 = get_FpXQ_star(x10109, x10110, x10111);
# | ^~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_807_get_FpX_algebra':
# libpari__c_cout_generated_functions__Function_description__Function.c:10798:32: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 10798 | struct bb_algebra* x10124 = get_FpX_algebra(x10119, x10120, x10121);
# | ^~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_808_get_FpXQ_algebra':
# libpari__c_cout_generated_functions__Function_description__Function.c:10811:32: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 10811 | struct bb_algebra* x10134 = get_FpXQ_algebra(x10131, x10132, x10133);
# | ^~~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_970_get_FpXQX_algebra':
# libpari__c_cout_generated_functions__Function_description__Function.c:12985:4: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 12985 | get_FpXQX_algebra(x12032, x12033, x12034, x12035);
# | ^~~~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_971_get_FpXQXQ_algebra':
# libpari__c_cout_generated_functions__Function_description__Function.c:13000:4: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 13000 | get_FpXQXQ_algebra(x12046, x12047, x12048, x12049);
# | ^~~~~~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_1326_get_Rg_algebra':
# libpari__c_cout_generated_functions__Function_description__Function.c:17533:32: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 17533 | struct bb_algebra* x15942 = get_Rg_algebra();
# | ^~~~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_1853_addhelp':
# libpari__c_cout_generated_functions__Function_description__Function.c:23532:20: warning: passing argument 2 of 'addhelp' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 23532 | addhelp(x20586, x20587);
# | ^~~~~~
# In file included from ../pari_bindings/libpari/src/headers/pari.h:47:
# ../pari_bindings/libpari/src/headers/paridecl.h:2013:38: note: expected 'char *' but argument is of type 'const char *'
# 2013 | void addhelp(const char *e, char *s);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_1876_readseq':
# libpari__c_cout_generated_functions__Function_description__Function.c:23763:27: warning: passing argument 1 of 'readseq' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 23763 | long* x20747 = readseq(x20746);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:2036:23: note: expected 'char *' but argument is of type 'const char *'
# 2036 | GEN readseq(char *t);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_2002_get_Fp_field':
# libpari__c_cout_generated_functions__Function_description__Function.c:25270:30: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 25270 | struct bb_field* x22075 = get_Fp_field(x22073, x22074);
# | ^~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_2271_get_nf_field':
# libpari__c_cout_generated_functions__Function_description__Function.c:28329:30: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 28329 | struct bb_field* x24495 = get_nf_field(x24493, x24494);
# | ^~~~~~~~~~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_2891_sd_sopath':
# libpari__c_cout_generated_functions__Function_description__Function.c:35707:29: warning: passing argument 1 of 'sd_sopath' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 35707 | long* x30521 = sd_sopath(x30517, x30518);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3130:21: note: expected 'char *' but argument is of type 'const char *'
# 3130 | GEN sd_sopath(char *v, int flag);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_2894_sd_string':
# libpari__c_cout_generated_functions__Function_description__Function.c:35743:53: error: passing argument 4 of 'sd_string' from incompatible pointer type [-Wincompatible-pointer-types]
# 35743 | long* x30555 = sd_string(x30549, x30550, x30553, x30554);
# | ^~~~~~
# | |
# | const char **
# ../pari_bindings/libpari/src/headers/paridecl.h:3133:63: note: expected 'char **' but argument is of type 'const char **'
# 3133 | GEN sd_string(const char *v, long flag, const char *s, char **f);
# | ~~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_2947_print_fun_list':
# libpari__c_cout_generated_functions__Function_description__Function.c:36350:19: error: passing argument 1 of 'print_fun_list' from incompatible pointer type [-Wincompatible-pointer-types]
# 36350 | print_fun_list(x31045, x31046);
# | ^~~~~~
# | |
# | const char **
# ../pari_bindings/libpari/src/headers/paridecl.h:3196:28: note: expected 'char **' but argument is of type 'const char **'
# 3196 | void print_fun_list(char **list, long nbli);
# | ~~~~~~~^~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_3151_gp_fileextern':
# libpari__c_cout_generated_functions__Function_description__Function.c:38772:32: warning: passing argument 1 of 'gp_fileextern' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 38772 | long x33075 = gp_fileextern(x33074);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3434:29: note: expected 'char *' but argument is of type 'const char *'
# 3434 | long gp_fileextern(char *s);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_3154_gp_fileopen':
# libpari__c_cout_generated_functions__Function_description__Function.c:38803:30: warning: passing argument 1 of 'gp_fileopen' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 38803 | long x33097 = gp_fileopen(x33095, x33096);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3437:27: note: expected 'char *' but argument is of type 'const char *'
# 3437 | long gp_fileopen(char *s, char *mode);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c:38803:38: warning: passing argument 2 of 'gp_fileopen' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 38803 | long x33097 = gp_fileopen(x33095, x33096);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3437:36: note: expected 'char *' but argument is of type 'const char *'
# 3437 | long gp_fileopen(char *s, char *mode);
# | ~~~~~~^~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_3160_gp_read_str_multiline':
# libpari__c_cout_generated_functions__Function_description__Function.c:38866:49: warning: passing argument 2 of 'gp_read_str_multiline' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 38866 | long* x33147 = gp_read_str_multiline(x33145, x33146);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3443:52: note: expected 'char *' but argument is of type 'const char *'
# 3443 | GEN gp_read_str_multiline(const char *s, char *last);
# | ~~~~~~^~~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_3161_gp_readvec_file':
# libpari__c_cout_generated_functions__Function_description__Function.c:38876:35: warning: passing argument 1 of 'gp_readvec_file' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 38876 | long* x33153 = gp_readvec_file(x33152);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3445:31: note: expected 'char *' but argument is of type 'const char *'
# 3445 | GEN gp_readvec_file(char *s);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_3207_strftime_expand':
# libpari__c_cout_generated_functions__Function_description__Function.c:39357:28: warning: passing argument 2 of 'strftime_expand' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 39357 | strftime_expand(x33492, x33493, x33494);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3512:46: note: expected 'char *' but argument is of type 'const char *'
# 3512 | void strftime_expand(const char *s, char *buf, long max);
# | ~~~~~~^~~
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_3210_term_get_color':
# libpari__c_cout_generated_functions__Function_description__Function.c:39389:40: warning: passing argument 1 of 'term_get_color' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 39389 | char const* x33523 = term_get_color(x33519, x33520);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:3517:30: note: expected 'char *' but argument is of type 'const char *'
# 3517 | char* term_get_color(char *s, long c);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_4577_plotstring':
# libpari__c_cout_generated_functions__Function_description__Function.c:54839:23: warning: passing argument 2 of 'plotstring' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 54839 | plotstring(x45928, x45931, x45932);
# | ^~~~~~
# ../pari_bindings/libpari/src/headers/paridecl.h:5044:35: note: expected 'char *' but argument is of type 'const char *'
# 5044 | void plotstring(long ne, char *x, long dir);
# | ~~~~~~^
# libpari__c_cout_generated_functions__Function_description__Function.c: In function 'libpari_stubs_4780_get_Fq_field':
# libpari__c_cout_generated_functions__Function_description__Function.c:57403:30: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
# 57403 | struct bb_field* x48036 = get_Fq_field(x48033, x48034, x48035);
# | ^~~~~~~~~~~~
# -> required by
# _build/default/pari_bindings/libpari__c_cout_generated_functions__Function_description__Function.o
# -> required by _build/default/pari_bindings/dllPari_bindings_stubs.so
# -> required by _build/install/default/lib/stublibs/dllPari_bindings_stubs.so
# -> required by _build/default/pari-bindings.install
# -> required by alias install
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build pari-bindings 0.1
+-
+- The following changes have been performed
| - install astring 0.8.5
| - install base v0.17.3
| - install base_bigstring v0.17.0
| - install base_quickcheck v0.17.1
| - install bin_prot v0.17.0-1
| - install camlp-streams 5.0.1
| - install capitalization v0.17.0
| - install cmdliner 2.1.0
| - install conf-bison 2
| - install conf-gmp 5
| - install conf-libffi 2.0.0
| - install conf-perl 2
| - install conf-pkg-config 4
| - install core v0.17.1
| - install cppo 1.8.0
| - install crunch 4.0.0
| - install csexp 1.5.2
| - install ctypes 0.24.0
| - install ctypes-foreign 0.24.0
| - install dune-configurator 3.22.0~alpha0
| - install fieldslib v0.17.0
| - install fmt 0.11.0
| - install fpath 0.7.3
| - install gel v0.17.0
| - install int_repr v0.17.0
| - install integers 0.7.0
| - install jane-street-headers v0.17.0
| - install jst-config v0.17.0
| - install logs 0.10.0
| - install mdx 2.5.1
| - install num 1.6
| - install ocaml-compiler-libs v0.17.0
| - install ocaml-version 4.0.3
| - install ocaml_intrinsics_kernel v0.17.1
| - install ocamlbuild 0.16.1
| - install ocamlfind 1.9.8
| - install odoc 3.1.0
| - install odoc-parser 3.1.0
| - install parsexp v0.17.0
| - install ppx_assert v0.17.0
| - install ppx_base v0.17.0
| - install ppx_bench v0.17.1
| - install ppx_bin_prot v0.17.1
| - install ppx_cold v0.17.0
| - install ppx_compare v0.17.0
| - install ppx_custom_printf v0.17.0
| - install ppx_derivers 1.2.1
| - install ppx_diff v0.17.1
| - install ppx_disable_unused_warnings v0.17.0
| - install ppx_enumerate v0.17.0
| - install ppx_expect v0.17.3
| - install ppx_fields_conv v0.17.0
| - install ppx_fixed_literal v0.17.0
| - install ppx_globalize v0.17.2
| - install ppx_hash v0.17.0
| - install ppx_here v0.17.0
| - install ppx_ignore_instrumentation v0.17.0
| - install ppx_inline_test v0.17.1
| - install ppx_jane v0.17.0
| - install ppx_let v0.17.1
| - install ppx_log v0.17.0
| - install ppx_module_timer v0.17.0
| - install ppx_optcomp v0.17.1
| - install ppx_optional v0.17.0
| - install ppx_pipebang v0.17.0
| - install ppx_sexp_conv v0.17.1
| - install ppx_sexp_message v0.17.0
| - install ppx_sexp_value v0.17.0
| - install ppx_stable v0.17.1
| - install ppx_stable_witness v0.17.0
| - install ppx_string v0.17.0
| - install ppx_string_conv v0.17.0
| - install ppx_tydi v0.17.1
| - install ppx_typerep_conv v0.17.1
| - install ppx_variants_conv v0.17.1
| - install ppxlib 0.37.0
| - install ppxlib_jane v0.17.4
| - install ptime 1.2.0
| - install re 1.14.0
| - install result 1.5
| - install seq base
| - install sexplib v0.17.0
| - install sexplib0 v0.17.0
| - install splittable_random v0.17.0
| - install stdio v0.17.0
| - install stdlib-shims 0.3.0
| - install time_now v0.17.0
| - install topkg 1.1.1
| - install typerep v0.17.1
| - install tyxml 4.6.0
| - install uutf 1.0.4
| - install variantslib v0.17.0
+-
# To update the current shell environment, run: eval $(opam env)
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260303080242.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall pari-bindings.0.1;
res=$?;
test "$res" != 31 && exit "$res";
export OPAMCLI=2.0;
build_dir=$(opam var prefix)/.opam-switch/build;
failed=$(ls "$build_dir");
partial_fails="";
for pkg in $failed; do
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
fi;
test "$pkg" != 'pari-bindings.0.1' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-03-03 08:19.15: Job failed: Failed: Build failed
2026-03-03 08:19.15: Log analysis:
2026-03-03 08:19.15: >>>
[ERROR] The compilation of pari-bindings.0.1 failed at "dune build -p pari-bindings -j 71 @install".
(score = 20)
2026-03-03 08:19.15: >>>
# libpari__c_cout_generated_functions__Function_description__Function.c:35743:53: error: passing argument 4 of 'sd_string' from incompatible pointer type [-Wincompatible-pointer-types]
(score = 30)
2026-03-03 08:19.15: >>>
# libpari__c_cout_generated_functions__Function_description__Function.c:36350:19: error: passing argument 1 of 'print_fun_list' from incompatible pointer type [-Wincompatible-pointer-types]
(score = 30)
2026-03-03 08:19.15: passing argument 4 of 'sd_string' from incompatible pointer type [-Wincompatible-pointer-types]