The new Release 20.03 is out! You can download binaries for Windows and many major Linux distros here .
Remove "C:\wxWidgets" from the library list where you added it.Tim S.
Check under the project setting by clicking on demo in the left hand pane.Edit: Also, use the scroll down arrow to see if it is below the ones listed in the screen shot for the debug target.Tim S.
Did you check the project instead of the target settings?Edit: Till you post a screen shot of the project settings, I will believe you have failed to check them!Did you check the global compiler linker settings?Tim S.
You need to add the libraries needed to fix the linking errors.Note: The order of libraries matter for some compilers.Tim S.
@echo off cd build/msw title Compile wxWidgets echo Start Compile ... echo --------------------------------------------------------------------- ::echo Clean Env::mingw32-make -f makefile.gcc cleanecho Compile Release Version ::SHARED=0, Static Link Library. SHARED=1, Dynamic Link Library.::MONOLITHIC=0, Multiple Widgets. MONOLITHIC=1, Single Widgets.::UNICODE=0, Not Support Unicode. Unicode=1, Support Unicode.mingw32-make -f makefile.gcc BUILD=release SHARED=0 MONOLITHIC=0 UNICODE=1 .mingw32-make -f makefile.gcc BUILD=release SHARED=1 MONOLITHIC=0 UNICODE=1 echo Compile Debug Versionmingw32-make -f makefile.gcc BUILD=debug SHARED=0 MONOLITHIC=0 UNICODE=1 mingw32-make -f makefile.gcc BUILD=debug SHARED=1 MONOLITHIC=0 UNICODE=1 echo --------------------------------------------------------------------- echo Compile Succeed. pause
-lrpcrt4 -loleaut32 -lole32 -luuid -lwinspool -lwinmm -lshell32 -lcomctl32 -lcomdlg32 -ladvapi32 -lwsock32 -lgdi32 -loleacc
You are likely missing one of these lib statementsCode -lrpcrt4 -loleaut32 -lole32 -luuid -lwinspool -lwinmm -lshell32 -lcomctl32 -lcomdlg32 -ladvapi32 -lwsock32 -lgdi32 -loleaccThe last one tends to match the errors I saw the most.Tim S.