Search found 6 matches

by Krice
Mon Aug 19, 2019 3:47 pm
Forum: Platform Related Issues
Topic: How to compile 3.1.2 for Code::Blocks in OSX 10.14
Replies: 10
Views: 2789

Re: How to compile 3.1.2 for Code::Blocks in OSX 10.14

Package 'hunspell' was missing, but it was easy to install with homebrew (like most other things as well). So after all this Code::Blocks builds and works, more or less.
by Krice
Mon Aug 19, 2019 7:00 am
Forum: Platform Related Issues
Topic: How to compile 3.1.2 for Code::Blocks in OSX 10.14
Replies: 10
Views: 2789

Re: How to compile 3.1.2 for Code::Blocks in OSX 10.14

With 'sudo make install' I got ./bootstrap to work finally, but when I try to run ./configure for Code::Blocks it stops to an error message about some package missing. This was again something to ask in Code::Blocks forums if those guys would be willing to help, which they aren't. So I have to keep ...
by Krice
Sat Aug 17, 2019 12:49 pm
Forum: Platform Related Issues
Topic: How to compile 3.1.2 for Code::Blocks in OSX 10.14
Replies: 10
Views: 2789

Re: How to compile 3.1.2 for Code::Blocks in OSX 10.14

I have asked it in Code::Blocks forums and those guys are already quite mad about it. They say I should 'make install' wxwidgets, but the install instructions of wxwidgets say only 'make'. Which one is it? When is the library actually installed? I can compile and run the example, but I guess it's no...
by Krice
Fri Aug 16, 2019 12:53 pm
Forum: Platform Related Issues
Topic: How to compile 3.1.2 for Code::Blocks in OSX 10.14
Replies: 10
Views: 2789

Re: How to compile 3.1.2 for Code::Blocks in OSX 10.14

It didn't find wx-config, because I thought commands are run with only the name, but it has to be ./wx-config so that was something new. The version returns 3.1.2. I don't have problems with wxWidgets itself, but Code::Blocks (./bootstrap in install) doesn't find it. For example it's trying to find ...
by Krice
Thu Aug 15, 2019 6:35 am
Forum: Platform Related Issues
Topic: How to compile 3.1.2 for Code::Blocks in OSX 10.14
Replies: 10
Views: 2789

Re: How to compile 3.1.2 for Code::Blocks in OSX 10.14

The minimal example builds and runs fine, so the "problem" is in Code::Blocks configure script I think. It wants to use wx-config, but it can't find it. I can't find it either. There is an alias wx-config file in build directory, but it doesn't run. Also, I'm wondering if Code::Blocks requ...
by Krice
Wed Aug 14, 2019 12:59 pm
Forum: Platform Related Issues
Topic: How to compile 3.1.2 for Code::Blocks in OSX 10.14
Replies: 10
Views: 2789

How to compile 3.1.2 for Code::Blocks in OSX 10.14

Wx seems to compile ok with these configure settings, which by the way I found from internet: ../configure --enable-debug --enable-monolithic --with-osx_cocoa --with-macosx-version-min=10.9 I think monolithic is needed for Code::Blocks. Make also appears to work (it's compiling everything), but when...