From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53729) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOZnL-0000sa-8e for guix-patches@gnu.org; Wed, 15 Apr 2020 00:37:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOZnK-0003zr-8A for guix-patches@gnu.org; Wed, 15 Apr 2020 00:37:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51809) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOZnK-0003zh-2r for guix-patches@gnu.org; Wed, 15 Apr 2020 00:37:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOZnJ-0007uf-VU for guix-patches@gnu.org; Wed, 15 Apr 2020 00:37:01 -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> Date: Wed, 15 Apr 2020 00:36:09 -0400 In-Reply-To: <87lfmxh38g.fsf@gmail.com> (Maxim Cournoyer's message of "Tue, 14 Apr 2020 22:50:07 -0400") Message-ID: <87ftd5gybq.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 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