我已经在 Debian Stretch 上使用 i686-w64-mingw32 将 MS Windows 的 libpng 1.6.28、libjpeg-turbo 1.5.1 和 GLib 2.50.3 交叉编译到一个特殊文件夹,但仍然无法让 gdk-pixbuf 工作。我用于配置的命令行是:
./configure --host=i686-w64-mingw32 PKG_CONFIG_PATH=/usr/local/mingw32-i686/lib/pkgconfig --prefix=/usr/local/mingw32-i686
它很好地通过了配置部分,但问题从提出问题开始。它抛出以下错误:
/usr/local/mingw32-i686/lib/libgio-2.0.a(libgio_2_0_la-giomodule.o): In function `DllMain@12':
/home/maju/GTK-build/glib-2.50.3/gio/giomodule.c:942: multiple definition of `DllMain@12'
./.libs/libgdk_pixbuf-2.0.a(libgdk_pixbuf_2_0_la-gdk-pixbuf-io.o):gdk-pixbuf-io.c:(.text+0x1ca): first defined here
collect2: error: ld returned 1 exit status
Makefile:1859: polecenia dla obiektu 'gdk-pixbuf-csource.exe' nie powiodły się
(最后一行只是 gdk-pixbuf-csource.exe 的未翻译错误消息)。
紧随其后的是警告消息:
*** Warning: This system cannot link to static lib archive libgdk_pixbuf-2.0.la.
*** I have the capability to make that library automatically link in when
*** you link to this library. But I can only do this if you have a
*** shared version of the library, which you do not appear to have.
*** But as you try to build a module library, libtool will still create
*** a static module, that should work as long as the dlopening application
*** is linked with the -dlopen flag to resolve symbols at runtime.
对于每个必需的库。
谁能给我解释一下?