This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

libguile & qthreads


David Welton writes:
 > So.. in my efforts to clean up and respond to all the bug reports
 > against guile in Debian, I encountered someone complaining that
 > libguile wasn't linked against qthreads.  He got this, when compiling
 > gnurobots:
 > 
 > > > /usr/lib/libguile.so: undefined reference to `qt_abort'
 > > > /usr/lib/libguile.so: undefined reference to `qt_error'
 > > > /usr/lib/libguile.so: undefined reference to `qt_block'
 > 
 > Is this an error in my build process, or... is this gnurobots
 > misbehaving?  Sorry to disturb with a less than interesting question,
 > but I want to have the best package possible in Debian:-)

Linking with guile with qthreads is optional , there's a configure commandline
switch to enable/disable it.
Maybe it will be reconfigured as a module later, or become obsolete when 
kernel threads get supported. Threads can also be emulated by scheme coroutines
passing control mutually via call-with-current-continuation or maybe  guile's
exceptions, if one doesn't want threads for multiprocessing.

	    Klaus Schilling