GNU bug report logs -
#37605
[core-updates] MariaDB fails tests on armhf-linux
Previous Next
Reported by: Marius Bakke <mbakke <at> fastmail.com>
Date: Thu, 3 Oct 2019 15:45:01 UTC
Severity: normal
Done: Marius Bakke <mbakke <at> fastmail.com>
Bug is archived. No further changes may be made.
Full log
Message #16 received at 37605-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Marius Bakke <mbakke <at> fastmail.com> writes:
> Marius Bakke <mbakke <at> fastmail.com> writes:
>
>> "mariadb" consistently fails a single test on the core-updates branch on
>> armhf-linux:
>>
>> https://ci.guix.gnu.org/build/1689172/details
>>
>> [...]
>>
>> This does not happen on current 'master', so the problem was introduced
>> somewhere in between ccbc1c5eb..cbc8c658d.
>
> Upstream bug report here:
>
> https://jira.mariadb.org/browse/MDEV-20573
>
> I'm not sure what to do about it. We could skip it, but then users who
> rely on encrypted binary logs could potentially get in trouble. I
> haven't found a compile-time flag to disable just this one feature.
I was able to work around it by going back to GCC 5:
[Message part 2 (text/x-patch, inline)]
modified gnu/packages/databases.scm
@@ -72,6 +72,7 @@
#:use-module (gnu packages dbm)
#:use-module (gnu packages emacs)
#:use-module (gnu packages flex)
+ #:use-module (gnu packages gcc)
#:use-module (gnu packages gettext)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnupg)
@@ -779,6 +780,10 @@ Language.")
#t))))))
(native-inputs
`(("bison" ,bison)
+ ;; XXX: On armhf, use GCC 5 to work around <https://bugs.gnu.org/37605>.
+ ,@(if (string-prefix? "armhf" (%current-system))
+ `(("gcc", gcc-5))
+ '())
("perl" ,perl)))
(inputs
`(("jemalloc" ,jemalloc)
[Message part 3 (text/plain, inline)]
GCC 9 did not make a difference.
Workaround pushed in 2fa55c72476c73211cbb2d6b29c05a1ad58a6cf9. Let's
revisit this after upgrading to MariaDB 10.4.
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 5 years and 223 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.