News:

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

Main Menu

Help--Huge output file size!

Started by DR.FEXAR, September 12, 2009, 05:11:27 PM

Previous topic - Next topic

DR.FEXAR

Hi
I newbie in c::b
I compiling wxwidgets with mingw only as unicode and download c::b svn 5731 and set c::b with wxwidgets
I writing this sample code and debugging

#include <wx/wx.h>

class wxTestApp : public wxApp
{
   virtual bool OnInit()
   {
      wxFrame * frame= new wxFrame(NULL, wxID_ANY, _("wxTest"));
      SetTopWindow(frame);
      frame->Centre();
      frame->Show();
      return true;
   }
};

IMPLEMENT_APP(wxTestApp);


My output file size is 26 MB??? :shock: :shock: :shock:
please help :? :?

Ceniza

Quote from: DR.FEXAR on September 12, 2009, 05:11:27 PM
My output file size is 26 MB??? :shock: :shock: :shock:
please help :? :?

Please search the forums, as this question has been answered already. Furthermore, it is in no way related to Code::Blocks.

"Large output file size" is the name of the topic with the answer.

DR.FEXAR