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:


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


Shouldn't it issue a command like this?:


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.