Windows xp SP2
Dev-C++ 4.9.9.2
intel core 2 duo e6400
While I simply debugging (for example using ctrl+f4, looking variables value,ecc...) after 10\20 minutes of tries, all become slow, and looking on task manager i see that dev-c++ busy 100% CPU!.
If i close and restart dev-c++, it always busy 100% cpu.
i have uninstalled dev-c++ and reinstalled it and all is ok, but if i doing my work (debugging) after 5\10 times of debugs operations it busy 100% my cpu.
ask me other things if you want!
debug log:
Compilatore: Default compiler
Esecuzione di g++.exe...
g++.exe "C:\Documents and Settings\Daniele\Desktop\programmazione\prove\massimo.cpp" -o "C:\Documents and Settings\Daniele\Desktop\programmazione\prove\massimo.exe" -g3 -I"C:\Dev-Cpp\lib\gcc\mingw32\3.4.2\include" -I"C:\Dev-Cpp\include\c++\3.4.2\backward" -I"C:\Dev-Cpp\include\c++\3.4.2\mingw32" -I"C:\Dev-Cpp\include\c++\3.4.2" -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib" -g3
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am not sure what your problem might be. It seems very strange that it would consume 100% of both cores!
The only thing I notice from your log is teh location of your project: C:\Documents and Settings\Daniele\Desktop\programmazione. This path contains spaces which can cause problems with both Dev-C++ and the underlying GNU toolchain. I suggest that you move it to just c:\programmazione\
I believe that a working debugger is an essential programming tool that too many people overlook or regard as too complicated, however to be quite frank Dev-C++'s debugger is almost worst than useless. And for that reason I find myself recommending Microsoft Visual C++ 2008 Express to those who wish to use a debugger effectively. Its debugger is second to none. http://www.microsoft.com/express/vc/
Clifford
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
thx for the reply, i want to correct an important thing:
Closing and restarting Dev-C++ "fix" the problem, because i no need to reinstall to have a working dev-c++.
i need to use dev-c++ for my university!
ps: scuse my english! :D
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Windows xp SP2
Dev-C++ 4.9.9.2
intel core 2 duo e6400
While I simply debugging (for example using ctrl+f4, looking variables value,ecc...) after 10\20 minutes of tries, all become slow, and looking on task manager i see that dev-c++ busy 100% CPU!.
If i close and restart dev-c++, it always busy 100% cpu.
i have uninstalled dev-c++ and reinstalled it and all is ok, but if i doing my work (debugging) after 5\10 times of debugs operations it busy 100% my cpu.
ask me other things if you want!
debug log:
Compilatore: Default compiler
Esecuzione di g++.exe...
g++.exe "C:\Documents and Settings\Daniele\Desktop\programmazione\prove\massimo.cpp" -o "C:\Documents and Settings\Daniele\Desktop\programmazione\prove\massimo.exe" -g3 -I"C:\Dev-Cpp\lib\gcc\mingw32\3.4.2\include" -I"C:\Dev-Cpp\include\c++\3.4.2\backward" -I"C:\Dev-Cpp\include\c++\3.4.2\mingw32" -I"C:\Dev-Cpp\include\c++\3.4.2" -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib" -g3
I am not sure what your problem might be. It seems very strange that it would consume 100% of both cores!
The only thing I notice from your log is teh location of your project: C:\Documents and Settings\Daniele\Desktop\programmazione. This path contains spaces which can cause problems with both Dev-C++ and the underlying GNU toolchain. I suggest that you move it to just c:\programmazione\
I believe that a working debugger is an essential programming tool that too many people overlook or regard as too complicated, however to be quite frank Dev-C++'s debugger is almost worst than useless. And for that reason I find myself recommending Microsoft Visual C++ 2008 Express to those who wish to use a debugger effectively. Its debugger is second to none. http://www.microsoft.com/express/vc/
Clifford
thx for the reply, i want to correct an important thing:
Closing and restarting Dev-C++ "fix" the problem, because i no need to reinstall to have a working dev-c++.
i need to use dev-c++ for my university!
ps: scuse my english! :D
I strongly suggest then that you use the MinGW/Insight debugger instead. It can be loosely integrated into Dev-C++ via the Tools->Configure Tools menu. Get it here: http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=82725&release_id=358837
Clifford