Project Builder Compile error

12d3

Registered
Hello,

I've been doing some programming in carbon using Project Builder. I've had no problems with the actual program I've been writing, but for some reason the below warning appears. I'm guessing that when I do come around to using carbon sound that it won't work because of this.

Does anyone know how I can resolve this?

The Warning:

Warning: could no use precompiled header '/System/Library/Frameworks/Carbon.framework/Headers/Carbon.p', because:
Warning: 'CarbonSound/CarbonSound.h' has different date than in precomp
Warning: 'CarbonSound/Sound.h' has different date than in precomp

I'd be very greatful if anyone could help!

Thanks
 
To avoid that warning and its assciated slow compile time, run this command in terminal

sudo fixPrecomps

This rebuilds the out-of-date precompiled header files, including Carbon.p. If you're doing C++ development, you might as well

sudo fixPrecomps -gcc3all

So that the Obj-C++ precomps get created as well.
 
Back
Top