Package Details: mingw-w64-glib2 2.80.0-1

Git Clone URL: https://aur.archlinux.org/mingw-w64-glib2.git (read-only, click to copy)
Package Base: mingw-w64-glib2
Description: Low level core library (mingw-w64)
Upstream URL: https://wiki.gnome.org/Projects/GLib
Keywords: glib2 gnome gtk gtk2 gtk3 mingw mingw-w64
Licenses: LGPL2.1
Submitter: brcha
Maintainer: drakkan
Last Packager: drakkan
Votes: 20
Popularity: 0.000000
First Submitted: 2012-06-13 19:15 (UTC)
Last Updated: 2024-03-28 08:23 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

drakkan commented on 2017-02-01 21:08 (UTC)

please add import library for linking in Visual Studio, patch here: http://195.250.34.59/temp/0001-add-split-package-for-import-lib.patch the generated .lib does not work with all msvc compiler versions anyway having the .def files make easier regenerate the .lib directly on windows using lib.exe instead of dlltool

drakkan commented on 2017-01-11 16:48 (UTC)

Can you please apply the following patch? https://cgit.freedesktop.org/gstreamer/cerbero/tree/recipes/glib/0017-GSocket-Fix-race-conditions-on-Win32-if-multiple-thr.patch

Martchus commented on 2016-08-17 22:15 (UTC)

You've just reminded me to push the commit to mingw-w64-gettext.

Schala commented on 2016-08-17 22:07 (UTC)

ack, forgot the last part -_-

Martchus commented on 2016-08-13 14:15 (UTC) (edited on 2016-08-13 14:16 (UTC) by Martchus)

pnyetmja: I will fix this problem with the static Qt package in the next update. To avoid hard coding I will use pkgconfig. However, this package would need a slight fix to make it work: https://github.com/Martchus/PKGBUILDs/blob/master/glib2/mingw-w64/use-pkgconfig-file-for-intl.patch This is because the bug pnyetmja already mentioned: https://github.com/Alexpux/MINGW-packages/issues/744 But please do not include this fix until the pkgconfig file for intl is included in mingw-w64-gettext.

pnyetmja commented on 2015-09-26 13:33 (UTC)

Adding -liconv after -lintl in qmake.conf solves problem Thank you

ant32 commented on 2015-09-25 03:12 (UTC)

Manually adding libraries in the .pro file will probably add it in the wrong place in your case. Linking needs to be done in the right order. You can sometimes further debug the issue by modifying the last command executed.I'm guessing it needs to go after -lglib-2.0 or -lintl. To make this permanent you'll need to add it in /usr/x86_64-w64-mingw32/lib/qt/mkspecs/win32-g++/qmake.conf just search for 'glib' in the file. If you get it working please let us know how you did it.

pnyetmja commented on 2015-09-24 21:39 (UTC)

I've installed packages from this repo http://downloads.sourceforge.net/project/mingw-w64-archlinux/$arch And tried to compile statically simple qt gui project but I got that error Build with shared libs succeeds Also I manually added LIBS += -L/usr/x86_64-w64-mingw32/lib -liconv to Qt .pro file but static build failed. That dir contains libs for windows, I suppose?