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 394641 - Undefined reference in gthread
Undefined reference in gthread
Status: RESOLVED FIXED
Product: glib
Classification: Platform
Component: gthread
2.12.x
Other Linux
: Normal normal
: ---
Assigned To: gtkdev
gtkdev
Depends on:
Blocks:
 
 
Reported: 2007-01-09 14:24 UTC by Marco Pesenti Gritti
Modified: 2011-02-18 15:50 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Marco Pesenti Gritti 2007-01-09 14:24:53 UTC


  • File "/usr/lib/python2.4/site-packages/gtk-2.0/gobject/__init__.py", line 30 in ?
    from _gobject import *
ImportError: /home/marco/sugar-jhbuild/build/lib/libgthread-2.0.so.0: undefined symbol: clock_gettime

It seems like it's not linking to librt since the following solves it:

Index: gthread/Makefile.am
===================================================================
--- gthread/Makefile.am (revision 5233)
+++ gthread/Makefile.am (working copy)
@@ -61,7 +61,7 @@
 libgthread_2_0_la_LDFLAGS = \
        $(gthread_win32_res_ldflag) \
        -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
-       -export-dynamic $(no_undefined) $(export_symbols)
+       -export-dynamic $(no_undefined) $(export_symbols) -lrt
 
 libgthread_2_0_la_LIBADD = $(G_THREAD_LIBS_EXTRA) $(G_THREAD_LIBS_FOR_GTHREAD) $(libglib)
Comment 1 Matthias Clasen 2007-01-10 13:54:48 UTC
2007-01-10  Matthias Clasen  <mclasen@redhat.com>

        * configure.in: Actually link gthread against librt.
        (#394641, Marco Pesenti Gritti)