Search found 135 matches

by ouch67
Tue Jul 12, 2011 8:49 pm
Forum: C++ Development
Topic: Cannot checkout svn branch 2.9
Replies: 2
Views: 1051

Re: Cannot checkout svn branch 2.9

yeah, there is a problem with their repositories.

Just go to build/.svn and rename or delete dir-prop-base.

then everything should work again though.
by ouch67
Tue Jul 12, 2011 8:44 pm
Forum: Compiler / Linking / IDE Related
Topic: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please hel
Replies: 34
Views: 12776

Re: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please

all that is saying is that you can specify UNICODE=0 if you want, or you can look at wxWidgets build configurations for more options. Note that in the new 2.9 version of wxWidgets everything is unicode, so this option is not even needed. but you can extract wxWidgets wherever you want. For example I...
by ouch67
Tue Jul 12, 2011 8:02 pm
Forum: Compiler / Linking / IDE Related
Topic: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please hel
Replies: 34
Views: 12776

Re: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please

well I don't use codelite so I can't help you there. But in codeblocks you can follow this tutorial: http://wiki.wxwidgets.org/Compiling_wxWidgets_with_MinGW IF you want to build wxwidgets yourself. sounds like codelite already has done that for you though. after you have your wxWidgets libraries th...
by ouch67
Tue Jul 12, 2011 7:20 pm
Forum: Compiler / Linking / IDE Related
Topic: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please hel
Replies: 34
Views: 12776

Re: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please

I used TDM mingw and my project directory has spaces. I think it's more of a problem that codelite doesn't know where wxWidgets is at. Note I use codeblocks and you specify this in the WX global variable if you want to try codeblocks again. you can use the wxwidgets pre-built libraries that come wit...
by ouch67
Tue Jul 12, 2011 6:14 pm
Forum: Compiler / Linking / IDE Related
Topic: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please hel
Replies: 34
Views: 12776

Re: WxWidgets 2.8 and Code::Blocks 10.5 not working?? Please

you should do as it says: Please use the --prefix flag (as in wx-config --prefix=C:\wxWidgets) or set the environment variable WXWIN (as in WXWIN=C:\wxWidgets) to specify where is your installation of wxWidgets. basically it can't find any part of wxWidgets and it's asking you to specify where it is...
by ouch67
Wed Jul 06, 2011 9:03 pm
Forum: Announcements and Discoveries
Topic: ANN: wxSQLite3 2.1.2 released
Replies: 1
Views: 1766

Re: ANN: wxSQLite3 2.1.2 released

Thanks! SVN is downloading the new stuff now. This is probably my most used library next to wxWidgets itself. ;)
by ouch67
Wed Jul 06, 2011 3:42 pm
Forum: Platform Related Issues
Topic: Windows 7 64bit libgcc_s_sjlj-1.dll missing error
Replies: 3
Views: 4601

Re: Windows 7 64bit libgcc_s_sjlj-1.dll missing error

A quick search reveals that pearl actually is compiled with gcc/mingw. It's pearls requirement for the extra dll, not wxWidgets. I imagine there is an compiler option or something to make it static so you don't need extra files. I don't use pearl though so you might want to try a different forum on ...
by ouch67
Wed Jul 06, 2011 3:34 pm
Forum: Compiler / Linking / IDE Related
Topic: How to do a release build with wxWidgets?
Replies: 8
Views: 3087

Re: How to do a release build with wxWidgets?

You shouldn't have to change the libraries you link at all. Just change the search directory and add/remove that define. If your Link Libraries settings contains files with extensions on them, and/or paths your doing it wrong. you just need the file specified without that stuff. Use the Search Direc...
by ouch67
Wed Jul 06, 2011 3:14 pm
Forum: wxDev-C++
Topic: sizers and panel
Replies: 11
Views: 11481

Re: sizers and panel

The growable functions are part of flexgridsizer. Because with that one the grid doesn't try to equalize the size of each field. If you want something to dynamically change size then this sizer is pretty much what you have to use. The layout your trying to achieve can be done with only 2 of these si...
by ouch67
Tue Jul 05, 2011 7:52 pm
Forum: wxDev-C++
Topic: sizers and panel
Replies: 11
Views: 11481

Re: sizers and panel

flexgrid sizer's is pretty much all I ever use because you have more control over them.

you can then make your grid change with window size with the growablecols and growablerows functions.
by ouch67
Tue Jul 05, 2011 7:28 pm
Forum: Compiler / Linking / IDE Related
Topic: How to do a release build with wxWidgets?
Replies: 8
Views: 3087

Re: How to do a release build with wxWidgets?

In C::B if you set up everything correctly, you just have to change the lib search directories to the whatever link type that your trying to do and change add/remove the WXUSINGDLL define from the compiler settings and that's it. It's quite simple really. You can set up multiple build targets for th...
by ouch67
Fri Jun 24, 2011 7:43 pm
Forum: Compiler / Linking / IDE Related
Topic: mingw32-make.exe: *** [..\..\lib\gcc_dll\\wxmsw291u_gcc_cust
Replies: 16
Views: 11895

Re: mingw32-make.exe: *** [..\..\lib\gcc_dll\\wxmsw291u_gcc_

and there is your problem. you have not compiled wxwidgets as a monolithic dll even though you set up codeblocks to expect a monolithic dll.

and yes monolithic is easier to set up as you only link to one library.
by ouch67
Fri Jun 24, 2011 6:54 pm
Forum: Compiler / Linking / IDE Related
Topic: mingw32-make.exe: *** [..\..\lib\gcc_dll\\wxmsw291u_gcc_cust
Replies: 16
Views: 11895

Re: mingw32-make.exe: *** [..\..\lib\gcc_dll\\wxmsw291u_gcc_

your linking wxmsw29ud instead of libwxmsw29ud. also the .a files in the gcc_dll folders are just headers, the dll files are the actual libraries. the .a files in the gcc_lib folders are the actual libraries. but just so your aware that it appears your trying to set up your project to use a non-mono...
by ouch67
Fri Jun 24, 2011 3:51 pm
Forum: Compiler / Linking / IDE Related
Topic: mingw32-make.exe: *** [..\..\lib\gcc_dll\\wxmsw291u_gcc_cust
Replies: 16
Views: 11895

Re: mingw32-make.exe: *** [..\..\lib\gcc_dll\\wxmsw291u_gcc_

it's not really an C:B issue... just that this person is specifying libs wrong for the compiler. you want to add the lib name without an extension or path. so your line: C:\wxWidgets-2.9.1\lib\gcc_dll\libwxbase29ud.a is totally wrong you just need it like: libwxbase29ud you put the path to that libr...
by ouch67
Thu Jun 23, 2011 9:31 pm
Forum: C++ Development
Topic: How to place a wxGauge in a wxListCtrl column?
Replies: 3
Views: 1291

Re: How to place a wxGauge in a wxListCtrl column?

You should look at the "dataview" sample to try it out.