News:

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

Main Menu

feature request: different colors for C-style and C++-style comments

Started by vix, January 13, 2010, 08:18:09 AM

Previous topic - Next topic

vix

I've been able to recompile wxWidgets without errors but I had to compile a debug build before being able to build a release one.
Then I've compiled C::B without problems

ollydbg

Quote from: vix on January 15, 2010, 01:22:31 PM
I've been able to recompile wxWidgets without errors but I had to compile a debug build before being able to build a release one.
Strange. You can just build a release version of wxWidgets library. using these command:
mingw32-make -f makefile.gcc  MONOLITHIC=1 SHARED=1 UNICODE=1 BUILD=release
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

vix

QuoteStrange. You can just build a release version of wxWidgets library. using these command:
mingw32-make -f makefile.gcc  MONOLITHIC=1 SHARED=1 UNICODE=1 BUILD=release
Yes, with MinGW this worked, but with TDM-GCC I have some strange "syntax errors" while creating libwxmsw28ud.a library in release build...

ollydbg

Quote from: vix on January 15, 2010, 01:41:32 PM
Yes, with MinGW this worked, but with TDM-GCC I have some strange "syntax errors" while creating libwxmsw28ud.a library in release build...
TDM GCC 4.4.1-2 works here. :D
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.