Problem with librt.a - correction

Daniel Jacobowitz drow@false.org
Thu Oct 25 17:28:00 GMT 2007


On Thu, Oct 25, 2007 at 03:23:14PM -0200, Guilherme Vilela wrote:
> When I compile my program with gcc using dynamic libraries (gcc -o
> test test.c -ltr) the function clock_gettime return 0 ("success"), but
> when I compile the program using static libraries (gcc -o test test.c
> -static -ltr) the function clock_gettime returns -1 ("Invalid
> argument").
> 
> Anybody knows why using librt.so the probram works but using librt.a
> the program crashes?

Don't use static linking.  This is one of many glibc problems that
lurk there.

If you must use static linking, try adding -lpthread explicitly.

-- 
Daniel Jacobowitz
CodeSourcery



More information about the Libc-alpha mailing list