After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 796283 - Add mingw cross build CI
Add mingw cross build CI
Status: RESOLVED OBSOLETE
Product: glib
Classification: Platform
Component: build
unspecified
Other Linux
: Normal normal
: ---
Assigned To: gtkdev
gtkdev
Depends on:
Blocks:
 
 
Reported: 2018-05-20 19:20 UTC by Xavier Claessens
Modified: 2018-05-24 20:37 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Add mingw64 cross build CI (1.48 KB, patch)
2018-05-20 19:21 UTC, Xavier Claessens
needs-work Details | Review
gslice: Use g_fprintf() instead of fprintf() (3.77 KB, patch)
2018-05-21 02:15 UTC, Xavier Claessens
accepted-commit_now Details | Review
Fix build error when compiling with mingw (1.29 KB, patch)
2018-05-21 02:54 UTC, Xavier Claessens
accepted-commit_now Details | Review

Description Xavier Claessens 2018-05-20 19:20:42 UTC
.
Comment 1 Xavier Claessens 2018-05-20 19:21:04 UTC
Created attachment 372251 [details] [review]
Add mingw64 cross build CI
Comment 2 Xavier Claessens 2018-05-20 19:23:30 UTC
This one was easy to setup because fedora has already dependencies packaged for mingw64.

However, glib fails to build:

../glib/gslice.c:1529:24: error: unknown conversion type character 'l' in format [-Werror=format=]
       fprintf (stderr, "GSlice: MemChecker: attempt to release non-allocated block: %p size=%" G_GSIZE_FORMAT "\n", pointer, size);
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Comment 3 Xavier Claessens 2018-05-20 19:24:20 UTC
Sorry, full error message is:

../glib/gslice.c:1529:24: error: unknown conversion type character 'l' in format [-Werror=format=]
       fprintf (stderr, "GSlice: MemChecker: attempt to release non-allocated block: %p size=%" G_GSIZE_FORMAT "\n", pointer, size);
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../glib/gslice.c:20:0:
glib/glibconfig.h:81:26: note: format string is defined here
 #define G_GSIZE_FORMAT "llu"
                          ^
Comment 4 Tim Mayberry 2018-05-20 22:16:53 UTC
This answer on stackoverflow seems relevant: https://stackoverflow.com/a/44383330
Comment 5 Xavier Claessens 2018-05-20 23:21:58 UTC
Ok, this is a bug in glib's meson, with autotools G_GSIZE_FORMAT is defined as 'I64i' when building with mingw64.

In configure.ac, gint64_format is set to glib_cv_long_long_format which has millions of tests to define its value. In meson.build all those tests are gone with a simple int64_m = 'll'.
Comment 6 LRN 2018-05-20 23:45:49 UTC
This is a bug in glib. It calls fprintf () (i.e. the fprintf function provided by C runtime) and passes G_GSIZE_FORMAT to it. After commit a9164f55f7db1e620d336511ea5461207b7a06b6 these formats are only officially supported for g_* functions, and commit 98a0ab929d8c59ee27e5f470f11d077bb6a56749 made glib always use 'll' for G_GSIZE_FORMAT, since this format specifier should only be used for functions that support 'll'.

Either g_fprintf() here, or don't use G_GSIZE_FORMAT.
Compiling glib with __USE_MINGW_ANSI_STDIO=1 will fix this error too, but it's a MinGW-only fix (i.e. i have no idea what's going to happen with MSVC builds in this case). There might have been changes toward the use of __USE_MINGW_ANSI_STDIO=1 in glib, but i can't quickly find a commit that did add it, if that actually did happen.
Comment 7 Xavier Claessens 2018-05-21 01:26:41 UTC
Wondering if gslice is not using glib print function because they could allocate memory using gslice, that would make infinite loop, or something. Someone knows?
Comment 8 Xavier Claessens 2018-05-21 02:15:56 UTC
Created attachment 372268 [details] [review]
gslice: Use g_fprintf() instead of fprintf()

