PDA

View Full Version : Qt Creator Building qt creator from scratch: After mingw32-make clean, *.pluginspec are removed



SasaVilic
5th October 2011, 14:19
I have compiled QT 2.3.1 from source. Here is the process:


cd c:\qtcreator
qmake c:\qtcreatorsrc\qtcreator.pro -o c:\qtcreater\Makefile -spec win32-g++ -r CONFIG+=release
mingw32-make release

After this, the qtcreator was compiled succesful and I was able to run it. Then I decided to clean all object files that are not needed anymore and I have done:


mingw32-make clean

After this, I was not able to start qt. The message I get is: "Failed to load core: Could not find 'Core.pluginspec' in C:\QtCreator\lib\qtcreator\plugins,C:\QtCreator\pl ugins"

After short investigation I have noticed that clean step has really remove all *.pluginspec files from lib\qtcreator\plugins. Is this bug in generation of makefile? Have I done something wrong? I could skip clean step, but I see no point in keeping all object files since they occupy more then 1GB of disk space.

wysota
7th October 2011, 21:45
Have you tried running make install?