[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#40264] Linphone: 14-add-linphoneqt-v7
From: |
Maxim Cournoyer |
Subject: |
[bug#40264] Linphone: 14-add-linphoneqt-v7 |
Date: |
Wed, 15 Apr 2020 00:36:09 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
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':
│ 0x00000000 00000000 00020000 00010000 00010000 ................
│ 0x00000010 00000000 00000000 00000002 00000002 ................
│ 0x00000020 00000002 00000000 00000000 00000018 ................
│ - 0x00000030 00010000 00010000 00000000 01717bea .............q{.
│ - 0x00000040 688a0000 00220001 00000001 0000280f h...."........(.
│ - 0x00000050 00000171 7bea6886 00000000 00000000 ...q{.h.........
│ + 0x00000030 00010000 00010000 00000000 01717bec .............q{.
│ + 0x00000040 98610000 00220001 00000001 0000280f .a..."........(.
│ + 0x00000050 00000171 7bec9861 00000000 00000000 ...q{..a........
│ 0x00000060 000904eb 98c3006c 0061006e 00670075 .......l.a.n.g.u
│ 0x00000070 00610067 00650073 00020000 06be0065 .a.g.e.s.......e
│ 0x00000080 006e0002 000006d2 00660072 00000000 .n.......f.r....
│ 0x00000090 00000000 00000000 00000000 00000000 ................
│ 0x000000a0 0000280b 00008688 789ce57d 0b741cc5 ..(.....x..}.t..
│ 0x000000b0 9568c992 a5d16834 92654996 8531c236 .h....h4.eI..1.6
│ 0x000000c0 c626c618 639b9f31 8cf58905 922ceb63 .&..c..1.....,.c
This matches the .rodata diff found in the main binary :-).
Maxim