gtkd-developers / GlibD

D bindings for the GLib C Utility Library.
Other
5 stars 3 forks source link

Add missing gthread-2.0 dependency #21

Closed Vild closed 3 months ago

Vild commented 3 months ago

Fixes the 'undefined symbol: g_thread_init' error when running programs that link to glibd.

Reason:

To use g_thread_init() in your program, you have to link with the libraries that the command pkg-config —libs gthread-2.0 outputs.

MikeWey commented 3 months ago

Thanks.