well, looks like a bug in the installer not with wxWidgets...goosey wrote:wxWidgets requires about 2,5 gigabytes of disk space
Will do it from scratch:
download the wxWidgets sources from here:
http://prdownloads.sourceforge.net/wxwi ... -Setup.exe (installer is about 12MB)
install it under C:\wxWidgets-2.8.7 or something similar, as long you install it on a path with no space in it
Once extracted, you will need to compile it (assuming wxWidgets was installed under C:\wxWidgets-2.8.7):
Code: Select all
cd C:\wxWidgets-2.8.7\build\msw
mingw32-make -f makefile.gcc BUILD=release UNICODE=1 MONOLITHIC=1 SHARED=1
EDIT: when I come to think about it, it make sense that the installer requires that much, since it provides all builds configurations available for wxWidgets (Unicode, ASNI, multi-lib, monolithic, debug,release) - so it only make sense why it is that big, I will contact the maintainer of wxPack (who recently joined CodeLite team) to think of a better solution (maybe providing several installers per-configuration)
Eran