I am pretty new to Ubuntu, but I can't seem to get this to work. It works fine on my school computers and I don't know what I am not doing. I have checked usr/include and time.h is there just fine. Here is the code:

#include <iostream>
#include <time.h>
using namespace std;

int main()
{
    timespec time1, time2;
    int temp;
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
    //do stuff here
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
    return 0;
}

I am using CodeBlocks as my IDE to build and run as well. Any help would be great, thank you.

link|improve this question

feedback

3 Answers

up vote 28 down vote accepted

Add -lrt to the list of libraries you link to

link|improve this answer
that works if I compile manually - any idea how I automate that in codeblocks? – naspinski Mar 10 '10 at 15:41
3  
try Project -> Build Options -> Linker Settings ; then add library rt – Dmitry Yudakov Mar 10 '10 at 15:55
feedback

I encountered the same error. My linker command did have the rt library included -lrt which is correct and it was working for a while. After re-installing Kubuntu it stopped working.

A separate forum thread suggested the -lrt needed to come after the project object files. Moving the -lrt to the end of the command fixed this problem for me although I don't know the details of why.

link|improve this answer
Could you post a link to the forum thread? – Jonathan Spooner Nov 10 '11 at 11:31
Quoting twkm from ircnet: the linker only maintains a list of symbols needed. once a file's symbols have been searched, only what it needs is kept, what it provides is discarded and it moves to the next filename. so left to right, but very forgetful. – domen Mar 7 at 6:52
feedback

example:

c++ -Wall filefork.cpp -lrt -O2

for gcc version 4.6.1, -lrt must be after filefork.cpp

otherwise get link error.

some older gcc version doesn't care the position.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.