Problem with librt.a

Guilherme Vilela vilela.list@gmail.com
Thu Oct 25 17:20:00 GMT 2007


Hi,
I'm making a simple program to calculate the cpu execution time of a
process. I'm using the function clock_gettime like the line below:
...
if (clock_gettime (CLOCK_REALTIME,  &gtt_global) != 0)
...

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?

Thanks,
Guilherme



More information about the Libc-alpha mailing list