News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

compile command bug

Started by Balazs, January 09, 2007, 07:08:47 PM

Previous topic - Next topic

Balazs

CB issues a bad command for precompiling headers:


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


The output file path is wrong. It should be like this:


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


(Using "Generate PCH alongside original header" strategy.)

mandrav

Please provide a minimal sample project. Works fine here with my tests.
Be patient!
This bug will be fixed soon...

Balazs

Here you go. The pch should be generated alongside the header, but it is not.


[attachment deleted by admin]

mandrav

Be patient!
This bug will be fixed soon...