Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: Balazs on January 08, 2007, 05:20:29 pm

Title: precompiled headers command messed up
Post by: Balazs on January 08, 2007, 05:20:29 pm
I think CB issues a bad command when precompiling the header I want. It does this:

Code
mingw32-g++.exe -O3 -Wall -I..\..\..\src -c ..\..\..\src\pch.h -o src\pch.h.gch

Shouldn't it issue a command like this?:

Code
mingw32-g++.exe -O3 -Wall -I..\..\..\src -c ..\..\..\src\pch.h -o ..\..\..\src\pch.h.gch

I'm using "Generate PCH alongside original header" strategy.