G_GSIZE_FORMAT and friends cannot always be used with fprintf(), they
require gnu/C99 implementation.
Comment 9 Xavier Claessens 2018-05-21 02:24:19 UTC
I checked g_fprintf() code and it doesn't seems to be using glib memory allocator. With that fix, now next error...

../gobject/../glib/valgrind.h: In function 'VALGRIND_PRINTF':
../gobject/../glib/valgrind.h:6251:4: error: unknown type name 'uintptr_t'; did you mean '__uint128_t'?
    uintptr_t _qzz_res;
    ^~~~~~~~~
    __uint128_t
Comment 10 Xavier Claessens 2018-05-21 02:54:31 UTC
Created attachment 372272 [details] [review]
Fix build error when compiling with mingw

uintptr_t must be defined when including valgrind.h, just move it as
last include solves the problem.
Comment 11 Xavier Claessens 2018-05-21 02:55:15 UTC
No more build error !
Comment 12 Xavier Claessens 2018-05-21 03:12:41 UTC
Running tests under wine (by setting exe_wrapper in meson cross file) doesn't work:
000d:err:module:import_dll Library libglib-2.0-0.dll (which is needed by L"Z:\\home\\user\\app\\_build\\glib\\tests\\array-test.exe") not found

Wondering if that's something that could be fixed in meson somehow.
Comment 13 Nirbheek Chauhan 2018-05-23 14:54:25 UTC
(In reply to Xavier Claessens from comment #12)
> Running tests under wine (by setting exe_wrapper in meson cross file)
> doesn't work:
> 000d:err:module:import_dll Library libglib-2.0-0.dll (which is needed by
> L"Z:\\home\\user\\app\\_build\\glib\\tests\\array-test.exe") not found
> 
> Wondering if that's something that could be fixed in meson somehow.

Yes, we already handle this case when the build machine is Windows, it would need to be extended to when the host machine is Windows.
Comment 14 Xavier Claessens 2018-05-23 15:20:15 UTC
(In reply to Nirbheek Chauhan from comment #13)
> (In reply to Xavier Claessens from comment #12)
> > Running tests under wine (by setting exe_wrapper in meson cross file)
> > doesn't work:
> > 000d:err:module:import_dll Library libglib-2.0-0.dll (which is needed by
> > L"Z:\\home\\user\\app\\_build\\glib\\tests\\array-test.exe") not found
> > 
> > Wondering if that's something that could be fixed in meson somehow.
> 
> Yes, we already handle this case when the build machine is Windows, it would
> need to be extended to when the host machine is Windows.

Ok,reported an issue against meson for this:
https://github.com/mesonbuild/meson/issues/3620
Comment 15 Philip Withnall 2018-05-24 10:40:12 UTC
Review of attachment 372268 [details] [review]:

OK, but please amend the commit message to mention that g_fprintf() has been checked to make sure it doesn’t allocate memory.
Comment 16 Philip Withnall 2018-05-24 10:40:57 UTC
Review of attachment 372272 [details] [review]:

OK.
Comment 17 Philip Withnall 2018-05-24 10:45:16 UTC
Review of attachment 372251 [details] [review]:

::: .gitlab-ci.yml
@@ +41,3 @@
       - "${CI_PROJECT_DIR}/_build/meson-logs"
 
+fedora-meson-minw64:

s/minw64/mingw64/

@@ +46,3 @@
+    - tags
+  script:
+    - meson --cross-file=/opt/meson_mingw64_cross_file.txt _build

Plus `--buildtype debug --werror`?

What about `meson test -C _build`?

::: .gitlab-ci/Dockerfile
@@ +41,3 @@
 RUN ./setup-android-ndk.sh
 
+COPY meson_mingw64_cross_file.txt /opt

Where does this meson_mingw64_cross_file.txt come from?
Comment 18 GNOME Infrastructure Team 2018-05-24 20:37:16 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/glib/issues/1387.