Developer forums (C::B DEVELOPMENT STRICTLY!) > Development
compile command bug
(1/1)
Balazs:
CB issues a bad command for precompiling headers:
--- Code: ---mingw32-g++.exe -O3 -Wall -I..\..\..\src -c ..\..\..\src\pch.h -o src\pch.h.gch
--- End code ---
The output file path is wrong. It should be like this:
--- Code: ---mingw32-g++.exe -O3 -Wall -I..\..\..\src -c ..\..\..\src\pch.h -o ..\..\..\src\pch.h.gch
--- End code ---
(Using "Generate PCH alongside original header" strategy.)
mandrav:
Please provide a minimal sample project. Works fine here with my tests.
Balazs:
Here you go. The pch should be generated alongside the header, but it is not.
[attachment deleted by admin]
mandrav:
Fixed in revision 3492.
Navigation
[0] Message Index
Go to full version