Skip to content
  • Loïc Le Page's avatar
    Enable full-static build on Windows · 42c77c7a
    Loïc Le Page authored
    Glib cannot be built statically on Windows because glib, gobject and gio
    modules need to perform specific initialization when DLL are loaded and
    cleanup when unloaded. Those initializations and cleanups are performed
    using the DllMain function which is not called with static builds.
    
    Issue is known for a while and solutions were already proposed but never
    merged (see: GNOME/glib#692). Last
    patch is from version 2.36.x and since then the
    "constructor/destructor" mechanism has been implemented and used in
    other part of the system.
    
    This patch takes back the old idea and updates it to the last version of
    glib to allow static compilation on Windows.
    
    WARNING: because DllMain doesn't exist anymore in static compilation
    mode, there is no easy way of knowing when a Windows thread finishes.
    This patch implements a workaround for glib threads created by calling
    g_thread_new(), so all glib threads created through glib API will behave
    exactly the ...
    42c77c7a