When compilation is finished it is usefull to copy the libs to another directory. By doing this you can make several builds (e.g. debug and release).
* So first we create a directory this could be done in %WXWIN%\lib.
* Then we go to the directory %WXWIN%\lib\gcc_dll (could called diffrent when you changed the build options)
* Rename the directory %WXWIN%\lib\gcc_dll to the directory of your choice. (For me it is %WXWIN%\lib\gcc_dllNonUnicode)
NOTE: Make sure everything is removed from the directory %WXWIN%\lib\gcc_dll else you can get trouble when compiling another version.
[/quote]
Whoever wrote that is obviously not aware of the CFG switch for compiling WX. Using this makes the statement above irrelevant.
E.g. compiling WX using:
mingw32-make -f makefile.gcc BUILD=release SHARED=1 MONOLITHIC=1 USE_XRC=1 UNICODE=0 CFG=NonUnicode
Automatically creates the "gcc_dllNonUnicode" folder for you.
With regards, Morten.