Author Topic: precompiled headers command messed up  (Read 3488 times)

Balazs

  • Guest
precompiled headers command messed up
« 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.