Advice needed for building for OSX 10.13

Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
Post Reply
fyodor
In need of some credit
In need of some credit
Posts: 1
Joined: Sat Jun 09, 2018 2:34 am

Advice needed for building for OSX 10.13

Post by fyodor »

running ./configure is ok and produces this final output.

Code: Select all

Configured wxWidgets 3.1.1 for `x86_64-apple-darwin17.5.0'

  Which GUI toolkit should wxWidgets use?                 osx_cocoa
  Should wxWidgets be compiled into single library?       no
  Should wxWidgets be linked as a shared library?         yes
  Should wxWidgets support Unicode?                       yes (using wchar_t)
  What level of wxWidgets compatibility should be enabled?
                                       wxWidgets 2.8      no
                                       wxWidgets 3.0      yes
  Which libraries should wxWidgets use?
                                       STL                no
                                       jpeg               builtin
                                       png                builtin
                                       regex              builtin
                                       tiff               builtin
                                       zlib               sys
                                       expat              sys
                                       libmspack          no
                                       sdl                no
However, running make gives me this result.

Code: Select all

MacBook-Pro-2:wxWidgets-3.1.1 fyodor$ make
(if test -f utils/wxrc/Makefile ; then cd utils/wxrc && /Applications/Xcode.app/Contents/Developer/usr/bin/make all ; fi)
make[1]: Nothing to be done for `all'.
I'm not sure where to go or what to do with that output. I'd appreciate any advice to get wxWidgets built.
User avatar
marcelinux
Knows some wx things
Knows some wx things
Posts: 40
Joined: Thu Nov 07, 2013 9:59 pm
Location: Madrid, Spain

Re: Advice needed for building for OSX 10.13

Post by marcelinux »

fyodor wrote:running ./configure is ok and produces this final output.
Is not ./configure but ../configure from build folder.
See https://wiki.wxwidgets.org/Compiling_wx ... (Terminal)
I just need learn a little bit more. Thank you for your help.
Post Reply