From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38463) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jObJF-0007xV-9u for guix-patches@gnu.org; Wed, 15 Apr 2020 02:14:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jObJE-0005YN-6c for guix-patches@gnu.org; Wed, 15 Apr 2020 02:14:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51838) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jObJE-0005YF-2i for guix-patches@gnu.org; Wed, 15 Apr 2020 02:14:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jObJB-0001yI-VR for guix-patches@gnu.org; Wed, 15 Apr 2020 02:14:02 -0400 Subject: [bug#40264] Linphone: 14-add-linphoneqt-v7 Resent-Message-ID: From: Maxim Cournoyer References: <48c4a04dff5589ada795e823ed045dee@disroot.org> <20200411015009.4a13d52f@scratchpost.org> <87lfmxh38g.fsf@gmail.com> <87ftd5gybq.fsf@gmail.com> Date: Wed, 15 Apr 2020 02:13:29 -0400 In-Reply-To: <87ftd5gybq.fsf@gmail.com> (Maxim Cournoyer's message of "Wed, 15 Apr 2020 00:36:09 -0400") Message-ID: <87blntgtti.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Danny Milosavljevic Cc: Raghav Gururajan , 40264@debbugs.gnu.org Hi! Maxim Cournoyer writes: > Hello again, > > I've isolated the culprit: it's the translation auto-generated files > qrc_i18n.cpp. I've run a couple builds locally, then diffed the build > files, and found this suspicious: > > diff -I build2 -I build3 -r build2/qrc_i18n.cpp build3/qrc_i18n.cpp > 1352c1352 > < 0x0,0x0,0x1,0x71,0x7b,0xea,0x68,0x8a, > --- >> 0x0,0x0,0x1,0x71,0x7b,0xec,0x98,0x61, > 1355c1355 > < 0x0,0x0,0x1,0x71,0x7b,0xea,0x68,0x86, > --- >> 0x0,0x0,0x1,0x71,0x7b,0xec,0x98,0x61, > > I then compared the object files for this source, e.g.: diffoscope > --exclude-command stat > build{2,3}/CMakeFiles/app-library.dir/qrc_i18n.cpp.o > > Hex dump of section '.rodata': > =E2=94=82 0x00000000 00000000 00020000 00010000 00010000 .............= ... > =E2=94=82 0x00000010 00000000 00000000 00000002 00000002 .............= ... > =E2=94=82 0x00000020 00000002 00000000 00000000 00000018 .............= ... > =E2=94=82 - 0x00000030 00010000 00010000 00000000 01717bea .............= q{. > =E2=94=82 - 0x00000040 688a0000 00220001 00000001 0000280f h....".......= .(. > =E2=94=82 - 0x00000050 00000171 7bea6886 00000000 00000000 ...q{.h......= ... > =E2=94=82 + 0x00000030 00010000 00010000 00000000 01717bec .............= q{. > =E2=94=82 + 0x00000040 98610000 00220001 00000001 0000280f .a...".......= .(. > =E2=94=82 + 0x00000050 00000171 7bec9861 00000000 00000000 ...q{..a.....= ... > =E2=94=82 0x00000060 000904eb 98c3006c 0061006e 00670075 .......l.a.n.= g.u > =E2=94=82 0x00000070 00610067 00650073 00020000 06be0065 .a.g.e.s.....= ..e > =E2=94=82 0x00000080 006e0002 000006d2 00660072 00000000 .n.......f.r.= ... > =E2=94=82 0x00000090 00000000 00000000 00000000 00000000 .............= ... > =E2=94=82 0x000000a0 0000280b 00008688 789ce57d 0b741cc5 ..(.....x..}.= t.. > =E2=94=82 0x000000b0 9568c992 a5d16834 92654996 8531c236 .h....h4.eI..= 1.6 > =E2=94=82 0x000000c0 c626c618 639b9f31 8cf58905 922ceb63 .&..c..1.....= ,.c > > This matches the .rodata diff found in the main binary :-). > > Maxim Fixed in commit a4f1a7e2db, on core-updates :-) Maxim