Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm getting this compilation error:

fatal error: can’t create precompiled header f: Text file busy compilation terminated.

This is a very mysterious one, since i get it only once in a while..

Where do i go wrong?

share|improve this question
Maybe this helps you? – Xeo Apr 5 '11 at 9:16
Are you running make -j when this occurs? Perhaps try limiting to one compilation at a time. – Johnsyweb Apr 5 '11 at 9:29

1 Answer

ETXTBSY is a standard errno value, the best explanation I've found being:

An attempt to execute a file that is currently open for writing, or write to a file that is currently being executed. Often using a debugger to run a program is considered having it open for writing and will cause this error. (The name stands for "text file busy".)

So, you might still be executing the program the compiler is trying to recreate/update...?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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