User forums > Nightly builds
The 16 January 2010 build (6088) is out.
Pecan:
--- Quote from: yesno on February 12, 2010, 11:40:26 am ---(Maybe OT because it's for rev. 6155 rather than 6088)
If I compile the whole project all is fine like before, no errors but a bunch of warnings, most like
"comparison of unsigned with signed integer".
But if I try to start the application, I get this message from the OS:
"Die Anwendung konnte nicht richtig initialisiert werden (0xc0000005)"
(The application could not be initialized correctly (0xc0000005)),
no matter with or without the plugins.
The downloaded version 6088 (from here) runs fine and my version 5945 (self-compiled) too.
My OS is WinXP SP2, the compiler is MinGW 3.4.5 and the wxWidgets version is 2.8.10 (self-compiled).
Please give me a hint what I should do / where I should search.
Thanks in advance and with kind regards
yesno
PS C::B is the best IDE I've ever seen
--- End quote ---
I also receive the 0xc0000005 (on Windows7) when starting CodeBlocks when compiled with mingw 3.4.5. Updating mingw to a 4+ version solved the problem.
Be sure to recompile wxWidgets before re-compiling CodeBlocks with a new mingw version.
critic:
Can you make automatic addition of closing brace (`}`) only after pressing Enter, because in the following situation I need to delete it:
Before modification of code:
--- Code: ---if(something)
doSomething();
--- End code ---
After modification of code:
--- Code: ---if(something)
{// I printer opening brace and now I need to delete closing brace - because I want to use doSomething(); function in braces
} doSomething();
--- End code ---
Though I need the next:
--- Code: ---if(something)
{// I pressed enter after `if(something)` and printed opening brace only (editor doesn't know about doSomething(); function - is it must be in braces or no - I will specify it later)
doSomething();
--- End code ---
The closing brace I will print when needed (i.e. I will show the editor where it is required to place).
If I press Enter after `{` the closing brace can appear:
--- Code: ---if(something)
{
// I pressed enter after opening brace (i.e. I don't want doSomething(); function to be in braces)
}
doSomething();
--- End code ---
And else - if I printed opening brace on the same line with doSomething() function and then pressed enter the following will be correct:
--- Code: ---if(something)
{
doSomething();
}
--- End code ---
About classes: closing brace of classes and structs must be followed with `;`. Not it isn't.
blueshake:
@critic
I can make a patch for this.But I am working for some cc bugs.Not sure when I can finish it. :D
critic:
@blueshake
Ok. Thanks for response. I'm a beta tester and only point on some defects in my opinion.
Else one defect in autocompletion of braces:
When I printing closing `"` (i.e. opening `"` already exists) I get `"""` instead of `""`.
Thanks for your work.
critic:
I almost always use Custom Makefile option enabled (for Qt projects) and when I rebuild project the following take place:
--- Code: ---
-------------- Clean: Debug in ExceptionViewer ---------------
mingw32-make.exe -f Makefile.Release clean
mingw32-make.exe -f Makefile.Debug clean
mingw32-make.exe -f Makefile.Debug
mingw32-make.exe[1]: Entering directory `D:/dev/projects/vvts3/arm/ExceptionViewer'
del obj\Debug\moc\moc_exception_viewer.cpp
mingw32-make.exe[1]: Entering directory `D:/dev/projects/vvts3/arm/ExceptionViewer'
del obj\Debug\moc\moc_exception_viewer.cpp
del obj\Debug\uic\ui_except_dlg.h
del obj\Debug\except_dlg.o obj\Debug\exception_viewer.o obj\Debug\main.o obj\Debug\moc_exception_viewer.o
del obj\Debug\uic\ui_except_dlg.h
mingw32-make.exe[1]: Leaving directory `D:/dev/projects/vvts3/arm/ExceptionViewer'
del obj\Debug\except_dlg.o obj\Debug\exception_viewer.o obj\Debug\main.o obj\Debug\moc_exception_viewer.o
mingw32-make.exe[1]: Entering directory `D:/dev/projects/vvts3/arm/ExceptionViewer'
d:\bin\dev\libs\qt\4.5.0\bin\uic.exe ..\..\..\..\our_libs\arm_kit\src\arm_kit\except_dlg.ui -o obj\Debug\uic\ui_except_dlg.h
g++ -c -Wall -g -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_THREAD_SUPPORT -I"d:\bin\dev\libs\qt\4.5.0\include" -I"..\..\..\..\our_libs\arm_kit\src" -I"d:\bin\dev\libs\Qt\4.5.0\include" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtCore" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtGui" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtXml" -I"d:\bin\dev\libs\qt\4.5.0\include\ActiveQt" -I"obj\Debug\moc" -I"obj\Debug\uic" -I"d:\bin\dev\libs\qt\4.5.0\mkspecs\default" -o obj\Debug\except_dlg.o ..\..\..\..\our_libs\arm_kit\src\arm_kit\except_dlg.cpp
mingw32-make.exe[1]: Leaving directory `D:/dev/projects/vvts3/arm/ExceptionViewer'
g++ -c -Wall -g -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_THREAD_SUPPORT -I"d:\bin\dev\libs\qt\4.5.0\include" -I"..\..\..\..\our_libs\arm_kit\src" -I"d:\bin\dev\libs\Qt\4.5.0\include" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtCore" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtGui" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtXml" -I"d:\bin\dev\libs\qt\4.5.0\include\ActiveQt" -I"obj\Debug\moc" -I"obj\Debug\uic" -I"d:\bin\dev\libs\qt\4.5.0\mkspecs\default" -o obj\Debug\exception_viewer.o exception_viewer.cpp
g++ -c -Wall -g -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_THREAD_SUPPORT -I"d:\bin\dev\libs\qt\4.5.0\include" -I"..\..\..\..\our_libs\arm_kit\src" -I"d:\bin\dev\libs\Qt\4.5.0\include" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtCore" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtGui" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtXml" -I"d:\bin\dev\libs\qt\4.5.0\include\ActiveQt" -I"obj\Debug\moc" -I"obj\Debug\uic" -I"d:\bin\dev\libs\qt\4.5.0\mkspecs\default" -o obj\Debug\main.o main.cpp
D:/bin/dev/libs/qt/4.5.0/bin\moc.exe -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_THREAD_SUPPORT -I"d:\bin\dev\libs\qt\4.5.0\include" -I"..\..\..\..\our_libs\arm_kit\src" -I"d:\bin\dev\libs\Qt\4.5.0\include" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtCore" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtGui" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtXml" -I"d:\bin\dev\libs\qt\4.5.0\include\ActiveQt" -I"obj\Debug\moc" -I"obj\Debug\uic" -I"d:\bin\dev\libs\qt\4.5.0\mkspecs\default" -D__GNUC__ -DWIN32 exception_viewer.h -o obj\Debug\moc\moc_exception_viewer.cpp
g++ -c -Wall -g -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_THREAD_SUPPORT -I"d:\bin\dev\libs\qt\4.5.0\include" -I"..\..\..\..\our_libs\arm_kit\src" -I"d:\bin\dev\libs\Qt\4.5.0\include" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtCore" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtGui" -I"d:\bin\dev\libs\Qt\4.5.0\include\QtXml" -I"d:\bin\dev\libs\qt\4.5.0\include\ActiveQt" -I"obj\Debug\moc" -I"obj\Debug\uic" -I"d:\bin\dev\libs\qt\4.5.0\mkspecs\default" -o obj\Debug\moc_exception_viewer.o obj\Debug\moc\moc_exception_viewer.cpp
g++ -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -Wl,-subsystem,console -mthreads -Wl -o bin\Debug\ExceptionViewer.exe obj/Debug/except_dlg.o obj/Debug/exception_viewer.o obj/Debug/main.o obj/Debug/moc_exception_viewer.o -L"d:\bin\dev\libs\qt\4.5.0\lib" -LD:\bin\dev\libs\Qt\4.5.0\lib -lQtCore4 -lQtGui4 -lQtXml4
mingw32-make.exe[1]: Leaving directory `D:/dev/projects/vvts3/arm/ExceptionViewer'
:\dev\projects\vvts3\arm\ExceptionViewer\obj\Debug\moc\moc_exception_viewer.cpp
:\dev\projects\vvts3\arm\ExceptionViewer\obj\Debug\uic\ui_except_dlg.h
:\dev\projects\vvts3\arm\ExceptionViewer\obj\Debug\except_dlg.o
exception_viewer.cpp: In member function `void arm::ExceptionViewer::onReadyRead()':
exception_viewer.cpp:39: warning: unused variable 'quitter'
Cleaned "ExceptionViewer - Debug"
-------------- Build: Debug in ExceptionViewer ---------------
Target is up to date.
Nothing to be done.
--- End code ---
Build log appears in the `clean` section. Is it a bug? And else, C::B is freezed when rebuilding from begining of `clean` section till begining of `build` section, that is all time of rebuild process. When it became normal (not freezed) all log text appears and in build section - `nothing to be done`.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version