From: Ilya Leoshkevich <iii@linux.ibm.com>
To: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>,
qemu-devel@nongnu.org
Cc: "Brian Cain" <brian.cain@oss.qualcomm.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@oss.qualcomm.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Daniel P . Berrangé" <berrange@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Manos Pitsidianakis" <manos.pitsidianakis@linaro.org>,
"Laurent Vivier" <laurent@vivier.eu>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Gustavo Romero" <gustavo.romero@linaro.org>,
"Helge Deller" <deller@gmx.de>
Subject: Re: [PATCH v5 82/98] tests/tcg/s390x: user tests
Date: Tue, 14 Jul 2026 20:36:22 +0200 [thread overview]
Message-ID: <fd573325-c8bc-458a-bbe2-041d4e6e3206@linux.ibm.com> (raw)
In-Reply-To: <62ec55ea-59c4-4b70-8e12-c04bb0cb998e@oss.qualcomm.com>
On 7/14/26 20:33, Pierrick Bouvier wrote:
> On 7/14/2026 11:22 AM, Ilya Leoshkevich wrote:
>>
>>
>> On 7/14/26 17:43, Pierrick Bouvier wrote:
>>> On 7/14/2026 1:54 AM, Ilya Leoshkevich wrote:
>>>>
>>>>
>>>> On 7/10/26 23:43, Pierrick Bouvier wrote:
>>>>> Signed-off-by: Pierrick Bouvier
>>>>> <pierrick.bouvier@oss.qualcomm.com> --- tests/tcg/
>>>>> meson.build | 1 + tests/tcg/s390x/Makefile.target
>>>>> | 127 ----------------------------- tests/tcg/s390x/
>>>>> meson.build | 138 +++++++++++++++++++++++++++ +++++ 3
>>>>> files changed, 139 insertions(+), 127 deletions(-) delete mode
>>>>> 100644 tests/tcg/s390x/Makefile.target create mode 100644
>>>>> tests/tcg/s390x/meson.build
>>>>
>>>> In general the s390x tests work now, however, I get:
>>>>
>>>> 155/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-fma
>>>> SKIP 0.09s exit status 77 156/164 tcg+tcg-s390x-
>>>> linux-user - qemu:s390x-linux-user-vfminmax SKIP
>>>> 0.07s exit status 77 157/164 tcg+tcg-s390x-linux-user -
>>>> qemu:s390x-linux-user-vxeh2_vs SKIP 0.06s exit
>>>> status 77 158/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-
>>>> user-vxeh2_vcvt SKIP 0.06s exit status 77 159/164
>>>> tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-vxeh2_vlstr
>>>> SKIP 0.05s exit status 77 160/164 tcg+tcg-s390x-
>>>> linux-user - qemu:s390x-linux-user-vxeh2_vstrs SKIP
>>>> 0.04s exit status 77
>>>>
>>>> with the series. Without the series these tests do run:
>>>>
>>>> TEST fma on s390x TEST vfminmax on s390x TEST
>>>> vxeh2_vcvt on s390x TEST vxeh2_vlstr on s390x TEST
>>>> vxeh2_vstrs on s390x TEST vxeh2_vs on s390x
>>>>
>>>
>>> Can you please run one of the test in verbose? It will print the
>>> reason why it was skipped. $ ./build/pyvenv/bin/meson test -C
>>> build \ s390x-linux-user-vxeh2_vcvt --verbose
>>
>> $ ./build/pyvenv/bin/meson test -C build \ s390x-linux-user-
>> vxeh2_vcvt --verbose 1/1 tcg+tcg-s390x-linux-user - qemu:s390x-linux-
>> user-vxeh2_vcvt RUNNING
>>>>>
>> UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1
>> MSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1
>> ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1
>> MESON_TEST_ITERATION=1 RUST_BACKTRACE=1 MALLOC_PERTURB_=146 /usr/bin/
>> env sh -c 'echo "compiler feature z15 not supported" && exit 77'
>> ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
>> ✀
>> ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
>> compiler feature z15 not supported
>>
>>> I guess the cross compiler is not detected, and we need to find
>>> why. With following questions, we should know what's missing.
>>>
>>> - Do you have s390x-linux-gnu-gcc installed?
>>
>> Yes.
>>
>>>
>>> - Does this command work? $ s390x-linux-gnu-gcc -static -o /dev/
>>> null tests/tcg/test_cc.c
>>
>> $ s390x-linux-gnu-gcc -static -o /dev/null tests/tcg/test_cc.c In
>> file included from tests/tcg/test_cc.c:3: /usr/lib/gcc/s390x-linux-
>> gnu/16/include/stdint.h:11:16: fatal error: stdint.h: No such file
>> or directory 11 | # include_next <stdint.h> |
>> ^~~~~~~~~~
>>
>> Apparently it's the same issue. Fedora doesn't ship cross glibc
>> headers.
>>
>
> And we should skip using it thus.
>
>>> - Do you have podman or docker installed?
>>
>> Yes.
>>
>>>
>>> - What is the output of this command? $ ./tests/docker/docker.py
>>> probe
>>
>> $ ./tests/docker/docker.py probe docker
>>
>>>
>>> Regards, Pierrick
>>
>
> It seems like local compiler was taken even though it's not working,
> which should not happen.
>
> Double checking the part checking this, there was a typo on my side.
> Sorry, I checked this in fedora, refactored after and missed it.
>
> Could you please try with following change?
> It should correctly use container version and compile binaries without
> checking if feature is supported.
>
> ```
> --- a/tests/tcg/meson.build
> +++ b/tests/tcg/meson.build
> @@ -192,7 +192,7 @@ foreach target, plan: tcg_tests
> cmd = run_command([cc, files('test_cc.c'), check_flags, '-o', '/
> dev/null'],
> check: false)
> avail = cmd.returncode() == 0
> - cc_from_system = has_cc
> + cc_from_system = avail
> has_cc = avail
> endif
> ```
>
> Regards,
> Pierrick
Perfect, now it works. Thanks!
142/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-fma
OK 0.04s
143/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-sha512-mvx
OK 0.04s
144/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-vfminmax
OK 0.04s
145/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-vxeh2_vs
OK 0.03s
146/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-vxeh2_vcvt
OK 0.03s
147/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-vxeh2_vlstr
OK 0.02s
148/164 tcg+tcg-s390x-linux-user - qemu:s390x-linux-user-vxeh2_vstrs
OK 0.02s
next prev parent reply other threads:[~2026-07-14 18:36 UTC|newest]
Thread overview: 131+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-10 21:42 [PATCH v5 00/98] tests/tcg: run tests with meson Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 01/98] tests/tcg/multiarch/system/memory.c: remove unused variable Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 02/98] tests/tcg/multiarch/plugin/check-plugin-output.sh: take test output as input Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 03/98] tests/tcg/multiarch/plugin: rename check-plugin-output to regex-compare Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 04/98] meson: bump minimal version to 1.6.0 Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 05/98] tests/tcg: introduce meson.build Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 06/98] tests/tcg/meson.build: introduce exe_name Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 07/98] tests/tcg/meson.build: introduce test_name Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 08/98] tests/tcg/meson.build: introduce cflags Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 09/98] tests/tcg/meson.build: introduce qemu_args Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 10/98] tests/tcg/meson.build: introduce env_var Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 11/98] tests/tcg/plugins: build list of test_plugins Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 12/98] tests/tcg/meson.build: introduce plugin_test Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 13/98] tests/tcg/meson.build: test gdb support and introduce gdb_arch Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 14/98] tests/tcg/meson.build: introduce gdb_test Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 15/98] tests/tcg/meson.build: introduce wrapper Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 16/98] tests/tcg/meson.build: introduce expected_output Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 17/98] tests/tcg/meson.build: add wrapper run_and_check_forbidden_output Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 18/98] tests/tcg/meson.build: add wrapper run_with_input Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 19/98] tests/tcg/meson.build: add wrapper record_replay Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 20/98] tests/tcg/meson.build: add wrapper check_plugin_output Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 21/98] tests/tcg/meson.build: add logic to skip tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 22/98] tests/tcg/meson.build: introduce cc_feat and cc_feat_cflags Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 23/98] tests/tcg/meson.build: introduce gdb_feat and gdb_feat_version Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 24/98] tests/tcg/meson.build: move gdb_arch support check Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 25/98] tests/tcg/meson.build: let test infrastructure detect compiler Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 26/98] tests/docker/docker.py: return error code if probe fails Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 27/98] tests/docker/docker.py: remove "Image is up to date" info Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 28/98] tests/tcg/meson.build: introduce cc_dockerfile and cc_docker_host_arch Pierrick Bouvier
2026-07-10 22:41 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 29/98] tests/tcg/meson.build: check host cross cc is working Pierrick Bouvier
2026-07-10 22:43 ` Philippe Mathieu-Daudé
2026-07-10 23:01 ` Pierrick Bouvier
2026-07-10 23:18 ` Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 30/98] tests/tcg/meson.build: introduce depends Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 31/98] tests/tcg/meson.build: add top-level 'tcg-tests' target Pierrick Bouvier
2026-07-10 23:00 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 32/98] tests/tcg/Makefile: skip user/system tests if target Makefile is not present Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 33/98] tests/tcg/multiarch/gdbstub/prot-none.py: deactivate on gitlab CI Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 34/98] tests/tcg/multiarch: declare user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 35/98] tests/tcg/multiarch: declare system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 36/98] tests/tcg/meson.build: add generic plugin tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 37/98] tests/tcg/arm/fcvt.c: use raw opcode for FPRCVT Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 38/98] tests/tcg/aarch64: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 39/98] tests/tcg/aarch64/system/gpc-test.c: remove unused variables Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 40/98] tests/tcg/aarch64: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 41/98] tests/tcg/aarch64_be: user tests Pierrick Bouvier
2026-07-10 22:27 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 42/98] tests/tcg/alpha: add float reference files Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 43/98] tests/tcg/alpha: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 44/98] tests/tcg/alpha: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 45/98] tests/tcg/arm: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 46/98] tests/tcg/arm: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 47/98] tests/tcg/hexagon/overflow.c: add missing include Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 48/98] tests/tcg/hexagon: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 49/98] tests/tcg/multiarch/sha1.c: fix big endian implementation Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 50/98] tests/tcg/hppa: add float reference files Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 51/98] tests/tcg/hppa: user tests Pierrick Bouvier
2026-07-10 22:24 ` Philippe Mathieu-Daudé
2026-07-10 23:15 ` Pierrick Bouvier
2026-07-11 14:17 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 52/98] tests/tcg/i386: add missing float reference files Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 53/98] tests/tcg/i386: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 54/98] tests/tcg/i386: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 55/98] tests/tcg/loongarch64: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 56/98] tests/tcg/loongarch64: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 57/98] tests/tcg/m68k: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 58/98] tests/tcg/m68k: user tests Pierrick Bouvier
2026-07-10 22:22 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 59/98] scripts/probe-gdb-support.py: add mapping for mips architecture Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 60/98] tests/tcg/mips: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 61/98] test/tcg/mips: user tests Pierrick Bouvier
2026-07-10 22:30 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 62/98] tests/tcg/mips64: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 63/98] tests/tcg/mips64: user tests Pierrick Bouvier
2026-07-10 22:29 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 64/98] tests/tcg/mips64el: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 65/98] tests/tcg/mips64el: user tests Pierrick Bouvier
2026-07-10 22:30 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 66/98] tests/docker/dockerfiles/debian-all-test-cross.docker: add or1k toolchain Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 67/98] tests/tcg/or1k/test_addic.c: remove unused variables Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 68/98] tests/tcg/or1k/test_muli.c: remove set but unused variable Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 69/98] tests/tcg/or1k: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 70/98] plugins/api.c: identify or1k pc register and mark it as read only Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 71/98] tests/tcg/or1k: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 72/98] tests/tcg/ppc64: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 73/98] tests/tcg/ppc64: remove dependency on qemu/compiler.h Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 74/98] tests/tcg/ppc64: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 75/98] tests/tcg/ppc64le: add missing float reference file Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 76/98] tests/tcg/ppc64le: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 77/98] tests/tcg/riscv64: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 78/98] tests/tcg/riscv64: user tests Pierrick Bouvier
2026-07-10 22:33 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 79/98] tests/tcg/riscv64: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 80/98] tests/tcg/s390x/head64.S: declare _exit symbol after main Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 81/98] tests/tcg/s390x: add float reference files Pierrick Bouvier
2026-07-14 10:47 ` Ilya Leoshkevich
2026-07-14 15:37 ` Pierrick Bouvier
2026-07-14 18:31 ` Ilya Leoshkevich
2026-07-10 21:43 ` [PATCH v5 82/98] tests/tcg/s390x: user tests Pierrick Bouvier
2026-07-14 8:54 ` Ilya Leoshkevich
2026-07-14 15:43 ` Pierrick Bouvier
2026-07-14 18:22 ` Ilya Leoshkevich
2026-07-14 18:33 ` Pierrick Bouvier
2026-07-14 18:36 ` Ilya Leoshkevich [this message]
2026-07-14 18:39 ` Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 83/98] tests/tcg/s390x/console.c: directly implement memcpy and memset Pierrick Bouvier
2026-07-14 10:46 ` Ilya Leoshkevich
2026-07-10 21:43 ` [PATCH v5 84/98] tests/tcg/s390x: system tests Pierrick Bouvier
2026-07-14 10:55 ` Ilya Leoshkevich
2026-07-14 15:33 ` Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 85/98] tests/tcg/sh4: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 86/98] tests/tcg/sh4: user tests Pierrick Bouvier
2026-07-10 22:34 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 87/98] tests/tcg/tricore: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 88/98] tests/tcg/x86_64: add missing float reference file Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 89/98] tests/tcg/x86_64: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 90/98] tests/tcg/x86_64: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 91/98] tests/tcg/xtensa/crt.S: align .text section Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 92/98] tests/docker/dockerfiles/debian-xtensa-cross.docker: add test_kc705_be toolchain for xtensaeb Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 93/98] tests/tcg/xtensa: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 94/98] tests/tcg/xtensa: xtensaeb " Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 95/98] tests: remove tcg tests machinery Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 96/98] tests/tcg: remove remaining Makefiles Pierrick Bouvier
2026-07-10 22:36 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 97/98] configure: remove --cross-cc* options Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 98/98] docs/devel/testing/: update documentation Pierrick Bouvier
2026-07-10 22:37 ` Philippe Mathieu-Daudé
2026-07-10 21:58 ` [PATCH v5 00/98] tests/tcg: run tests with meson Pierrick Bouvier
2026-07-14 9:53 ` Alex Bennée
2026-07-14 15:53 ` Pierrick Bouvier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fd573325-c8bc-458a-bbe2-041d4e6e3206@linux.ibm.com \
--to=iii@linux.ibm.com \
--cc=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=brian.cain@oss.qualcomm.com \
--cc=deller@gmx.de \
--cc=gustavo.romero@linaro.org \
--cc=laurent@vivier.eu \
--cc=manos.pitsidianakis@linaro.org \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@oss.qualcomm.com \
--cc=pierrick.bouvier@oss.qualcomm.com \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.