Golly 5.0
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Golly 5.0
Golly 5.0 is now available from sourceforge:
https://sourceforge.net/projects/golly/ ... golly-5.0/
Apart from a different version number and some minor changes to the docs, 5.0 is the same as 5.0b1.
https://sourceforge.net/projects/golly/ ... golly-5.0/
Apart from a different version number and some minor changes to the docs, 5.0 is the same as 5.0b1.
Re: Golly 5.0
Where are rule files (not the ones that are provided, but the ones that you yourself paste into the program) located in Linux? Searching from root somehow hasn't turned up anything relevant.
Parity Replicator Collection v1.6 is now live - please send all relevant discoveries here.
Re: Golly 5.0
Look in Preferences > Control -- Golly displays the relevant path there for your specific system.muzik wrote: October 27th, 2025, 3:57 pm Where are rule files (not the ones that are provided, but the ones that you yourself paste into the program) located in Linux? Searching from root somehow hasn't turned up anything relevant.
See the "File Formats" Help document under "How Golly finds .rule files". (You have to have that file open in Golly for the "your rules folder" links to work, though.)
Re: Golly 5.0
Golly no longer accepts rulestring without slashes, for example,
. Is that intended?
Code: Select all
b2cik3-cijn4cknqr5-anqy6ekn7s1c2acn3-aijq4cjktw5ejny6aen7c8My sandbox | All my engineered replicators | BsKngt | TNT
Asperger, ISTP, using a Dvorak keyboard.
I love my new school life.
Asperger, ISTP, using a Dvorak keyboard.
I love my new school life.
Re: Golly 5.0
No. I've committed a fix. Thanks for the report.islptng wrote: November 6th, 2025, 8:56 am Golly no longer accepts rulestring without slashes. Is that intended?
LifeViewer https://lazyslug.com/lifeviewer LifeViewer Pro https://lazyslug.com/lifeviewer/pro
- LaundryPizza03
- Posts: 2623
- Joined: December 15th, 2017, 12:05 am
- Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"
Re: Golly 5.0
INT strings of this type, such as "b012aci3-cny4-ikny5cnr6-an7e8s012-en3-cjqr4-cjnr5aqr6cek" are still not recognized.
Code: Select all
x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
Re: Golly 5.0
You'll need to build a new version of Golly to get the fix.LaundryPizza03 wrote: January 7th, 2026, 7:32 am INT strings of this type, such as "b012aci3-cny4-ikny5cnr6-an7e8s012-en3-cjqr4-cjnr5aqr6cek" are still not recognized.
LifeViewer https://lazyslug.com/lifeviewer LifeViewer Pro https://lazyslug.com/lifeviewer/pro
- LaundryPizza03
- Posts: 2623
- Joined: December 15th, 2017, 12:05 am
- Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"
Re: Golly 5.0
How to do that?rowett wrote: January 7th, 2026, 9:09 amYou'll need to build a new version of Golly to get the fix.LaundryPizza03 wrote: January 7th, 2026, 7:32 am INT strings of this type, such as "b012aci3-cny4-ikny5cnr6-an7e8s012-en3-cjqr4-cjnr5aqr6cek" are still not recognized.
Code: Select all
x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
Re: Golly 5.0
Which platform are you on? (Windows, Linux, MacOs)
LifeViewer https://lazyslug.com/lifeviewer LifeViewer Pro https://lazyslug.com/lifeviewer/pro
- LaundryPizza03
- Posts: 2623
- Joined: December 15th, 2017, 12:05 am
- Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"
Re: Golly 5.0
I am on macOS.
Code: Select all
x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
Re: Golly 5.0
LifeViewer https://lazyslug.com/lifeviewer LifeViewer Pro https://lazyslug.com/lifeviewer/pro
- LaundryPizza03
- Posts: 2623
- Joined: December 15th, 2017, 12:05 am
- Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"
Re: Golly 5.0
This error occurred while building Golly from source:
Code: Select all
In file included from wxutils.cpp:4:
In file included from ~/wxWidgets-3.3.1/include/wx/wxprec.h:11:
In file included from ~/wxWidgets-3.3.1/include/wx/defs.h:45:
~/wxWidgets-3.3.1/include/wx/platform.h:159:10: fatal error: 'wx/setup.h' file not found
159 | #include "wx/setup.h"
| ^~~~~~~~~~~~
1 error generated.
make: *** [ObjOSX/wxutils.o] Error 1
Code: Select all
x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Re: Golly 5.0
I had no problems building Golly using wxWidgets 3.3.1. When you copied gui-wx/makefile-mac to makefile did you edit the latter and change WX_RELEASE and WX_DIR? The lines should look like this:LaundryPizza03 wrote: January 8th, 2026, 5:35 pm This error occurred while building Golly from source...
Code: Select all
WX_RELEASE = 3.3
WX_DIR = /your-full-path-to/wxWidgets-3.3.1
- LaundryPizza03
- Posts: 2623
- Joined: December 15th, 2017, 12:05 am
- Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"
Re: Golly 5.0
You're right, I put "WX_RELEASE = 3.3.1" by mistake.Andrew wrote: January 8th, 2026, 9:55 pmI had no problems building Golly using wxWidgets 3.3.1. When you copied gui-wx/makefile-mac to makefile did you edit the latter and change WX_RELEASE and WX_DIR? The lines should look like this:LaundryPizza03 wrote: January 8th, 2026, 5:35 pm This error occurred while building Golly from source...
Code: Select all
WX_RELEASE = 3.3 WX_DIR = /your-full-path-to/wxWidgets-3.3.1
EDIT:
Code: Select all
ld: framework 'AGL' not found
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [app.bin] Error 1
Code: Select all
x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Re: Golly 5.0
Just remove "-framework AGL" from the EXTRALIBS_GUI setting in makefile (it's no longer needed for Golly). I'll remove it from makefile-mac in the source repo.LaundryPizza03 wrote: January 8th, 2026, 10:10 pm I'm on macOS 15.7.3. If I updated to macOS 26, what should I do, since AGL is not supported on that platform?
- LaundryPizza03
- Posts: 2623
- Joined: December 15th, 2017, 12:05 am
- Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"
Re: Golly 5.0
This happened:Andrew wrote: January 9th, 2026, 2:17 amJust remove "-framework AGL" from the EXTRALIBS_GUI setting in makefile (it's no longer needed for Golly). I'll remove it from makefile-mac in the source repo.LaundryPizza03 wrote: January 8th, 2026, 10:10 pm I'm on macOS 15.7.3. If I updated to macOS 26, what should I do, since AGL is not supported on that platform?
Code: Select all
...
"_wxTreeCtrlNameStr", referenced from:
MainFrame::CreateDirControl() in wxmain.o
ld: symbol(s) not found for architecture x86_64
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [app.bin] Error 1
Code: Select all
x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Re: Golly 5.0
This looks like wxWidgets was not built correctly. If you have a Silicon Mac (ie. with an M1/2/3/4 chip) then one simple change to try would be to edit your gui-wx/makefile and delete the 4 occurrences of "-arch x86_64". Then do a "make clean" and make again.LaundryPizza03 wrote: January 9th, 2026, 2:54 am This happened:Code: Select all
... "_wxTreeCtrlNameStr", referenced from: MainFrame::CreateDirControl() in wxmain.o ld: symbol(s) not found for architecture x86_64 clang++: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [app.bin] Error 1
If that fails then all I can suggest is go back to the very start and download wxWidgets 3.2.9 (the latest stable release, rather than 3.3.1). Follow the steps in docs/Build.html carefully and this time keep the Terminal output so you can send it to me if things go wrong. Assuming no errors, cd to gui-wx and rebuild Golly using these changes in your makefile:
Code: Select all
WX_RELEASE = 3.2
WX_DIR = /your-full-path-to/wxWidgets-3.2.9
- LaundryPizza03
- Posts: 2623
- Joined: December 15th, 2017, 12:05 am
- Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"
Re: Golly 5.0
On M4 Pro, do I also modify the command to build wxWidgets?Andrew wrote: January 9th, 2026, 9:05 pmThis looks like wxWidgets was not built correctly. If you have a Silicon Mac (ie. with an M1/2/3/4 chip) then one simple change to try would be to edit your gui-wx/makefile and delete the 4 occurrences of "-arch x86_64". Then do a "make clean" and make again.LaundryPizza03 wrote: January 9th, 2026, 2:54 am This happened:Code: Select all
... "_wxTreeCtrlNameStr", referenced from: MainFrame::CreateDirControl() in wxmain.o ld: symbol(s) not found for architecture x86_64 clang++: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [app.bin] Error 1
If that fails then all I can suggest is go back to the very start and download wxWidgets 3.2.9 (the latest stable release, rather than 3.3.1). Follow the steps in docs/Build.html carefully and this time keep the Terminal output so you can send it to me if things go wrong. Assuming no errors, cd to gui-wx and rebuild Golly using these changes in your makefile:
Then do a "make clean" and make. Keep the Terminal output so you can send it to me if an error occurs.Code: Select all
WX_RELEASE = 3.2 WX_DIR = /your-full-path-to/wxWidgets-3.2.9
EDIT: This worked.
Code: Select all
(native) gabefrohaug@MacBook-Pro gui-wx % cd ~/wxWidgets-3.3.1
(native) gabefrohaug@MacBook-Pro wxWidgets-3.3.1 % rm -rf build-osx; mkdir build-osx; cd build-osx
(native) gabefrohaug@MacBook-Pro build-osx % ../configure --with-osx_cocoa --disable-shared --disable-sys-libs --with-macosx-version-min=10.11 --enable-universal_binary=arm64; make
checking build system type... aarch64-apple-darwin24.6.0
checking host system type... aarch64-apple-darwin24.6.0
checking for toolkit... osx_cocoa
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether we are using the Intel C compiler... no
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking whether gcc needs -traditional... no
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether we are using the Intel C++ compiler... no
checking whether we are using the IBM xlC C++ compiler... no
checking whether g++ supports C++11 features by default... yes
checking for ar... ar
checking for architectures to use in universal binary... arm64
checking if C compiler (gcc -mmacosx-version-min=10.11) works with SDK/version options... yes
checking if C++ compiler (g++ -mmacosx-version-min=10.11) works with SDK/version options... yes
checking if CoreFoundation/CFBase.h is usable... yes
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for langinfo.h... yes
checking for wchar.h... yes
checking for sys/select.h... yes
checking for cxxabi.h... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking size of short... 2
checking size of void *... 8
checking size of int... 4
checking size of long... 8
checking size of size_t... 8
checking size of long long... 8
checking size of wchar_t... 4
checking for va_copy... yes
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking if large file support is available... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking whether byte ordering is bigendian... no
checking for __sync_xxx_and_fetch builtins... yes
checking for libraries directories... /usr/lib
checking for cos... yes
checking for floor... yes
checking if floating point functions link without -lm... yes
checking for pkg-config... /opt/homebrew/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether pcre submodule exists... yes
checking whether zlib.h file exists... yes
checking whether png.c file exists... yes
checking whether jpeglib.h file exists... yes
checking whether webp_dec.c file exists... yes
checking whether tiff.h file exists... yes
checking whether expat.h file exists... yes
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking for libcurl... yes
checking for X11/Xlib.h... no
checking for X11/XKBlib.h... no
checking for ssize_t... yes
checking if size_t is unsigned int... no
checking if size_t is unsigned long... yes
checking if wchar_t is separate type... yes
checking for pw_gecos in struct passwd... yes
checking for wcslen... yes
checking for wcsftime... yes
checking for mbstate_t... yes
checking for wcsrtombs... yes
checking for snprintf... yes
checking for vsnprintf... yes
checking for vsscanf... yes
checking if vsnprintf declaration is broken... no
checking if snprintf supports positional arguments... yes
checking if vsscanf() declaration is broken... no
checking for putws... no
checking for fputws... yes
checking for wprintf... yes
checking for vswprintf... yes
checking for vswscanf... yes
checking for _vsnwprintf... no
checking for fsync... yes
checking for iconv... yes
checking if iconv needs const... no
checking for sigaction... yes
checking for backtrace()... yes
checking for library containing backtrace... none required
checking for __cxa_demangle() in <cxxabi.h>... yes
checking for mkstemp... yes
checking for statvfs... yes
checking for statvfs argument type... struct statvfs
checking for fcntl... yes
checking for setenv... yes
checking for unsetenv... yes
checking for uname... yes
checking for strtok_r... yes
checking for inet_addr... yes
checking for inet_aton... yes
checking for fdopen... yes
checking for sysconf... yes
checking for getpwuid_r... yes
checking for getgrgid_r... yes
checking for the pthreads library -lpthread... yes
checking if more special flags are required for pthreads... no
checking for pthread_setconcurrency... yes
checking for pthread_cleanup_push/pop... yes
checking for sched.h... yes
checking for sched_yield... yes
checking for pthread_attr_getschedpolicy... yes
checking for pthread_attr_setschedparam... yes
checking for sched_get_priority_max... yes
checking for pthread_cancel... yes
checking for pthread_mutex_timedlock... no
configure: WARNING: wxMutex::LockTimeout() will not work
checking for pthread_attr_setstacksize... yes
checking for pthread_mutexattr_t... yes
checking for pthread_mutexattr_settype declaration... yes
checking for abi::__forced_unwind() in <cxxabi.h>... no
checking for localtime_r... yes
checking for gmtime_r... yes
checking how many arguments gethostbyname_r() takes... can't tell
checking for gethostbyname... yes
checking how many arguments getservbyname_r() takes... no
checking for getservbyname... yes
checking for dlopen... yes
checking for dladdr... yes
checking for dl_iterate_phdr... no
checking whether inotify is usable... no
checking for sys/event.h... yes
checking for SNDCTL_DSP_SPEED in sys/soundcard.h... no
checking xlocale.h usability... yes
checking xlocale.h presence... yes
checking for xlocale.h... yes
checking for locale_t... yes
checking for sys/epoll.h... no
configure: WARNING: sys/epoll.h not available, wxEpollDispatcher disabled
checking for gettimeofday... yes
checking whether gettimeofday takes two arguments... yes
checking for timezone variable in <time.h>... timezone
checking for localtime... yes
checking for tm_gmtoff in struct tm... yes
checking for _NL_TIME_FIRST_WEEKDAY in langinfo.h... no
checking for setpriority... yes
checking for socket... yes
checking what is the type of the third argument of getsockname... socklen_t
checking what is the type of the fifth argument of getsockopt... socklen_t
checking whether we have sockaddr_in6... yes
configure: WARNING: Dialup manager not supported on this platform... disabled
checking for python... /opt/anaconda3/envs/native/bin/python
checking if AVKit is available... yes
checking CXXWARNINGS for gcc -Woverloaded-virtual... -Woverloaded-virtual
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking whether ln -s works... yes
checking whether make sets $(MAKE)... yes
checking for ar... (cached) ar
checking for strip... strip
checking for nm... nm
checking if make is GNU make... yes
checking for dependency tracking method... gcc
checking whether make sets $(MAKE)... (cached) yes
checking whether catch2/catch.hpp exists... yes
=== configuring in 3rdparty/pcre (/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre)
configure: running /bin/sh ../../../3rdparty/pcre/configure '--prefix=/usr/local' --disable-option-checking '--with-osx_cocoa' '--disable-shared' '--disable-sys-libs' '--with-macosx-version-min=10.11' '--enable-universal_binary=arm64' '--disable-pcre2-8' '--enable-pcre2-32' '--srcdir=../../../3rdparty/pcre' --cache-file=
checking for a BSD-compatible install... /usr/bin/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 2
checking whether build environment is sane... yes
checking for a race-free mkdir -p... mkdir -p
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... gcc -mmacosx-version-min=10.11
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc -mmacosx-version-min=10.11 accepts -g... yes
checking for gcc -mmacosx-version-min=10.11 option to enable C11 features... none needed
checking whether gcc -mmacosx-version-min=10.11 understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of gcc -mmacosx-version-min=10.11... gcc3
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for ar... ar
checking the archiver (ar) interface... ar
checking for int64_t... yes
checking build system type... aarch64-apple-darwin24.6.0
checking host system type... aarch64-apple-darwin24.6.0
checking how to print strings... printf
checking for a sed that does not truncate output... /opt/homebrew/bin/gsed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc -mmacosx-version-min=10.11... /Library/Developer/CommandLineTools/usr/bin/ld
checking if the linker (/Library/Developer/CommandLineTools/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 786432
checking how to convert aarch64-apple-darwin24.6.0 file names to aarch64-apple-darwin24.6.0 format... func_convert_file_noop
checking how to convert aarch64-apple-darwin24.6.0 file names to toolchain format... func_convert_file_noop
checking for /Library/Developer/CommandLineTools/usr/bin/ld option to reload object files... -r
checking for file... file
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ranlib... ranlib
checking for archiver @FILE support... no
checking for strip... strip
checking command to parse /usr/bin/nm -B output from gcc -mmacosx-version-min=10.11 object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... ld: warning: -single_module is obsolete
no
checking for -no_fixup_chains linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc -mmacosx-version-min=10.11 supports -fno-rtti -fno-exceptions... yes
checking for gcc -mmacosx-version-min=10.11 option to produce PIC... -fno-common -DPIC
checking if gcc -mmacosx-version-min=10.11 PIC flag -fno-common -DPIC works... yes
checking if gcc -mmacosx-version-min=10.11 static flag -static works... no
checking if gcc -mmacosx-version-min=10.11 supports -c -o file.o... yes
checking if gcc -mmacosx-version-min=10.11 supports -c -o file.o... (cached) yes
checking whether the gcc -mmacosx-version-min=10.11 linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin24.6.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether ln -s works... yes
checking for gcc -mmacosx-version-min=10.11 option to enable large file support... none needed
checking whether the -Werror option is usable... yes
checking for GCC compatible visibility declarations... yes
checking for __attribute__((uninitialized))... yes
checking for __assume()... no
checking for __builtin_mul_overflow()... yes
checking for __builtin_unreachable()... yes
checking for assert.h... yes
checking for limits.h... yes
checking for sys/types.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking for dirent.h... yes
checking for windows.h... no
checking for sys/wait.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for bcopy... yes
checking for memfd_create... no
checking for memmove... yes
checking for mkostemp... yes
checking for secure_getenv... no
checking for strerror... yes
checking for realpath... yes
checking for zlib.h... yes
checking for gzopen in -lz... yes
checking for bzlib.h... yes
checking for libbz2... yes
checking whether Intel CET is enabled... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libpcre2-8.pc
config.status: creating libpcre2-16.pc
config.status: creating libpcre2-32.pc
config.status: creating libpcre2-posix.pc
config.status: creating pcre2-config
config.status: creating src/pcre2.h
config.status: creating src/config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing script-chmod commands
config.status: executing delete-old-chartables commands
pcre2-10.45 configuration summary:
Install prefix ..................... : /usr/local
C preprocessor ..................... : gcc -E -mmacosx-version-min=10.11
C compiler ......................... : gcc -mmacosx-version-min=10.11
Linker ............................. : /Library/Developer/CommandLineTools/usr/bin/ld
C preprocessor flags ............... :
C compiler flags ................... : -fvisibility=hidden
Linker flags ....................... :
Extra libraries .................... :
Build 8-bit pcre2 library .......... : no
Build 16-bit pcre2 library ......... : no
Build 32-bit pcre2 library ......... : yes
Include debugging code ............. : no
Enable JIT compiling support ....... : no
Use SELinux allocator in JIT ....... : unsupported
Enable Unicode support ............. : yes
Newline char/sequence .............. : lf
\R matches only ANYCRLF ............ : no
\C is disabled ..................... : no
EBCDIC coding ...................... : no
EBCDIC code for NL ................. : n/a
Rebuild char tables ................ : no
Internal link size ................. : 2
Maximum variable lookbehind ........ : 255
Nested parentheses limit ........... : 250
Heap limit ......................... : 20000000 kibibytes
Match limit ........................ : 10000000
Match depth limit .................. : MATCH_LIMIT
Build shared libs .................. : no
Build static libs .................. : yes
Use JIT in pcre2grep ............... : no
Enable callouts in pcre2grep ....... : yes
Enable fork in pcre2grep callouts .. : yes
Initial buffer size for pcre2grep .. : 20480
Maximum buffer size for pcre2grep .. : 1048576
Link pcre2grep with libz ........... : no
Link pcre2grep with libbz2 ......... : no
Link pcre2test with libedit ........ : no
Link pcre2test with libreadline .... : no
Valgrind support ................... : no
Code coverage ...................... : no
Fuzzer support ..................... : no
Differential fuzzer support ........ : no
Use %zu and %td .................... : auto
=== configuring in src/tiff (/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff)
configure: running /bin/sh ../../../src/tiff/configure '--prefix=/usr/local' --disable-option-checking '--with-osx_cocoa' '--disable-shared' '--disable-sys-libs' '--with-macosx-version-min=10.11' '--enable-universal_binary=arm64' '--disable-jbig' '--disable-lerc' '--disable-libdeflate' '--disable-webp' '--disable-zstd' '--disable-lzma' '--enable-jpeg' '--srcdir=../../../src/tiff' --cache-file=
checking build system type... aarch64-apple-darwin24.6.0
checking host system type... aarch64-apple-darwin24.6.0
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... ../../../src/tiff/config/install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '501' is supported by ustar format... yes
checking whether GID '20' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc -mmacosx-version-min=10.11
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc -mmacosx-version-min=10.11 accepts -g... yes
checking for gcc -mmacosx-version-min=10.11 option to accept ISO C89... none needed
checking whether gcc -mmacosx-version-min=10.11 understands -c and -o together... yes
checking dependency style of gcc -mmacosx-version-min=10.11... gcc3
checking for gcc -mmacosx-version-min=10.11 option to accept ISO C99... none needed
checking for C compiler warning flags... -Wall -W
checking whether ln -s works... yes
checking for cmake... /opt/local/bin/cmake
checking if LD -Wl,--version-script works... no
checking how to print strings... printf
checking for a sed that does not truncate output... /opt/homebrew/bin/gsed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc -mmacosx-version-min=10.11... /Library/Developer/CommandLineTools/usr/bin/ld
checking if the linker (/Library/Developer/CommandLineTools/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 786432
checking how to convert aarch64-apple-darwin24.6.0 file names to aarch64-apple-darwin24.6.0 format... func_convert_file_noop
checking how to convert aarch64-apple-darwin24.6.0 file names to toolchain format... func_convert_file_noop
checking for /Library/Developer/CommandLineTools/usr/bin/ld option to reload object files... -r
checking for file... file
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ranlib... ranlib
checking for ar... ar
checking for archiver @FILE support... no
checking for strip... strip
checking command to parse /usr/bin/nm -B output from gcc -mmacosx-version-min=10.11 object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... ld: warning: -single_module is obsolete
no
checking for -no_fixup_chains linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking how to run the C preprocessor... gcc -E -mmacosx-version-min=10.11
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc -mmacosx-version-min=10.11 supports -fno-rtti -fno-exceptions... yes
checking for gcc -mmacosx-version-min=10.11 option to produce PIC... -fno-common -DPIC
checking if gcc -mmacosx-version-min=10.11 PIC flag -fno-common -DPIC works... yes
checking if gcc -mmacosx-version-min=10.11 static flag -static works... no
checking if gcc -mmacosx-version-min=10.11 supports -c -o file.o... yes
checking if gcc -mmacosx-version-min=10.11 supports -c -o file.o... (cached) yes
checking whether the gcc -mmacosx-version-min=10.11 linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin24.6.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether we are using the GNU C++ compiler... yes
checking whether g++ -mmacosx-version-min=10.11 accepts -g... yes
checking dependency style of g++ -mmacosx-version-min=10.11... gcc3
checking how to run the C++ preprocessor... g++ -mmacosx-version-min=10.11 -E
checking for ld used by g++ -mmacosx-version-min=10.11... /Library/Developer/CommandLineTools/usr/bin/ld
checking if the linker (/Library/Developer/CommandLineTools/usr/bin/ld) is GNU ld... no
checking whether the g++ -mmacosx-version-min=10.11 linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking for g++ -mmacosx-version-min=10.11 option to produce PIC... -fno-common -DPIC
checking if g++ -mmacosx-version-min=10.11 PIC flag -fno-common -DPIC works... yes
checking if g++ -mmacosx-version-min=10.11 static flag -static works... no
checking if g++ -mmacosx-version-min=10.11 supports -c -o file.o... yes
checking if g++ -mmacosx-version-min=10.11 supports -c -o file.o... (cached) yes
checking whether the g++ -mmacosx-version-min=10.11 linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin24.6.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether make supports nested variables... (cached) yes
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking search.h usability... yes
checking search.h presence... yes
checking for search.h... yes
checking for unistd.h... (cached) yes
checking for an ANSI C-conforming const... yes
checking whether byte ordering is bigendian... no
checking for off_t... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for _LARGEFILE_SOURCE value needed for large files... no
checking whether optarg is declared... yes
checking size of size_t... 8
checking for signed size type... int64_t
checking for mmap... yes
checking for setmode... yes
checking for getopt... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for inflateEnd in -lz... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for jpeg_read_scanlines in -ljpeg... no
checking jpeglib.h usability... no
checking jpeglib.h presence... no
checking for jpeglib.h... no
checking for X... no
checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... -D_THREAD_SAFE
checking whether we are using the Microsoft C compiler... no
checking GL/gl.h usability... no
checking GL/gl.h presence... no
checking for GL/gl.h... no
checking OpenGL/gl.h usability... yes
checking OpenGL/gl.h presence... yes
checking for OpenGL/gl.h... yes
checking windows.h usability... no
checking windows.h presence... no
checking for windows.h... no
checking for OpenGL library... -framework OpenGL
checking GL/glu.h usability... no
checking GL/glu.h presence... no
checking for GL/glu.h... no
checking OpenGL/glu.h usability... yes
checking OpenGL/glu.h presence... yes
checking for OpenGL/glu.h... yes
checking for OpenGL Utility library... yes
checking for varargs GLU tesselator callback function type... no
checking GL/glut.h usability... no
checking GL/glut.h presence... no
checking for GL/glut.h... no
checking GLUT/glut.h usability... yes
checking GLUT/glut.h presence... yes
checking for GLUT/glut.h... yes
checking for GLUT library... -framework GLUT
checking for windows.h... (cached) no
checking for python3.16... no
checking for python3.15... no
checking for python3.14... no
checking for python3.13... python3.13
checking for sphinx-build... no
checking generated manual pages... done
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating build/Makefile
config.status: creating contrib/Makefile
config.status: creating contrib/addtiffo/Makefile
config.status: creating contrib/dbs/Makefile
config.status: creating contrib/dbs/xtiff/Makefile
config.status: creating contrib/iptcutil/Makefile
config.status: creating contrib/mfs/Makefile
config.status: creating contrib/pds/Makefile
config.status: creating contrib/ras/Makefile
config.status: creating contrib/stream/Makefile
config.status: creating contrib/tags/Makefile
config.status: creating contrib/win_dib/Makefile
config.status: creating doc/Makefile
config.status: creating libtiff-4.pc
config.status: creating libtiff/Makefile
config.status: creating libtiff/tiffvers.h
config.status: creating port/Makefile
config.status: creating test/Makefile
config.status: creating tools/Makefile
config.status: creating config/config.h
config.status: creating libtiff/tif_config.h
config.status: creating libtiff/tiffconf.h
config.status: creating port/libport_config.h
config.status: executing depfiles commands
config.status: executing libtool commands
Libtiff is now configured for aarch64-apple-darwin24.6.0
Libtiff build version: 4.7.0
Libtiff library version: 7:0:1
Libtiff release date: 20240911
Installation directory: /usr/local
Documentation directory: ${prefix}/share/doc/tiff-4.7.0
C compiler: gcc -mmacosx-version-min=10.11 -Wall -W
C++ compiler: g++ -mmacosx-version-min=10.11
Build tools: yes
Build tests: yes
Build contrib: yes
Build docs: yes
Build deprecated features: no
Enable runtime linker paths: no
Enable linker symbol versioning: no
Support Microsoft Document Imaging: yes
Use Win32 IO: no
Support for internal codecs:
CCITT Group 3 & 4 algorithms: yes
Macintosh PackBits algorithm: yes
LZW algorithm: yes
ThunderScan 4-bit RLE algorithm: yes
NeXT 2-bit RLE algorithm: yes
LogLuv high dynamic range encoding: yes
Support for external codecs:
ZLIB support: yes
libdeflate support: no
Pixar log-format algorithm: yes
JPEG support: no
Old JPEG support: no
JPEG 8/12 bit dual mode: no
ISO JBIG support: no
LERC support: no
LZMA2 support: no
ZSTD support: no
WEBP support: no
C++ support: yes
OpenGL support: no
=== configuring in src/expat/expat (/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/expat/expat)
configure: running /bin/sh ../../../../src/expat/expat/configure '--prefix=/usr/local' --disable-option-checking '--with-osx_cocoa' '--disable-shared' '--disable-sys-libs' '--with-macosx-version-min=10.11' '--enable-universal_binary=arm64' '--without-docbook' '--srcdir=../../../../src/expat/expat' --cache-file=
checking build system type... arm-apple-darwin24.6.0
checking host system type... arm-apple-darwin24.6.0
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... ../../../../src/expat/expat/conftools/install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc -mmacosx-version-min=10.11
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether gcc -mmacosx-version-min=10.11 accepts -g... yes
checking for gcc -mmacosx-version-min=10.11 option to enable C11 features... none needed
checking whether gcc -mmacosx-version-min=10.11 understands -c and -o together... yes
checking dependency style of gcc -mmacosx-version-min=10.11... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... /opt/homebrew/bin/gsed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc -mmacosx-version-min=10.11... /Library/Developer/CommandLineTools/usr/bin/ld
checking if the linker (/Library/Developer/CommandLineTools/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 786432
checking how to convert arm-apple-darwin24.6.0 file names to arm-apple-darwin24.6.0 format... func_convert_file_noop
checking how to convert arm-apple-darwin24.6.0 file names to toolchain format... func_convert_file_noop
checking for /Library/Developer/CommandLineTools/usr/bin/ld option to reload object files... -r
checking for file... file
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ranlib... ranlib
checking for archiver @FILE support... no
checking for strip... strip
checking command to parse /usr/bin/nm -B output from gcc -mmacosx-version-min=10.11 object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... ld: warning: -single_module is obsolete
no
checking for -no_fixup_chains linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for sys/param.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc -mmacosx-version-min=10.11 supports -fno-rtti -fno-exceptions... yes
checking for gcc -mmacosx-version-min=10.11 option to produce PIC... -fno-common -DPIC
checking if gcc -mmacosx-version-min=10.11 PIC flag -fno-common -DPIC works... yes
checking if gcc -mmacosx-version-min=10.11 static flag -static works... no
checking if gcc -mmacosx-version-min=10.11 supports -c -o file.o... yes
checking if gcc -mmacosx-version-min=10.11 supports -c -o file.o... (cached) yes
checking whether the gcc -mmacosx-version-min=10.11 linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin24.6.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking whether C compiler accepts -Wall... yes
checking whether C compiler accepts -Wextra... yes
checking whether C compiler accepts -fexceptions... yes
checking whether C compiler accepts -fno-strict-aliasing... yes
checking whether C compiler accepts -Wmissing-prototypes... yes
checking whether C compiler accepts -Wstrict-prototypes... yes
checking whether C compiler accepts -pedantic... yes
checking whether C compiler accepts -Wduplicated-cond... no
checking whether C compiler accepts -Wduplicated-branches... no
checking whether C compiler accepts -Wlogical-op... no
checking whether C compiler accepts -Wrestrict... no
checking whether C compiler accepts -Wnull-dereference... yes
checking whether C compiler accepts -Wjump-misses-init... no
checking whether C compiler accepts -Wdouble-promotion... yes
checking whether C compiler accepts -Wshadow... yes
checking whether C compiler accepts -Wformat=2... yes
checking whether C compiler accepts -Wno-pedantic-ms-format... no
checking whether C compiler accepts -Wmisleading-indentation... yes
checking whether the compiler supports GNU C++... yes
checking whether g++ -mmacosx-version-min=10.11 accepts -g... yes
checking for g++ -mmacosx-version-min=10.11 option to enable C++11 features... none needed
checking dependency style of g++ -mmacosx-version-min=10.11... gcc3
checking how to run the C++ preprocessor... g++ -mmacosx-version-min=10.11 -E
checking for ld used by g++ -mmacosx-version-min=10.11... /Library/Developer/CommandLineTools/usr/bin/ld
checking if the linker (/Library/Developer/CommandLineTools/usr/bin/ld) is GNU ld... no
checking whether the g++ -mmacosx-version-min=10.11 linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking for g++ -mmacosx-version-min=10.11 option to produce PIC... -fno-common -DPIC
checking if g++ -mmacosx-version-min=10.11 PIC flag -fno-common -DPIC works... yes
checking if g++ -mmacosx-version-min=10.11 static flag -static works... no
checking if g++ -mmacosx-version-min=10.11 supports -c -o file.o... yes
checking if g++ -mmacosx-version-min=10.11 supports -c -o file.o... (cached) yes
checking whether the g++ -mmacosx-version-min=10.11 linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin24.6.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether C++ compiler accepts -Wall... yes
checking whether C++ compiler accepts -Wextra... yes
checking whether C++ compiler accepts -fexceptions... yes
checking whether C++ compiler accepts -fno-strict-aliasing... yes
checking whether the linker accepts -fno-strict-aliasing... yes
checking whether compiler supports visibility... yes
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking whether g++ -mmacosx-version-min=10.11 supports C++11 features with -std=c++11... yes
checking for arc4random_buf (BSD, libbsd or glibc 2.36+)... yes
checking for getrandom (Linux 3.17+, glibc 2.25+)... no
checking for syscall SYS_getrandom (Linux 3.17+)... no
checking for fcntl.h... yes
checking for unistd.h... (cached) yes
checking for off_t... yes
checking for getpagesize... yes
checking for working mmap... yes
checking for shared library name prefix... lib
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating expat.pc
config.status: creating cmake/expat-config.cmake
config.status: creating cmake/autotools/expat-config-version.cmake
config.status: creating cmake/autotools/expat-noconfig.cmake
config.status: creating doc/Makefile
config.status: creating examples/Makefile
config.status: creating lib/Makefile
config.status: creating tests/Makefile
config.status: creating tests/benchmark/Makefile
config.status: creating xmlwf/Makefile
config.status: creating run.sh
config.status: creating expat_config.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure:
Automake flags (can be overridden by user flags):
AM_CPPFLAGS: -DHAVE_EXPAT_CONFIG_H
AM_CFLAGS: -Wall -Wextra -fexceptions -fno-strict-aliasing -Wmissing-prototypes -Wstrict-prototypes -pedantic -Wnull-dereference -Wdouble-promotion -Wshadow -Wformat=2 -Wmisleading-indentation -fvisibility=hidden
AM_CXXFLAGS: -Wall -Wextra -fexceptions -fno-strict-aliasing
AM_LDFLAGS: -fno-strict-aliasing
User flags (override Automake flags on conflict):
CPPFLAGS:
CFLAGS:
CXXFLAGS:
LDFLAGS:
configure: creating ./config.status
config.status: creating lib/wx/config/osx_cocoa-unicode-static-3.3
config.status: creating lib/wx/config/inplace-osx_cocoa-unicode-static-3.3
config.status: creating utils/ifacecheck/rungccxml.sh
config.status: creating Makefile
config.status: creating samples/html/Makefile
config.status: creating samples/opengl/Makefile
config.status: creating samples/xrc/Makefile
config.status: creating samples/wrapsizer/Makefile
config.status: creating samples/wizard/Makefile
config.status: creating samples/widgets/Makefile
config.status: creating samples/webview/Makefile
config.status: creating samples/webrequest/Makefile
config.status: creating samples/vscroll/Makefile
config.status: creating samples/validate/Makefile
config.status: creating samples/uiaction/Makefile
config.status: creating samples/typetest/Makefile
config.status: creating samples/treelist/Makefile
config.status: creating samples/treectrl/Makefile
config.status: creating samples/toolbar/Makefile
config.status: creating samples/thread/Makefile
config.status: creating samples/text/Makefile
config.status: creating samples/taskbar/Makefile
config.status: creating samples/taborder/Makefile
config.status: creating samples/svg/Makefile
config.status: creating samples/stc/Makefile
config.status: creating samples/statbar/Makefile
config.status: creating samples/splitter/Makefile
config.status: creating samples/splash/Makefile
config.status: creating samples/sound/Makefile
config.status: creating samples/sockets/Makefile
config.status: creating samples/shaped/Makefile
config.status: creating samples/secretstore/Makefile
config.status: creating samples/scroll/Makefile
config.status: creating samples/sashtest/Makefile
config.status: creating samples/richtext/Makefile
config.status: creating samples/ribbon/Makefile
config.status: creating samples/render/Makefile
config.status: creating samples/propgrid/Makefile
config.status: creating samples/printing/Makefile
config.status: creating samples/preferences/Makefile
config.status: creating samples/power/Makefile
config.status: creating samples/popup/Makefile
config.status: creating samples/opengl/pyramid/Makefile
config.status: creating samples/opengl/penguin/Makefile
config.status: creating samples/opengl/isosurf/Makefile
config.status: creating samples/opengl/cube/Makefile
config.status: creating samples/notebook/Makefile
config.status: creating samples/minimal/Makefile
config.status: creating samples/menu/Makefile
config.status: creating samples/mediaplayer/Makefile
config.status: creating samples/mdi/Makefile
config.status: creating samples/listctrl/Makefile
config.status: creating samples/layout/Makefile
config.status: creating samples/keyboard/Makefile
config.status: creating samples/joytest/Makefile
config.status: creating samples/ipc/Makefile
config.status: creating samples/internat/Makefile
config.status: creating samples/image/Makefile
config.status: creating samples/html/zip/Makefile
config.status: creating samples/html/widget/Makefile
config.status: creating samples/html/virtual/Makefile
config.status: creating samples/html/test/Makefile
config.status: creating samples/html/printing/Makefile
config.status: creating samples/html/helpview/Makefile
config.status: creating samples/html/help/Makefile
config.status: creating samples/html/about/Makefile
config.status: creating samples/htlbox/Makefile
config.status: creating samples/help/Makefile
config.status: creating samples/grid/Makefile
config.status: creating samples/fswatcher/Makefile
config.status: creating samples/font/Makefile
config.status: creating samples/exec/Makefile
config.status: creating samples/except/Makefile
config.status: creating samples/event/Makefile
config.status: creating samples/erase/Makefile
config.status: creating samples/drawing/Makefile
config.status: creating samples/dragimag/Makefile
config.status: creating samples/docview/Makefile
config.status: creating samples/dnd/Makefile
config.status: creating samples/display/Makefile
config.status: creating samples/dialogs/Makefile
config.status: creating samples/debugrpt/Makefile
config.status: creating samples/dataview/Makefile
config.status: creating samples/console/Makefile
config.status: creating samples/config/Makefile
config.status: creating samples/combo/Makefile
config.status: creating samples/collpane/Makefile
config.status: creating samples/caret/Makefile
config.status: creating samples/calendar/Makefile
config.status: creating samples/aui/Makefile
config.status: creating samples/artprov/Makefile
config.status: creating samples/archive/Makefile
config.status: creating samples/animate/Makefile
config.status: creating samples/Makefile
config.status: creating demos/forty/Makefile
config.status: creating demos/fractal/Makefile
config.status: creating demos/life/Makefile
config.status: creating demos/Makefile
config.status: creating demos/bombs/Makefile
config.status: creating demos/poem/Makefile
config.status: creating utils/wxrc/Makefile
config.status: creating utils/helpview/Makefile
config.status: creating utils/helpview/src/Makefile
config.status: creating utils/ifacecheck/src/Makefile
config.status: creating utils/hhp2cached/Makefile
config.status: creating utils/screenshotgen/Makefile
config.status: creating utils/screenshotgen/src/Makefile
config.status: creating utils/Makefile
config.status: creating tests/benchmarks/Makefile
config.status: creating tests/Makefile
config.status: creating lib/wx/include/osx_cocoa-unicode-static-3.3/wx/setup.h
config.status: executing wx-config commands
Configured wxWidgets 3.3.1 for `aarch64-apple-darwin24.6.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? no
Unicode encoding used by wxString? UTF-32
What level of wxWidgets compatibility should be enabled?
wxWidgets 3.0 no
wxWidgets 3.2 yes
Which libraries should wxWidgets use?
jpeg builtin
png builtin
regex builtin
tiff builtin
webp builtin
lzma no
zlib builtin
expat builtin
libmspack no
sdl no
webview yes (with backends: WebKit)
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_auto_possess.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_auto_possess.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_chkdint.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_chkdint.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_compile.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_compile.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_compile_class.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_compile_class.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_config.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_config.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_context.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_context.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_convert.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_convert.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_dfa_match.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_dfa_match.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_error.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_error.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_extuni.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_extuni.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_find_bracket.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_find_bracket.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_jit_compile.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_jit_compile.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_maketables.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_maketables.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_match.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_match.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_match_data.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_match_data.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_newline.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_newline.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_ord2utf.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_ord2utf.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_pattern_info.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_pattern_info.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_script_run.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_script_run.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_serialize.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_serialize.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_string_utils.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_string_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_study.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_study.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_substitute.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_substitute.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_substring.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_substring.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_tables.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_tables.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_ucd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_ucd.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_valid_utf.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_valid_utf.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_xclass.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_xclass.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxregex_pcre2_chartables.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/3rdparty/pcre/src -D__WX__ -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=32 -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/pcre/src/pcre2_chartables.c
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxregexu-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxregexu-3.3.a wxregex_pcre2_auto_possess.o wxregex_pcre2_chkdint.o wxregex_pcre2_compile.o wxregex_pcre2_compile_class.o wxregex_pcre2_config.o wxregex_pcre2_context.o wxregex_pcre2_convert.o wxregex_pcre2_dfa_match.o wxregex_pcre2_error.o wxregex_pcre2_extuni.o wxregex_pcre2_find_bracket.o wxregex_pcre2_jit_compile.o wxregex_pcre2_maketables.o wxregex_pcre2_match.o wxregex_pcre2_match_data.o wxregex_pcre2_newline.o wxregex_pcre2_ord2utf.o wxregex_pcre2_pattern_info.o wxregex_pcre2_script_run.o wxregex_pcre2_serialize.o wxregex_pcre2_string_utils.o wxregex_pcre2_study.o wxregex_pcre2_substitute.o wxregex_pcre2_substring.o wxregex_pcre2_tables.o wxregex_pcre2_ucd.o wxregex_pcre2_valid_utf.o wxregex_pcre2_xclass.o wxregex_pcre2_chartables.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxregexu-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_adler32.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/adler32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_compress.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/compress.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_crc32.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/crc32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_deflate.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/deflate.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_gzclose.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/gzclose.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_gzlib.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/gzlib.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_gzread.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/gzread.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_gzwrite.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/gzwrite.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_infback.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/infback.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_inffast.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/inffast.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_inflate.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/inflate.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_inftrees.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/inftrees.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_trees.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/trees.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_uncompr.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/uncompr.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxzlib_zutil.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/zlib/zutil.c
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxzlib-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxzlib-3.3.a wxzlib_adler32.o wxzlib_compress.o wxzlib_crc32.o wxzlib_deflate.o wxzlib_gzclose.o wxzlib_gzlib.o wxzlib_gzread.o wxzlib_gzwrite.o wxzlib_infback.o wxzlib_inffast.o wxzlib_inflate.o wxzlib_inftrees.o wxzlib_trees.o wxzlib_uncompr.o wxzlib_zutil.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxzlib-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_png.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/png.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngerror.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngerror.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngget.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngget.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngmem.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngmem.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngpread.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngpread.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngread.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngread.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngrio.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngrio.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngrtran.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngrtran.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngrutil.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngrutil.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngset.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngset.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngtrans.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngtrans.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngwio.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngwio.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngwrite.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngwrite.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngwtran.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngwtran.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_pngwutil.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/pngwutil.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_arm_init.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/arm/arm_init.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_filter_neon_intrinsics.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/arm/filter_neon_intrinsics.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_palette_neon_intrinsics.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/arm/palette_neon_intrinsics.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_intel_init.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/intel/intel_init.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_filter_sse2_intrinsics.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/intel/filter_sse2_intrinsics.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_filter_msa_intrinsics.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/mips/filter_msa_intrinsics.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_mips_init.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/mips/mips_init.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_filter_vsx_intrinsics.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/powerpc/filter_vsx_intrinsics.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxpng_powerpc_init.o -I../src/zlib -DPNG_INTEL_SSE -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/png/powerpc/powerpc_init.c
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxpng-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxpng-3.3.a wxpng_png.o wxpng_pngerror.o wxpng_pngget.o wxpng_pngmem.o wxpng_pngpread.o wxpng_pngread.o wxpng_pngrio.o wxpng_pngrtran.o wxpng_pngrutil.o wxpng_pngset.o wxpng_pngtrans.o wxpng_pngwio.o wxpng_pngwrite.o wxpng_pngwtran.o wxpng_pngwutil.o wxpng_arm_init.o wxpng_filter_neon_intrinsics.o wxpng_palette_neon_intrinsics.o wxpng_intel_init.o wxpng_filter_sse2_intrinsics.o wxpng_filter_msa_intrinsics.o wxpng_mips_init.o wxpng_filter_vsx_intrinsics.o wxpng_powerpc_init.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxpng-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_sharpyuv.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/sharpyuv/sharpyuv.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_sharpyuv_cpu.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/sharpyuv/sharpyuv_cpu.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_sharpyuv_csp.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/sharpyuv/sharpyuv_csp.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_sharpyuv_dsp.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/sharpyuv/sharpyuv_dsp.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_sharpyuv_gamma.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/sharpyuv/sharpyuv_gamma.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_sharpyuv_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/sharpyuv/sharpyuv_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_sharpyuv_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/sharpyuv/sharpyuv_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_alpha_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/alpha_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_buffer_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/buffer_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_frame_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/frame_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_idec_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/idec_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_io_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/io_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_quant_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/quant_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_tree_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/tree_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_vp8l_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/vp8l_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_vp8_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/vp8_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_webp_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dec/webp_dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_anim_decode.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/demux/anim_decode.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_demux.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/demux/demux.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_alpha_processing.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/alpha_processing.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_alpha_processing_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_alpha_processing_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/alpha_processing_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_alpha_processing_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/alpha_processing_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_alpha_processing_sse41.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/alpha_processing_sse41.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_cost.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/cost.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_cost_mips32.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/cost_mips32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_cost_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/cost_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_cost_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/cost_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_cost_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/cost_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_cpu.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/cpu.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec_clip_tables.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec_clip_tables.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec_mips32.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec_mips32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec_msa.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec_msa.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_dec_sse41.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/dec_sse41.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_enc_mips32.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/enc_mips32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_enc_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/enc_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_enc_msa.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/enc_msa.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_enc_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/enc_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_enc_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/enc_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_enc_sse41.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/enc_sse41.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_filters.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/filters.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_filters_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/filters_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_filters_msa.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/filters_msa.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_filters_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/filters_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_filters_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/filters_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_enc_mips32.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_enc_mips32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_enc_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_enc_msa.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_enc_msa.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_enc_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_enc_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_enc_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_enc_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_enc_sse41.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_enc_sse41.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_msa.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_msa.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_lossless_sse41.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/lossless_sse41.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_rescaler.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/rescaler.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_rescaler_mips32.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/rescaler_mips32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_rescaler_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/rescaler_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_rescaler_msa.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/rescaler_msa.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_rescaler_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/rescaler_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_rescaler_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/rescaler_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_ssim.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/ssim.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_ssim_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/ssim_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_upsampling.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/upsampling.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_upsampling_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/upsampling_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_upsampling_msa.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/upsampling_msa.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_upsampling_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/upsampling_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_upsampling_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/upsampling_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_upsampling_sse41.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/upsampling_sse41.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_yuv.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/yuv.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_yuv_mips32.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/yuv_mips32.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_yuv_mips_dsp_r2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/yuv_mips_dsp_r2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_yuv_neon.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/yuv_neon.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_yuv_sse2.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/yuv_sse2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_yuv_sse41.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/dsp/yuv_sse41.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_alpha_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/alpha_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_analysis_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/analysis_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_backward_references_cost_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/backward_references_cost_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_backward_references_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/backward_references_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_config_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/config_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_cost_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/cost_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_filter_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/filter_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_frame_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/frame_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_histogram_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/histogram_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_iterator_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/iterator_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_near_lossless_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/near_lossless_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_picture_csp_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/picture_csp_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_picture_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/picture_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_picture_psnr_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/picture_psnr_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_picture_rescale_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/picture_rescale_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_picture_tools_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/picture_tools_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_predictor_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/predictor_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_quant_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/quant_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_syntax_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/syntax_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_token_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/token_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_tree_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/tree_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_vp8l_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/vp8l_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_webp_enc.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/enc/webp_enc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_bit_reader_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/bit_reader_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_bit_writer_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/bit_writer_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_color_cache_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/color_cache_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_filters_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/filters_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_huffman_encode_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/huffman_encode_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_huffman_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/huffman_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_palette.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/palette.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_quant_levels_dec_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/quant_levels_dec_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_quant_levels_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/quant_levels_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_random_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/random_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_rescaler_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/rescaler_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_thread_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/thread_utils.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxwebp_utils.o -I../3rdparty/libwebp -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../3rdparty/libwebp/src/utils/utils.c
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxwebp-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxwebp-3.3.a wxwebp_sharpyuv.o wxwebp_sharpyuv_cpu.o wxwebp_sharpyuv_csp.o wxwebp_sharpyuv_dsp.o wxwebp_sharpyuv_gamma.o wxwebp_sharpyuv_neon.o wxwebp_sharpyuv_sse2.o wxwebp_alpha_dec.o wxwebp_buffer_dec.o wxwebp_frame_dec.o wxwebp_idec_dec.o wxwebp_io_dec.o wxwebp_quant_dec.o wxwebp_tree_dec.o wxwebp_vp8l_dec.o wxwebp_vp8_dec.o wxwebp_webp_dec.o wxwebp_anim_decode.o wxwebp_demux.o wxwebp_alpha_processing.o wxwebp_alpha_processing_mips_dsp_r2.o wxwebp_alpha_processing_neon.o wxwebp_alpha_processing_sse2.o wxwebp_alpha_processing_sse41.o wxwebp_cost.o wxwebp_cost_mips32.o wxwebp_cost_mips_dsp_r2.o wxwebp_cost_neon.o wxwebp_cost_sse2.o wxwebp_cpu.o wxwebp_dec.o wxwebp_dec_clip_tables.o wxwebp_dec_mips32.o wxwebp_dec_mips_dsp_r2.o wxwebp_dec_msa.o wxwebp_dec_neon.o wxwebp_dec_sse2.o wxwebp_dec_sse41.o wxwebp_enc.o wxwebp_enc_mips32.o wxwebp_enc_mips_dsp_r2.o wxwebp_enc_msa.o wxwebp_enc_neon.o wxwebp_enc_sse2.o wxwebp_enc_sse41.o wxwebp_filters.o wxwebp_filters_mips_dsp_r2.o wxwebp_filters_msa.o wxwebp_filters_neon.o wxwebp_filters_sse2.o wxwebp_lossless.o wxwebp_lossless_enc.o wxwebp_lossless_enc_mips32.o wxwebp_lossless_enc_mips_dsp_r2.o wxwebp_lossless_enc_msa.o wxwebp_lossless_enc_neon.o wxwebp_lossless_enc_sse2.o wxwebp_lossless_enc_sse41.o wxwebp_lossless_mips_dsp_r2.o wxwebp_lossless_msa.o wxwebp_lossless_neon.o wxwebp_lossless_sse2.o wxwebp_lossless_sse41.o wxwebp_rescaler.o wxwebp_rescaler_mips32.o wxwebp_rescaler_mips_dsp_r2.o wxwebp_rescaler_msa.o wxwebp_rescaler_neon.o wxwebp_rescaler_sse2.o wxwebp_ssim.o wxwebp_ssim_sse2.o wxwebp_upsampling.o wxwebp_upsampling_mips_dsp_r2.o wxwebp_upsampling_msa.o wxwebp_upsampling_neon.o wxwebp_upsampling_sse2.o wxwebp_upsampling_sse41.o wxwebp_yuv.o wxwebp_yuv_mips32.o wxwebp_yuv_mips_dsp_r2.o wxwebp_yuv_neon.o wxwebp_yuv_sse2.o wxwebp_yuv_sse41.o wxwebp_alpha_enc.o wxwebp_analysis_enc.o wxwebp_backward_references_cost_enc.o wxwebp_backward_references_enc.o wxwebp_config_enc.o wxwebp_cost_enc.o wxwebp_filter_enc.o wxwebp_frame_enc.o wxwebp_histogram_enc.o wxwebp_iterator_enc.o wxwebp_near_lossless_enc.o wxwebp_picture_csp_enc.o wxwebp_picture_enc.o wxwebp_picture_psnr_enc.o wxwebp_picture_rescale_enc.o wxwebp_picture_tools_enc.o wxwebp_predictor_enc.o wxwebp_quant_enc.o wxwebp_syntax_enc.o wxwebp_token_enc.o wxwebp_tree_enc.o wxwebp_vp8l_enc.o wxwebp_webp_enc.o wxwebp_bit_reader_utils.o wxwebp_bit_writer_utils.o wxwebp_color_cache_utils.o wxwebp_filters_utils.o wxwebp_huffman_encode_utils.o wxwebp_huffman_utils.o wxwebp_palette.o wxwebp_quant_levels_dec_utils.o wxwebp_quant_levels_utils.o wxwebp_random_utils.o wxwebp_rescaler_utils.o wxwebp_thread_utils.o wxwebp_utils.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxwebp-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jaricom.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jaricom.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcapimin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcapimin.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcapistd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcapistd.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcarith.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcarith.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jccoefct.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jccoefct.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jccolor.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jccolor.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcdctmgr.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcdctmgr.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jchuff.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jchuff.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcinit.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcinit.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcmainct.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcmainct.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcmarker.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcmarker.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcmaster.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcmaster.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcomapi.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcomapi.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcparam.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcparam.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcprepct.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcprepct.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jcsample.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jcsample.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jctrans.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jctrans.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdapimin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdapimin.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdapistd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdapistd.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdarith.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdarith.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdatadst.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdatadst.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdatasrc.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdatasrc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdcoefct.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdcoefct.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdcolor.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdcolor.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jddctmgr.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jddctmgr.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdhuff.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdhuff.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdinput.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdinput.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdmainct.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdmainct.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdmarker.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdmarker.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdmaster.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdmaster.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdmerge.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdmerge.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdpostct.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdpostct.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdsample.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdsample.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jdtrans.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jdtrans.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jerror.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jerror.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jfdctflt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jfdctflt.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jfdctfst.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jfdctfst.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jfdctint.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jfdctint.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jidctflt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jidctflt.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jidctfst.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jidctfst.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jidctint.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jidctint.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jmemmgr.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jmemmgr.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jmemnobs.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jmemnobs.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jquant1.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jquant1.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jquant2.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jquant2.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxjpeg_jutils.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/jpeg/jutils.c
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxjpeg-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxjpeg-3.3.a wxjpeg_jaricom.o wxjpeg_jcapimin.o wxjpeg_jcapistd.o wxjpeg_jcarith.o wxjpeg_jccoefct.o wxjpeg_jccolor.o wxjpeg_jcdctmgr.o wxjpeg_jchuff.o wxjpeg_jcinit.o wxjpeg_jcmainct.o wxjpeg_jcmarker.o wxjpeg_jcmaster.o wxjpeg_jcomapi.o wxjpeg_jcparam.o wxjpeg_jcprepct.o wxjpeg_jcsample.o wxjpeg_jctrans.o wxjpeg_jdapimin.o wxjpeg_jdapistd.o wxjpeg_jdarith.o wxjpeg_jdatadst.o wxjpeg_jdatasrc.o wxjpeg_jdcoefct.o wxjpeg_jdcolor.o wxjpeg_jddctmgr.o wxjpeg_jdhuff.o wxjpeg_jdinput.o wxjpeg_jdmainct.o wxjpeg_jdmarker.o wxjpeg_jdmaster.o wxjpeg_jdmerge.o wxjpeg_jdpostct.o wxjpeg_jdsample.o wxjpeg_jdtrans.o wxjpeg_jerror.o wxjpeg_jfdctflt.o wxjpeg_jfdctfst.o wxjpeg_jfdctint.o wxjpeg_jidctflt.o wxjpeg_jidctfst.o wxjpeg_jidctint.o wxjpeg_jmemmgr.o wxjpeg_jmemnobs.o wxjpeg_jquant1.o wxjpeg_jquant2.o wxjpeg_jutils.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxjpeg-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_unix.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_unix.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_aux.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_aux.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_close.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_close.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_codec.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_codec.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_color.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_color.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_compress.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_compress.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_dir.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_dir.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_dirinfo.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_dirinfo.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_dirread.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_dirread.c
../src/tiff/libtiff/tif_dirread.c:1230:52: warning: format specifies type 'long long' but the argument has type 'tmsize_t' (aka 'long') [-Wformat]
1228 | "(%" TIFF_SSIZE_FORMAT
| ~~~~~~~~~~~~~~~~~~~~
1229 | " elements of %" TIFF_SSIZE_FORMAT " bytes each)",
1230 | "TIFFReadDirEntryArray", (tmsize_t)1,
| ^~~~~~~~~~~
../src/tiff/libtiff/tif_dirread.c:1231:27: warning: format specifies type 'long long' but the argument has type 'tmsize_t' (aka 'long') [-Wformat]
1229 | " elements of %" TIFF_SSIZE_FORMAT " bytes each)",
| ~~~~~~~~~~~~~~~~~~~~
1230 | "TIFFReadDirEntryArray", (tmsize_t)1,
1231 | already_read + to_read);
| ^~~~~~~~~~~~~~~~~~~~~~
2 warnings generated.
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_dirwrite.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_dirwrite.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_dumpmode.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_dumpmode.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_error.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_error.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_extension.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_extension.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_fax3.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_fax3.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_fax3sm.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_fax3sm.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_flush.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_flush.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_getimage.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_getimage.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_hash_set.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_hash_set.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_jbig.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_jbig.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_jpeg.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_jpeg.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_jpeg_12.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_jpeg_12.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_lerc.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_lerc.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_luv.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_luv.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_lzma.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_lzma.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_lzw.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_lzw.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_next.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_next.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_ojpeg.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_ojpeg.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_open.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_open.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_packbits.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_packbits.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_pixarlog.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_pixarlog.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_predict.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_predict.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_read.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_read.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_strip.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_strip.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_swab.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_swab.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_thunder.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_thunder.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_tile.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_tile.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_version.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_version.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_warning.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_warning.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_webp.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_webp.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_write.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_write.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_zip.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_zip.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxtiff_tif_zstd.o -I../src/zlib -I../src/jpeg -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/tiff/libtiff/tif_zstd.c
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxtiff-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxtiff-3.3.a wxtiff_tif_unix.o wxtiff_tif_aux.o wxtiff_tif_close.o wxtiff_tif_codec.o wxtiff_tif_color.o wxtiff_tif_compress.o wxtiff_tif_dir.o wxtiff_tif_dirinfo.o wxtiff_tif_dirread.o wxtiff_tif_dirwrite.o wxtiff_tif_dumpmode.o wxtiff_tif_error.o wxtiff_tif_extension.o wxtiff_tif_fax3.o wxtiff_tif_fax3sm.o wxtiff_tif_flush.o wxtiff_tif_getimage.o wxtiff_tif_hash_set.o wxtiff_tif_jbig.o wxtiff_tif_jpeg.o wxtiff_tif_jpeg_12.o wxtiff_tif_lerc.o wxtiff_tif_luv.o wxtiff_tif_lzma.o wxtiff_tif_lzw.o wxtiff_tif_next.o wxtiff_tif_ojpeg.o wxtiff_tif_open.o wxtiff_tif_packbits.o wxtiff_tif_pixarlog.o wxtiff_tif_predict.o wxtiff_tif_read.o wxtiff_tif_strip.o wxtiff_tif_swab.o wxtiff_tif_thunder.o wxtiff_tif_tile.o wxtiff_tif_version.o wxtiff_tif_warning.o wxtiff_tif_webp.o wxtiff_tif_write.o wxtiff_tif_zip.o wxtiff_tif_zstd.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxtiff-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxexpat_xmlparse.o -I./src/expat/expat -DHAVE_EXPAT_CONFIG_H -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/expat/expat/lib/xmlparse.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxexpat_xmlrole.o -I./src/expat/expat -DHAVE_EXPAT_CONFIG_H -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/expat/expat/lib/xmlrole.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o wxexpat_xmltok.o -I./src/expat/expat -DHAVE_EXPAT_CONFIG_H -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/expat/expat/lib/xmltok.c
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxexpat-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxexpat-3.3.a wxexpat_xmlparse.o wxexpat_xmlrole.o wxexpat_xmltok.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxexpat-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_AutoComplete.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/AutoComplete.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_CallTip.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/CallTip.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_CaseConvert.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/CaseConvert.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_CaseFolder.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/CaseFolder.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_CellBuffer.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/CellBuffer.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_CharClassify.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/CharClassify.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_CharacterCategory.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/CharacterCategory.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_CharacterSet.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/CharacterSet.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_ContractionState.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/ContractionState.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_DBCS.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/DBCS.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_Decoration.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/Decoration.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_Document.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/Document.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_EditModel.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/EditModel.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_EditView.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/EditView.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_Editor.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/Editor.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_Indicator.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/Indicator.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_KeyMap.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/KeyMap.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_LineMarker.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/LineMarker.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_MarginView.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/MarginView.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_PerLine.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/PerLine.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_PositionCache.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/PositionCache.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_RESearch.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/RESearch.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_RunStyles.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/RunStyles.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_ScintillaBase.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/ScintillaBase.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_Selection.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/Selection.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_Style.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/Style.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_UniConversion.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/UniConversion.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_UniqueString.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/UniqueString.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_ViewStyle.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/ViewStyle.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxscintilla_XPM.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/scintilla/src/XPM.cxx
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxscintilla-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxscintilla-3.3.a wxscintilla_AutoComplete.o wxscintilla_CallTip.o wxscintilla_CaseConvert.o wxscintilla_CaseFolder.o wxscintilla_CellBuffer.o wxscintilla_CharClassify.o wxscintilla_CharacterCategory.o wxscintilla_CharacterSet.o wxscintilla_ContractionState.o wxscintilla_DBCS.o wxscintilla_Decoration.o wxscintilla_Document.o wxscintilla_EditModel.o wxscintilla_EditView.o wxscintilla_Editor.o wxscintilla_Indicator.o wxscintilla_KeyMap.o wxscintilla_LineMarker.o wxscintilla_MarginView.o wxscintilla_PerLine.o wxscintilla_PositionCache.o wxscintilla_RESearch.o wxscintilla_RunStyles.o wxscintilla_ScintillaBase.o wxscintilla_Selection.o wxscintilla_Style.o wxscintilla_UniConversion.o wxscintilla_UniqueString.o wxscintilla_ViewStyle.o wxscintilla_XPM.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxscintilla-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexillaAccess.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/access/LexillaAccess.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexA68k.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexA68k.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAPDL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAPDL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexASY.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexASY.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAU3.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAU3.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAVE.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAVE.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAVS.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAVS.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAbaqus.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAbaqus.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAda.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAda.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAsciidoc.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAsciidoc.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAsm.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAsm.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAsn1.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexAsn1.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexBaan.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexBaan.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexBash.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexBash.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexBasic.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexBasic.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexBatch.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexBatch.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexBibTeX.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexBibTeX.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexBullant.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexBullant.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCIL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCIL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCLW.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCLW.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCOBOL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCOBOL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCPP.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCPP.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCSS.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCSS.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCaml.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCaml.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCmake.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCmake.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCoffeeScript.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCoffeeScript.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexConf.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexConf.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCrontab.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCrontab.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCsound.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexCsound.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexD.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexD.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexDMAP.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexDMAP.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexDMIS.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexDMIS.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexDart.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexDart.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexDataflex.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexDataflex.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexDiff.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexDiff.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexECL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexECL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexEDIFACT.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexEDIFACT.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexEScript.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexEScript.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexEiffel.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexEiffel.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexErlang.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexErlang.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexErrorList.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexErrorList.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexFSharp.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexFSharp.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexFlagship.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexFlagship.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexForth.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexForth.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexFortran.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexFortran.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexGAP.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexGAP.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexGDScript.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexGDScript.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexGui4Cli.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexGui4Cli.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexHTML.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexHTML.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexHaskell.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexHaskell.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexHex.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexHex.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexHollywood.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexHollywood.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexIndent.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexIndent.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexInno.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexInno.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexJSON.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexJSON.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexJulia.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexJulia.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexKVIrc.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexKVIrc.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexKix.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexKix.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexLaTeX.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexLaTeX.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexLisp.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexLisp.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexLout.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexLout.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexLua.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexLua.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMMIXAL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMMIXAL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMPT.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMPT.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMSSQL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMSSQL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMagik.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMagik.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMake.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMake.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMarkdown.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMarkdown.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMatlab.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMatlab.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMaxima.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMaxima.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMetapost.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMetapost.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexModula.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexModula.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexMySQL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexMySQL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexNim.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexNim.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexNimrod.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexNimrod.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexNix.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexNix.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexNsis.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexNsis.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexNull.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexNull.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexOScript.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexOScript.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexOpal.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexOpal.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPB.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPB.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPLM.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPLM.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPO.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPO.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPOV.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPOV.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPS.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPS.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPascal.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPascal.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPerl.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPerl.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPowerPro.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPowerPro.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPowerShell.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPowerShell.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexProgress.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexProgress.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexProps.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexProps.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexPython.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexPython.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexR.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexR.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexRaku.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexRaku.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexRebol.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexRebol.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexRegistry.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexRegistry.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexRuby.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexRuby.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexRust.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexRust.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSAS.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSAS.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSML.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSML.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSQL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSQL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSTTXT.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSTTXT.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexScriptol.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexScriptol.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSmalltalk.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSmalltalk.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSorcus.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSorcus.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSpecman.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSpecman.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexSpice.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexSpice.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexStata.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexStata.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTACL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTACL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTADS3.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTADS3.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTAL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTAL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTCL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTCL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTCMD.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTCMD.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTOML.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTOML.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTeX.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTeX.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTroff.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTroff.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexTxt2tags.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexTxt2tags.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexVB.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexVB.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexVHDL.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexVHDL.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexVerilog.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexVerilog.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexVisualProlog.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexVisualProlog.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexX12.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexX12.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexYAML.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexYAML.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexZig.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexers/LexZig.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_Accessor.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/Accessor.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_DefaultLexer.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/DefaultLexer.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_InList.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/InList.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexAccessor.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/LexAccessor.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCharacterCategory.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/LexCharacterCategory.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexCharacterSet.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/LexCharacterSet.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexerBase.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/LexerBase.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexerModule.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/LexerModule.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_LexerSimple.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/LexerSimple.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_PropSetSimple.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/PropSetSimple.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_StyleContext.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/StyleContext.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_WordList.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/lexlib/WordList.cxx
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxlexilla_Lexilla.o -D__WXOSX_COCOA__ -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -DNDEBUG -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/lexilla/src/Lexilla.cxx
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxlexilla-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxlexilla-3.3.a wxlexilla_LexillaAccess.o wxlexilla_LexA68k.o wxlexilla_LexAPDL.o wxlexilla_LexASY.o wxlexilla_LexAU3.o wxlexilla_LexAVE.o wxlexilla_LexAVS.o wxlexilla_LexAbaqus.o wxlexilla_LexAda.o wxlexilla_LexAsciidoc.o wxlexilla_LexAsm.o wxlexilla_LexAsn1.o wxlexilla_LexBaan.o wxlexilla_LexBash.o wxlexilla_LexBasic.o wxlexilla_LexBatch.o wxlexilla_LexBibTeX.o wxlexilla_LexBullant.o wxlexilla_LexCIL.o wxlexilla_LexCLW.o wxlexilla_LexCOBOL.o wxlexilla_LexCPP.o wxlexilla_LexCSS.o wxlexilla_LexCaml.o wxlexilla_LexCmake.o wxlexilla_LexCoffeeScript.o wxlexilla_LexConf.o wxlexilla_LexCrontab.o wxlexilla_LexCsound.o wxlexilla_LexD.o wxlexilla_LexDMAP.o wxlexilla_LexDMIS.o wxlexilla_LexDart.o wxlexilla_LexDataflex.o wxlexilla_LexDiff.o wxlexilla_LexECL.o wxlexilla_LexEDIFACT.o wxlexilla_LexEScript.o wxlexilla_LexEiffel.o wxlexilla_LexErlang.o wxlexilla_LexErrorList.o wxlexilla_LexFSharp.o wxlexilla_LexFlagship.o wxlexilla_LexForth.o wxlexilla_LexFortran.o wxlexilla_LexGAP.o wxlexilla_LexGDScript.o wxlexilla_LexGui4Cli.o wxlexilla_LexHTML.o wxlexilla_LexHaskell.o wxlexilla_LexHex.o wxlexilla_LexHollywood.o wxlexilla_LexIndent.o wxlexilla_LexInno.o wxlexilla_LexJSON.o wxlexilla_LexJulia.o wxlexilla_LexKVIrc.o wxlexilla_LexKix.o wxlexilla_LexLaTeX.o wxlexilla_LexLisp.o wxlexilla_LexLout.o wxlexilla_LexLua.o wxlexilla_LexMMIXAL.o wxlexilla_LexMPT.o wxlexilla_LexMSSQL.o wxlexilla_LexMagik.o wxlexilla_LexMake.o wxlexilla_LexMarkdown.o wxlexilla_LexMatlab.o wxlexilla_LexMaxima.o wxlexilla_LexMetapost.o wxlexilla_LexModula.o wxlexilla_LexMySQL.o wxlexilla_LexNim.o wxlexilla_LexNimrod.o wxlexilla_LexNix.o wxlexilla_LexNsis.o wxlexilla_LexNull.o wxlexilla_LexOScript.o wxlexilla_LexOpal.o wxlexilla_LexPB.o wxlexilla_LexPLM.o wxlexilla_LexPO.o wxlexilla_LexPOV.o wxlexilla_LexPS.o wxlexilla_LexPascal.o wxlexilla_LexPerl.o wxlexilla_LexPowerPro.o wxlexilla_LexPowerShell.o wxlexilla_LexProgress.o wxlexilla_LexProps.o wxlexilla_LexPython.o wxlexilla_LexR.o wxlexilla_LexRaku.o wxlexilla_LexRebol.o wxlexilla_LexRegistry.o wxlexilla_LexRuby.o wxlexilla_LexRust.o wxlexilla_LexSAS.o wxlexilla_LexSML.o wxlexilla_LexSQL.o wxlexilla_LexSTTXT.o wxlexilla_LexScriptol.o wxlexilla_LexSmalltalk.o wxlexilla_LexSorcus.o wxlexilla_LexSpecman.o wxlexilla_LexSpice.o wxlexilla_LexStata.o wxlexilla_LexTACL.o wxlexilla_LexTADS3.o wxlexilla_LexTAL.o wxlexilla_LexTCL.o wxlexilla_LexTCMD.o wxlexilla_LexTOML.o wxlexilla_LexTeX.o wxlexilla_LexTroff.o wxlexilla_LexTxt2tags.o wxlexilla_LexVB.o wxlexilla_LexVHDL.o wxlexilla_LexVerilog.o wxlexilla_LexVisualProlog.o wxlexilla_LexX12.o wxlexilla_LexYAML.o wxlexilla_LexZig.o wxlexilla_Accessor.o wxlexilla_DefaultLexer.o wxlexilla_InList.o wxlexilla_LexAccessor.o wxlexilla_LexCharacterCategory.o wxlexilla_LexCharacterSet.o wxlexilla_LexerBase.o wxlexilla_LexerModule.o wxlexilla_LexerSimple.o wxlexilla_PropSetSimple.o wxlexilla_StyleContext.o wxlexilla_WordList.o wxlexilla_Lexilla.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwxlexilla-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_any.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/any.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_appbase.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/appbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_arcall.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/arcall.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_arcfind.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/arcfind.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_archive.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/archive.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_arrstr.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/arrstr.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_base64.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/base64.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_clntdata.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/clntdata.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_cmdline.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/cmdline.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_config.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/config.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_convauto.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/convauto.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_datetime.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/datetime.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_datetimefmt.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/datetimefmt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_datstrm.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/datstrm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_dircmn.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dircmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_dynlib.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dynlib.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_dynload.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dynload.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_encconv.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/encconv.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_evtloopcmn.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/evtloopcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps gcc -mmacosx-version-min=10.11 -c -o baselib_extended.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/extended.c
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_ffile.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/ffile.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_file.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/file.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fileback.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fileback.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fileconf.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fileconf.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_filefn.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filefn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_filename.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filename.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_filesys.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filesys.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_filtall.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filtall.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_filtfind.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filtfind.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fmapbase.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fmapbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fs_arc.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fs_arc.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fs_filter.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fs_filter.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_hash.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/hash.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_hashmap.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/hashmap.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_init.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/init.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_intl.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/intl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_ipcbase.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/ipcbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_languageinfo.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/languageinfo.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_list.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/list.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_log.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/log.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_longlong.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/longlong.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_mimecmn.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/mimecmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_module.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/module.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_mstream.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/mstream.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_numformatter.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/numformatter.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_object.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/object.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_platinfo.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/platinfo.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_process.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/process.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_regex.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/regex.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_stdpbase.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/stdpbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_sstream.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/sstream.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_stdstream.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/stdstream.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_stopwatch.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/stopwatch.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_strconv.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/strconv.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_stream.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/stream.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_string.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/string.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_stringops.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/stringops.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_strvararg.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/strvararg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_sysopt.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/sysopt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_tarstrm.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/tarstrm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_textbuf.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/textbuf.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_textfile.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/textfile.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_time.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/time.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_timercmn.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/timercmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_timerimpl.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/timerimpl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_tokenzr.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/tokenzr.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_translation.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/translation.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_txtstrm.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/txtstrm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_unichar.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/unichar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_uri.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/uri.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_ustring.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/ustring.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_variant.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/variant.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_wfstream.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/wfstream.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_wxcrt.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/wxcrt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_wxprintf.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/wxprintf.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_xlocale.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/xlocale.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_xti.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/xti.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_xtistrm.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/xtistrm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_zipstrm.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/zipstrm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_zstream.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/zstream.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fswatchercmn.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fswatchercmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fswatcherg.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/fswatcherg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_common_secretstore.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/secretstore.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_lzmastream.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/lzmastream.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_common_uilocale.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/uilocale.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fs_data.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fs_data.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_core_mimetype.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/mimetype.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_cfstring.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/cfstring.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_evtloop_cf.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/evtloop_cf.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_strconv_cf.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/strconv_cf.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_utils_base.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/utils_base.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_core_secretstore.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/secretstore.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_core_stdpaths.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/core/stdpaths.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fdiodispatcher.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fdiodispatcher.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_selectdispatcher.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/selectdispatcher.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_appunix.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/appunix.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_unix_dir.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/dir.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_dlunix.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/dlunix.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_epolldispatcher.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/epolldispatcher.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_evtloopunix.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/evtloopunix.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fdiounix.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/fdiounix.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_unix_snglinst.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/snglinst.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_unix_stackwalk.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/stackwalk.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_timerunx.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/timerunx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_threadpsx.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/threadpsx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_utilsunx.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/utilsunx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_wakeuppipe.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/wakeuppipe.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fswatcher_kqueue.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/fswatcher_kqueue.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fswatcher_fsevents.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/fswatcher_fsevents.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_core_uilocale.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/core/uilocale.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_event.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/event.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_fs_mem.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fs_mem.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_msgout.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/msgout.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_utilscmn.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/utilscmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_cocoa_utils.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/utils.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o baselib_osx_volume.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/volume.mm
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu-3.3.a baselib_any.o baselib_appbase.o baselib_arcall.o baselib_arcfind.o baselib_archive.o baselib_arrstr.o baselib_base64.o baselib_clntdata.o baselib_cmdline.o baselib_config.o baselib_convauto.o baselib_datetime.o baselib_datetimefmt.o baselib_datstrm.o baselib_dircmn.o baselib_dynlib.o baselib_dynload.o baselib_encconv.o baselib_evtloopcmn.o baselib_extended.o baselib_ffile.o baselib_file.o baselib_fileback.o baselib_fileconf.o baselib_filefn.o baselib_filename.o baselib_filesys.o baselib_filtall.o baselib_filtfind.o baselib_fmapbase.o baselib_fs_arc.o baselib_fs_filter.o baselib_hash.o baselib_hashmap.o baselib_init.o baselib_intl.o baselib_ipcbase.o baselib_languageinfo.o baselib_list.o baselib_log.o baselib_longlong.o baselib_mimecmn.o baselib_module.o baselib_mstream.o baselib_numformatter.o baselib_object.o baselib_platinfo.o baselib_process.o baselib_regex.o baselib_stdpbase.o baselib_sstream.o baselib_stdstream.o baselib_stopwatch.o baselib_strconv.o baselib_stream.o baselib_string.o baselib_stringops.o baselib_strvararg.o baselib_sysopt.o baselib_tarstrm.o baselib_textbuf.o baselib_textfile.o baselib_time.o baselib_timercmn.o baselib_timerimpl.o baselib_tokenzr.o baselib_translation.o baselib_txtstrm.o baselib_unichar.o baselib_uri.o baselib_ustring.o baselib_variant.o baselib_wfstream.o baselib_wxcrt.o baselib_wxprintf.o baselib_xlocale.o baselib_xti.o baselib_xtistrm.o baselib_zipstrm.o baselib_zstream.o baselib_fswatchercmn.o baselib_fswatcherg.o baselib_common_secretstore.o baselib_lzmastream.o baselib_common_uilocale.o baselib_fs_data.o baselib_core_mimetype.o baselib_cfstring.o baselib_evtloop_cf.o baselib_strconv_cf.o baselib_utils_base.o baselib_core_secretstore.o baselib_core_stdpaths.o baselib_fdiodispatcher.o baselib_selectdispatcher.o baselib_appunix.o baselib_unix_dir.o baselib_dlunix.o baselib_epolldispatcher.o baselib_evtloopunix.o baselib_fdiounix.o baselib_unix_snglinst.o baselib_unix_stackwalk.o baselib_timerunx.o baselib_threadpsx.o baselib_utilsunx.o baselib_wakeuppipe.o baselib_fswatcher_kqueue.o baselib_fswatcher_fsevents.o baselib_core_uilocale.o baselib_event.o baselib_fs_mem.o baselib_msgout.o baselib_utilscmn.o baselib_cocoa_utils.o baselib_osx_volume.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_fs_inet.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fs_inet.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_ftp.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/ftp.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_http.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/http.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_protocol.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/protocol.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_sckaddr.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/sckaddr.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_sckfile.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/sckfile.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_sckipc.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/sckipc.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_sckstrm.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/sckstrm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_socket.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/socket.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_url.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/url.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_webrequest.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/webrequest.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_webrequest_curl.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/webrequest_curl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_socketiohandler.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/socketiohandler.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_sockunix.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/sockunix.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_sockosx.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/sockosx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o netlib_webrequest_urlsession.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/webrequest_urlsession.mm
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu_net-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu_net-3.3.a netlib_fs_inet.o netlib_ftp.o netlib_http.o netlib_protocol.o netlib_sckaddr.o netlib_sckfile.o netlib_sckipc.o netlib_sckstrm.o netlib_socket.o netlib_url.o netlib_webrequest.o netlib_webrequest_curl.o netlib_socketiohandler.o netlib_sockunix.o netlib_sockosx.o netlib_webrequest_urlsession.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu_net-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_event.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/event.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fs_mem.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fs_mem.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_msgout.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/msgout.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_utilscmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/utilscmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_utils.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/utils.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_osx_volume.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/volume.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_artmac.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/artmac.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_osx_brush.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/brush.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dialog_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/dialog_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_osx_fontutil.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/fontutil.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_osx_minifram.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/minifram.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_nonownedwnd_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/nonownedwnd_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_osx_palette.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/palette.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_osx_pen.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/pen.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_toplevel_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/toplevel_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_uiaction_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/uiaction_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_utils_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/utils_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_window_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/window_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_bitmap.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/bitmap.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_colour.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/colour.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_dcmemory.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/dcmemory.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_fontenum.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/fontenum.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_hid.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/hid.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_printmac.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/printmac.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_timer.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/timer.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_utilsexc_cf.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/utilsexc_cf.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_bmpbndl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/core/bmpbndl.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_unix_apptraits.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/unix/apptraits.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_anybutton_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/anybutton_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bmpbuttn_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/bmpbuttn_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_button_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/button_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_checkbox_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/checkbox_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_checklst_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/checklst_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_choice_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/choice_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_combobox_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/combobox_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dnd_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/dnd_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gauge_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/gauge_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_listbox_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/listbox_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_menu_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/menu_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_menuitem_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/menuitem_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_notebook_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/notebook_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_printdlg_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/printdlg_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_radiobox_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/radiobox_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_radiobut_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/radiobut_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_scrolbar_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/scrolbar_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_slider_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/slider_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_spinbutt_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/spinbutt_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_srchctrl_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/srchctrl_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statbox_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/statbox_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statline_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/statline_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_stattext_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/stattext_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_textentry_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/textentry_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_textctrl_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/textctrl_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_tglbtn_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/tglbtn_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_toolbar_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/toolbar_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_colordlgosx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/carbon/colordlgosx.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontdlgosx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/carbon/fontdlgosx.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_osx_accel.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/accel.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_clipbrd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/clipbrd.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_cursor.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/cursor.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_fontdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/fontdlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gdiobj.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/gdiobj.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_app.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/app.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_control.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/control.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_dataobj.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/dataobj.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_dcclient.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/dcclient.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_dcprint.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/dcprint.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_dcscreen.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/dcscreen.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_graphics.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/graphics.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_font.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/font.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_frame.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/frame.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_mdi.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/mdi.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_metafile.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/metafile.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_popupwin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/popupwin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statbrma.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/statbrma.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_region.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/region.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_utilscocoa.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/carbon/utilscocoa.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_generic_caret.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/caret.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_clrpickerg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/clrpickerg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_collpaneg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/collpaneg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_colrdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/colrdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dirdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/dirdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_generic_fdrepdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/fdrepdlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_filedlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/filedlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_filepickerg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/filepickerg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/fontdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontpickerg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/fontpickerg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_generic_listctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/listctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_prntdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/prntdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_generic_statusbr.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/statusbr.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_generic_textmeasure.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/textmeasure.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statbmp_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/statbmp_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_generic_imaglist.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/imaglist.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_anybutton.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/anybutton.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_appprogress.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/appprogress.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_button.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/button.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_checkbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/checkbox.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_choice.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/choice.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_colour.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/colour.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_combobox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/combobox.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_dialog.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/dialog.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_dirdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/dirdlg.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_dnd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/dnd.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_evtloop.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/evtloop.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_filedlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/filedlg.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_gauge.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/gauge.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_listbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/listbox.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_menu.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/menu.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_menuitem.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/menuitem.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_msgdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/msgdlg.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_nativewin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/nativewin.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_nonownedwnd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/nonownedwnd.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_notebook.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/notebook.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_radiobut.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/radiobut.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_preferences.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/preferences.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_printdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/printdlg.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_scrolbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/scrolbar.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_slider.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/slider.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_spinbutt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/spinbutt.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_srchctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/srchctrl.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_statbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/statbox.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_statline.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/statline.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_stattext.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/stattext.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_textctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/textctrl.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_tglbtn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/tglbtn.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_toolbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/toolbar.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_tooltip.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/tooltip.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_window.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/window.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_settings.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/settings.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_overlay.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/overlay.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_aboutdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/aboutdlg.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dataview_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/dataview_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_notifmsg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/notifmsg.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_taskbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/taskbar.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_datectrl_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/datectrl_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_datetimectrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/datetimectrl.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_sound.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/sound.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_sound_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/sound_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_datetimectrl_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/datetimectrl_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_hidjoystick.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/hidjoystick.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_carbon_sound.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/carbon/sound.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_dataview.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/dataview.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_timectrl_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/timectrl_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_taskbarcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/taskbarcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_activityindicator.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/activityindicator.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_statbmp.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/statbmp.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_core_display.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/core/display.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_renderer.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/renderer.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cocoa_power.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/power.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_accelcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/accelcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_accesscmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/accesscmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_anidecod.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/anidecod.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_affinematrix2d.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/affinematrix2d.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_appcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/appcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_artprov.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/artprov.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_artstd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/artstd.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_arttango.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/arttango.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bmpbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/bmpbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bmpbtncmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/bmpbtncmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bookctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/bookctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_btncmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/btncmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cairo.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/cairo.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_checkboxcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/checkboxcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_checklstcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/checklstcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_choiccmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/choiccmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_clipcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/clipcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_clrpickercmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/clrpickercmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_colourcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/colourcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_colourdata.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/colourdata.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_combocmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/combocmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cmdproc.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/cmdproc.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cmndata.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/cmndata.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_containr.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/containr.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_cshelp.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/cshelp.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_ctrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/ctrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_common_ctrlsub.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/ctrlsub.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dcbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dcbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dcbufcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dcbufcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dcgraph.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dcgraph.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dcsvg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dcsvg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dirctrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dirctrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dlgcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dlgcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dndcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dndcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dobjcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dobjcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_docmdi.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/docmdi.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_docview.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/docview.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dpycmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dpycmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dseldlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dseldlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fddlgcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fddlgcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_filectrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filectrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_filehistorycmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filehistorycmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_filepickercmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/filepickercmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontpickercmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fontpickercmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fldlgcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fldlgcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fontcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontdata.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fontdata.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_graphicc.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/graphicc.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontenumcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fontenumcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontmap.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fontmap.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_fontutilcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/fontutilcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_framecmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/framecmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gaugecmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/gaugecmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gbsizer.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/gbsizer.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gdicmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/gdicmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_geometry.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/geometry.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gifdecod.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/gifdecod.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_graphcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/graphcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_headercolcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/headercolcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_headerctrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/headerctrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_helpbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/helpbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_iconbndl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/iconbndl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagall.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagall.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagbmp.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagbmp.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_image.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/image.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagfill.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagfill.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imaggif.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imaggif.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagiff.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagiff.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagjpeg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagjpeg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagpcx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagpcx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagpng.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagpng.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagpnm.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagpnm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagtga.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagtga.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagtiff.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagtiff.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagxpm.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagxpm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_layout.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/layout.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_lboxcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/lboxcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_listctrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/listctrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_markupparser.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/markupparser.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_matrix.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/matrix.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_menucmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/menucmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_modalhook.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/modalhook.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_mousemanager.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/mousemanager.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_nbkbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/nbkbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_overlaycmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/overlaycmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_ownerdrwcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/ownerdrwcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_paper.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/paper.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_panelcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/panelcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_persist.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/persist.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_pickerbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/pickerbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_popupcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/popupcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_preferencescmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/preferencescmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_prntbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/prntbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_quantize.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/quantize.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_radiobtncmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/radiobtncmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_radiocmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/radiocmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_rearrangectrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/rearrangectrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_rendcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/rendcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_rgncmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/rgncmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_scrolbarcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/scrolbarcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_settcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/settcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_sizer.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/sizer.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_slidercmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/slidercmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_spinbtncmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/spinbtncmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_spinctrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/spinctrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_srchcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/srchcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/statbar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statbmpcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/statbmpcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statboxcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/statboxcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statlinecmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/statlinecmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_stattextcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/stattextcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_stockitem.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/stockitem.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_tbarbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/tbarbase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_textcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/textcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_textentrycmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/textentrycmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_textmeasurecmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/textmeasurecmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_toplvcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/toplvcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_treebase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/treebase.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_uiactioncmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/uiactioncmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_valgen.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/valgen.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_validate.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/validate.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_valtext.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/valtext.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_valnum.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/valnum.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_wincmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/wincmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_windowid.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/windowid.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_wrapsizer.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/wrapsizer.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_xpmdecod.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/xpmdecod.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_animateg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/animateg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_busyinfo.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/busyinfo.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_buttonbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/buttonbar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_choicdgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/choicdgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_choicbkg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/choicbkg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_collheaderctrlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/collheaderctrlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_combog.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/combog.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dcpsg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/dcpsg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dirctrlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/dirctrlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_dragimgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/dragimgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_filectrlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/filectrlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_headerctrlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/headerctrlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_generic_infobar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/infobar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_listbkg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/listbkg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_logg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/logg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_markuptext.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/markuptext.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_msgdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/msgdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_numdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/numdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_progdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/progdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_preferencesg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/preferencesg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_printps.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/printps.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_renderg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/renderg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_richmsgdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/richmsgdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_scrlwing.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/scrlwing.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_selstore.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/selstore.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_spinctlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/spinctlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_splitter.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/splitter.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_srchctlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/srchctlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_statbmpg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/statbmpg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_stattextg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/stattextg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_textdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/textdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_tipwin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/tipwin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_toolbkg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/toolbkg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_treectlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/treectlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_treebkg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/treebkg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_vlbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/vlbox.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_vscroll.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/vscroll.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_xmlreshandler.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xmlreshandler.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_splash.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/splash.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_notifmsgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/notifmsgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_odcombo.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/odcombo.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_calctrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/calctrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_grideditors.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/grideditors.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bmpcboxcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/bmpcboxcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_grid.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/grid.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gridctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/gridctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_hyperlinkg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/hyperlinkg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_helpext.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/helpext.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_sashwin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/sashwin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gridsel.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/gridsel.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_addremovectrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/addremovectrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_tipdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/tipdlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_aboutdlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/aboutdlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_gridcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/gridcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_richtooltipcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/richtooltipcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_datectlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/datectlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bannerwindow.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/bannerwindow.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_treelist.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/treelist.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_datavcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/datavcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_animatecmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/animatecmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_odcombocmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/odcombocmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_hyperlnkcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/hyperlnkcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_propdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/propdlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bmpcboxg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/bmpcboxg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_richtooltipg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/richtooltipg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_timectrlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/timectrlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_commandlinkbuttong.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/commandlinkbuttong.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_notifmsgcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/notifmsgcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_wizard.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/wizard.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_datavgen.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/datavgen.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_editlbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/editlbox.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_laywin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/laywin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_calctrlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/calctrlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_creddlgg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/creddlgg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_rowheightcache.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/rowheightcache.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_common_bmpbndl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/bmpbndl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_bmpsvg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/bmpsvg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_powercmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/powercmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_curbndl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/curbndl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_webpdecoder.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/webpdecoder.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o corelib_imagwebp.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_BASE=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/imagwebp.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_core-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_core-3.3.a corelib_event.o corelib_fs_mem.o corelib_msgout.o corelib_utilscmn.o corelib_cocoa_utils.o corelib_osx_volume.o corelib_artmac.o corelib_osx_brush.o corelib_dialog_osx.o corelib_osx_fontutil.o corelib_osx_minifram.o corelib_nonownedwnd_osx.o corelib_osx_palette.o corelib_osx_pen.o corelib_toplevel_osx.o corelib_uiaction_osx.o corelib_utils_osx.o corelib_window_osx.o corelib_core_bitmap.o corelib_core_colour.o corelib_core_dcmemory.o corelib_core_fontenum.o corelib_hid.o corelib_printmac.o corelib_core_timer.o corelib_utilsexc_cf.o corelib_core_bmpbndl.o corelib_unix_apptraits.o corelib_anybutton_osx.o corelib_bmpbuttn_osx.o corelib_button_osx.o corelib_checkbox_osx.o corelib_checklst_osx.o corelib_choice_osx.o corelib_combobox_osx.o corelib_dnd_osx.o corelib_gauge_osx.o corelib_listbox_osx.o corelib_menu_osx.o corelib_menuitem_osx.o corelib_notebook_osx.o corelib_printdlg_osx.o corelib_radiobox_osx.o corelib_radiobut_osx.o corelib_scrolbar_osx.o corelib_slider_osx.o corelib_spinbutt_osx.o corelib_srchctrl_osx.o corelib_statbox_osx.o corelib_statline_osx.o corelib_stattext_osx.o corelib_textentry_osx.o corelib_textctrl_osx.o corelib_tglbtn_osx.o corelib_toolbar_osx.o corelib_colordlgosx.o corelib_fontdlgosx.o corelib_osx_accel.o corelib_carbon_clipbrd.o corelib_carbon_cursor.o corelib_carbon_fontdlg.o corelib_gdiobj.o corelib_carbon_app.o corelib_carbon_control.o corelib_carbon_dataobj.o corelib_carbon_dcclient.o corelib_carbon_dcprint.o corelib_carbon_dcscreen.o corelib_carbon_graphics.o corelib_carbon_font.o corelib_carbon_frame.o corelib_carbon_mdi.o corelib_carbon_metafile.o corelib_carbon_popupwin.o corelib_statbrma.o corelib_carbon_region.o corelib_utilscocoa.o corelib_generic_caret.o corelib_clrpickerg.o corelib_collpaneg.o corelib_colrdlgg.o corelib_dirdlgg.o corelib_generic_fdrepdlg.o corelib_filedlgg.o corelib_filepickerg.o corelib_fontdlgg.o corelib_fontpickerg.o corelib_generic_listctrl.o corelib_prntdlgg.o corelib_generic_statusbr.o corelib_generic_textmeasure.o corelib_statbmp_osx.o corelib_generic_imaglist.o corelib_cocoa_anybutton.o corelib_cocoa_appprogress.o corelib_cocoa_button.o corelib_cocoa_checkbox.o corelib_cocoa_choice.o corelib_cocoa_colour.o corelib_cocoa_combobox.o corelib_cocoa_dialog.o corelib_cocoa_dirdlg.o corelib_cocoa_dnd.o corelib_cocoa_evtloop.o corelib_cocoa_filedlg.o corelib_cocoa_gauge.o corelib_cocoa_listbox.o corelib_cocoa_menu.o corelib_cocoa_menuitem.o corelib_cocoa_msgdlg.o corelib_cocoa_nativewin.o corelib_cocoa_nonownedwnd.o corelib_cocoa_notebook.o corelib_cocoa_radiobut.o corelib_preferences.o corelib_cocoa_printdlg.o corelib_cocoa_scrolbar.o corelib_cocoa_slider.o corelib_cocoa_spinbutt.o corelib_cocoa_srchctrl.o corelib_cocoa_statbox.o corelib_cocoa_statline.o corelib_cocoa_stattext.o corelib_cocoa_textctrl.o corelib_cocoa_tglbtn.o corelib_cocoa_toolbar.o corelib_cocoa_tooltip.o corelib_cocoa_window.o corelib_cocoa_settings.o corelib_cocoa_overlay.o corelib_cocoa_aboutdlg.o corelib_dataview_osx.o corelib_cocoa_notifmsg.o corelib_cocoa_taskbar.o corelib_datectrl_osx.o corelib_cocoa_datetimectrl.o corelib_core_sound.o corelib_sound_osx.o corelib_datetimectrl_osx.o corelib_hidjoystick.o corelib_carbon_sound.o corelib_cocoa_dataview.o corelib_timectrl_osx.o corelib_taskbarcmn.o corelib_cocoa_activityindicator.o corelib_cocoa_statbmp.o corelib_core_display.o corelib_cocoa_renderer.o corelib_cocoa_power.o corelib_accelcmn.o corelib_accesscmn.o corelib_anidecod.o corelib_affinematrix2d.o corelib_appcmn.o corelib_artprov.o corelib_artstd.o corelib_arttango.o corelib_bmpbase.o corelib_bmpbtncmn.o corelib_bookctrl.o corelib_btncmn.o corelib_cairo.o corelib_checkboxcmn.o corelib_checklstcmn.o corelib_choiccmn.o corelib_clipcmn.o corelib_clrpickercmn.o corelib_colourcmn.o corelib_colourdata.o corelib_combocmn.o corelib_cmdproc.o corelib_cmndata.o corelib_containr.o corelib_cshelp.o corelib_ctrlcmn.o corelib_common_ctrlsub.o corelib_dcbase.o corelib_dcbufcmn.o corelib_dcgraph.o corelib_dcsvg.o corelib_dirctrlcmn.o corelib_dlgcmn.o corelib_dndcmn.o corelib_dobjcmn.o corelib_docmdi.o corelib_docview.o corelib_dpycmn.o corelib_dseldlg.o corelib_fddlgcmn.o corelib_filectrlcmn.o corelib_filehistorycmn.o corelib_filepickercmn.o corelib_fontpickercmn.o corelib_fldlgcmn.o corelib_fontcmn.o corelib_fontdata.o corelib_graphicc.o corelib_fontenumcmn.o corelib_fontmap.o corelib_fontutilcmn.o corelib_framecmn.o corelib_gaugecmn.o corelib_gbsizer.o corelib_gdicmn.o corelib_geometry.o corelib_gifdecod.o corelib_graphcmn.o corelib_headercolcmn.o corelib_headerctrlcmn.o corelib_helpbase.o corelib_iconbndl.o corelib_imagall.o corelib_imagbmp.o corelib_image.o corelib_imagfill.o corelib_imaggif.o corelib_imagiff.o corelib_imagjpeg.o corelib_imagpcx.o corelib_imagpng.o corelib_imagpnm.o corelib_imagtga.o corelib_imagtiff.o corelib_imagxpm.o corelib_layout.o corelib_lboxcmn.o corelib_listctrlcmn.o corelib_markupparser.o corelib_matrix.o corelib_menucmn.o corelib_modalhook.o corelib_mousemanager.o corelib_nbkbase.o corelib_overlaycmn.o corelib_ownerdrwcmn.o corelib_paper.o corelib_panelcmn.o corelib_persist.o corelib_pickerbase.o corelib_popupcmn.o corelib_preferencescmn.o corelib_prntbase.o corelib_quantize.o corelib_radiobtncmn.o corelib_radiocmn.o corelib_rearrangectrl.o corelib_rendcmn.o corelib_rgncmn.o corelib_scrolbarcmn.o corelib_settcmn.o corelib_sizer.o corelib_slidercmn.o corelib_spinbtncmn.o corelib_spinctrlcmn.o corelib_srchcmn.o corelib_statbar.o corelib_statbmpcmn.o corelib_statboxcmn.o corelib_statlinecmn.o corelib_stattextcmn.o corelib_stockitem.o corelib_tbarbase.o corelib_textcmn.o corelib_textentrycmn.o corelib_textmeasurecmn.o corelib_toplvcmn.o corelib_treebase.o corelib_uiactioncmn.o corelib_valgen.o corelib_validate.o corelib_valtext.o corelib_valnum.o corelib_wincmn.o corelib_windowid.o corelib_wrapsizer.o corelib_xpmdecod.o corelib_animateg.o corelib_busyinfo.o corelib_buttonbar.o corelib_choicdgg.o corelib_choicbkg.o corelib_collheaderctrlg.o corelib_combog.o corelib_dcpsg.o corelib_dirctrlg.o corelib_dragimgg.o corelib_filectrlg.o corelib_headerctrlg.o corelib_generic_infobar.o corelib_listbkg.o corelib_logg.o corelib_markuptext.o corelib_msgdlgg.o corelib_numdlgg.o corelib_progdlgg.o corelib_preferencesg.o corelib_printps.o corelib_renderg.o corelib_richmsgdlgg.o corelib_scrlwing.o corelib_selstore.o corelib_spinctlg.o corelib_splitter.o corelib_srchctlg.o corelib_statbmpg.o corelib_stattextg.o corelib_textdlgg.o corelib_tipwin.o corelib_toolbkg.o corelib_treectlg.o corelib_treebkg.o corelib_vlbox.o corelib_vscroll.o corelib_xmlreshandler.o corelib_splash.o corelib_notifmsgg.o corelib_odcombo.o corelib_calctrlcmn.o corelib_grideditors.o corelib_bmpcboxcmn.o corelib_grid.o corelib_gridctrl.o corelib_hyperlinkg.o corelib_helpext.o corelib_sashwin.o corelib_gridsel.o corelib_addremovectrl.o corelib_tipdlg.o corelib_aboutdlgg.o corelib_gridcmn.o corelib_richtooltipcmn.o corelib_datectlg.o corelib_bannerwindow.o corelib_treelist.o corelib_datavcmn.o corelib_animatecmn.o corelib_odcombocmn.o corelib_hyperlnkcmn.o corelib_propdlg.o corelib_bmpcboxg.o corelib_richtooltipg.o corelib_timectrlg.o corelib_commandlinkbuttong.o corelib_notifmsgcmn.o corelib_wizard.o corelib_datavgen.o corelib_editlbox.o corelib_laywin.o corelib_calctrlg.o corelib_creddlgg.o corelib_rowheightcache.o corelib_common_bmpbndl.o corelib_bmpsvg.o corelib_powercmn.o corelib_curbndl.o corelib_webpdecoder.o corelib_imagwebp.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_core-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o advlib_dummy.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/dummy.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_adv-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_adv-3.3.a advlib_dummy.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_adv-3.3.a
warning: /Library/Developer/CommandLineTools/usr/bin/ranlib: archive library: /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_adv-3.3.a the table of contents is empty (no object file members in the library define global symbols)
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o medialib_mediactrlcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/mediactrlcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o medialib_osx_cocoa_mediactrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/mediactrl.mm
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_media-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_media-3.3.a medialib_mediactrlcmn.o medialib_osx_cocoa_mediactrl.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_media-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_chm.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/chm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_helpctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/helpctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_helpdata.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/helpdata.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_helpdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/helpdlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_helpfrm.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/helpfrm.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_helpwnd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/helpwnd.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_htmlcell.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/htmlcell.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_htmlfilt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/htmlfilt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_htmlpars.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/htmlpars.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_htmltag.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/htmltag.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_htmlwin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/htmlwin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_htmprint.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/htmprint.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_dflist.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_dflist.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_fonts.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_fonts.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_hline.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_hline.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_image.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_image.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_layout.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_layout.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_links.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_links.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_list.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_list.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_pre.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_pre.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_span.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_span.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_style.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_style.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_m_tables.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/m_tables.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_styleparams.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/styleparams.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_winpars.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/html/winpars.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o htmllib_htmllbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/htmllbox.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_html-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_html-3.3.a htmllib_chm.o htmllib_helpctrl.o htmllib_helpdata.o htmllib_helpdlg.o htmllib_helpfrm.o htmllib_helpwnd.o htmllib_htmlcell.o htmllib_htmlfilt.o htmllib_htmlpars.o htmllib_htmltag.o htmllib_htmlwin.o htmllib_htmprint.o htmllib_m_dflist.o htmllib_m_fonts.o htmllib_m_hline.o htmllib_m_image.o htmllib_m_layout.o htmllib_m_links.o htmllib_m_list.o htmllib_m_pre.o htmllib_m_span.o htmllib_m_style.o htmllib_m_tables.o htmllib_styleparams.o htmllib_winpars.o htmllib_htmllbox.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_html-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o webviewlib_osx_webview_chromium.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I..//3rdparty/cef -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/webview_chromium.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o webviewlib_osx_webview_webkit.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I..//3rdparty/cef -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/webview_webkit.mm
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o webviewlib_webview.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I..//3rdparty/cef -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/webview.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o webviewlib_webviewarchivehandler.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I..//3rdparty/cef -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/webviewarchivehandler.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o webviewlib_webviewfshandler.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I..//3rdparty/cef -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/webviewfshandler.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o webviewlib_common_webview_chromium.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I..//3rdparty/cef -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/webview_chromium.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_webview-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_webview-3.3.a webviewlib_osx_webview_chromium.o webviewlib_osx_webview_webkit.o webviewlib_webview.o webviewlib_webviewarchivehandler.o webviewlib_webviewfshandler.o webviewlib_common_webview_chromium.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_webview-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o qalib_debugrpt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/debugrpt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o qalib_dbgrptg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/generic/dbgrptg.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_qa-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_qa-3.3.a qalib_debugrpt.o qalib_dbgrptg.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_qa-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xmllib_xml.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xml/xml.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xmllib_xtixml.o -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/xtixml.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu_xml-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu_xml-3.3.a xmllib_xml.o xmllib_xtixml.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_baseu_xml-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_activityindicator.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_activityindicator.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_animatctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_animatctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_bannerwindow.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_bannerwindow.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_bmp.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_bmp.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_bmpcbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_bmpcbox.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_bmpbt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_bmpbt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_bttn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_bttn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_cald.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_cald.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_chckb.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_chckb.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_chckl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_chckl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_choic.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_choic.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_choicbk.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_choicbk.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_clrpicker.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_clrpicker.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_cmdlinkbn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_cmdlinkbn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_collpane.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_collpane.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_combo.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_combo.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_comboctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_comboctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_dataview.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_dataview.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_datectrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_datectrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_dirpicker.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_dirpicker.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_dlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_dlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_editlbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_editlbox.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_filectrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_filectrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_filepicker.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_filepicker.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_fontpicker.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_fontpicker.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_frame.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_frame.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_gauge.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_gauge.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_gdctl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_gdctl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_grid.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_grid.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_html.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_html.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_hyperlink.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_hyperlink.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_infobar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_infobar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_listb.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_listb.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_listbk.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_listbk.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_listc.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_listc.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_mdi.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_mdi.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_menu.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_menu.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_notbk.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_notbk.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_odcombo.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_odcombo.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_panel.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_panel.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_propdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_propdlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_radbt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_radbt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_radbx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_radbx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_scrol.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_scrol.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_scwin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_scwin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_htmllbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_htmllbox.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_simplebook.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_simplebook.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_sizer.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_sizer.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_slidr.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_slidr.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_spin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_spin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_split.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_split.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_srchctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_srchctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_statbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_statbar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_stbmp.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_stbmp.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_stbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_stbox.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_stlin.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_stlin.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_sttxt.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_sttxt.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_text.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_text.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_tglbtn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_tglbtn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_timectrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_timectrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_toolb.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_toolb.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_toolbk.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_toolbk.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_tree.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_tree.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_treebk.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_treebk.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_unkwn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_unkwn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_vlistbox.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_vlistbox.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_wizrd.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_wizrd.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xmlres.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xmlres.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xmlrsall.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xmlrsall.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o xrclib_xh_bookctrlbase.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_bookctrlbase.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_xrc-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_xrc-3.3.a xrclib_xh_activityindicator.o xrclib_xh_animatctrl.o xrclib_xh_bannerwindow.o xrclib_xh_bmp.o xrclib_xh_bmpcbox.o xrclib_xh_bmpbt.o xrclib_xh_bttn.o xrclib_xh_cald.o xrclib_xh_chckb.o xrclib_xh_chckl.o xrclib_xh_choic.o xrclib_xh_choicbk.o xrclib_xh_clrpicker.o xrclib_xh_cmdlinkbn.o xrclib_xh_collpane.o xrclib_xh_combo.o xrclib_xh_comboctrl.o xrclib_xh_dataview.o xrclib_xh_datectrl.o xrclib_xh_dirpicker.o xrclib_xh_dlg.o xrclib_xh_editlbox.o xrclib_xh_filectrl.o xrclib_xh_filepicker.o xrclib_xh_fontpicker.o xrclib_xh_frame.o xrclib_xh_gauge.o xrclib_xh_gdctl.o xrclib_xh_grid.o xrclib_xh_html.o xrclib_xh_hyperlink.o xrclib_xh_infobar.o xrclib_xh_listb.o xrclib_xh_listbk.o xrclib_xh_listc.o xrclib_xh_mdi.o xrclib_xh_menu.o xrclib_xh_notbk.o xrclib_xh_odcombo.o xrclib_xh_panel.o xrclib_xh_propdlg.o xrclib_xh_radbt.o xrclib_xh_radbx.o xrclib_xh_scrol.o xrclib_xh_scwin.o xrclib_xh_htmllbox.o xrclib_xh_simplebook.o xrclib_xh_sizer.o xrclib_xh_slidr.o xrclib_xh_spin.o xrclib_xh_split.o xrclib_xh_srchctrl.o xrclib_xh_statbar.o xrclib_xh_stbmp.o xrclib_xh_stbox.o xrclib_xh_stlin.o xrclib_xh_sttxt.o xrclib_xh_text.o xrclib_xh_tglbtn.o xrclib_xh_timectrl.o xrclib_xh_toolb.o xrclib_xh_toolbk.o xrclib_xh_tree.o xrclib_xh_treebk.o xrclib_xh_unkwn.o xrclib_xh_vlistbox.o xrclib_xh_wizrd.o xrclib_xmlres.o xrclib_xmlrsall.o xrclib_xh_bookctrlbase.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_xrc-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_framemanager.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/aui/framemanager.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_dockart.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/aui/dockart.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_floatpane.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/aui/floatpane.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_auibook.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/aui/auibook.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_auibar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/aui/auibar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_tabmdi.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/aui/tabmdi.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_tabart.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/aui/tabart.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_xh_aui.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_aui.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o auilib_xh_auitoolb.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_auitoolb.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_aui-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_aui-3.3.a auilib_framemanager.o auilib_dockart.o auilib_floatpane.o auilib_auibook.o auilib_auibar.o auilib_tabmdi.o auilib_tabart.o auilib_xh_aui.o auilib_xh_auitoolb.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_aui-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_art_internal.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/art_internal.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_art_msw.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/art_msw.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_art_aui.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/art_aui.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_bar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/bar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_buttonbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/buttonbar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_control.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/control.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_gallery.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/gallery.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_page.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/page.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_panel.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/panel.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_toolbar.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/ribbon/toolbar.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o ribbonlib_xh_ribbon.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_ribbon.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_ribbon-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_ribbon-3.3.a ribbonlib_art_internal.o ribbonlib_art_msw.o ribbonlib_art_aui.o ribbonlib_bar.o ribbonlib_buttonbar.o ribbonlib_control.o ribbonlib_gallery.o ribbonlib_page.o ribbonlib_panel.o ribbonlib_toolbar.o ribbonlib_xh_ribbon.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_ribbon-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_advprops.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/advprops.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_editors.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/editors.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_manager.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/manager.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_property.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/property.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_propgrid.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/propgrid.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_propgridiface.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/propgridiface.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_propgridpagestate.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/propgridpagestate.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_props.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/propgrid/props.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o propgridlib_xh_propgrid.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_propgrid.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_propgrid-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_propgrid-3.3.a propgridlib_advprops.o propgridlib_editors.o propgridlib_manager.o propgridlib_property.o propgridlib_propgrid.o propgridlib_propgridiface.o propgridlib_propgridpagestate.o propgridlib_props.o propgridlib_xh_propgrid.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_propgrid-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextbuffer.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextbuffer.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextformatdlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextformatdlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtexthtml.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtexthtml.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextimagedlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextimagedlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextprint.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextprint.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextstyledlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextstyledlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextstyles.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextstyles.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextsymboldlg.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextsymboldlg.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_richtextxml.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/richtext/richtextxml.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o richtextlib_xh_richtext.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_richtext.cpp
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_richtext-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_richtext-3.3.a richtextlib_richtextbuffer.o richtextlib_richtextctrl.o richtextlib_richtextformatdlg.o richtextlib_richtexthtml.o richtextlib_richtextimagedlg.o richtextlib_richtextprint.o richtextlib_richtextstyledlg.o richtextlib_richtextstyles.o richtextlib_richtextsymboldlg.o richtextlib_richtextxml.o richtextlib_xh_richtext.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_richtext-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o stclib_stc.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/stc.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o stclib_PlatWX.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/PlatWX.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o stclib_ScintillaWX.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/stc/ScintillaWX.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o stclib_xh_styledtextctrl.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/xrc/xh_styledtextctrl.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o stclib_PlatWXcocoa.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -I../src/stc/scintilla/include -I../src/stc/scintilla/src -D__WX__ -I../src/stc/lexilla/access -I../src/stc/lexilla/include -I../src/stc/lexilla/lexlib -I../src/stc/lexilla/include -I../src/stc/scintilla/include -I../src/stc/scintilla/src -O2 -arch arm64 -Wno-deprecated-declarations ../src/stc/PlatWXcocoa.mm
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_stc-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_stc-3.3.a stclib_stc.o stclib_PlatWX.o stclib_ScintillaWX.o stclib_xh_styledtextctrl.o stclib_PlatWXcocoa.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_stc-3.3.a
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o gllib_glcmn.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/common/glcmn.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o gllib_glcanvas_osx.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../src/osx/glcanvas_osx.cpp
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o gllib_cocoa_glcanvas.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/src/tiff/libtiff -I../src/tiff/libtiff -I../src/jpeg -I../src/png -I../3rdparty/libwebp/src -I../src/zlib -I../3rdparty/pcre/src/wx -I../src/expat/expat/lib -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -DWXBUILDING -O2 -arch arm64 -Wno-deprecated-declarations ../src/osx/cocoa/glcanvas.mm
rm -f /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_gl-3.3.a
ar rc /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_gl-3.3.a gllib_glcmn.o gllib_glcanvas_osx.o gllib_cocoa_glcanvas.o
ranlib /Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/libwx_osx_cocoau_gl-3.3.a
(if test -f utils/wxrc/Makefile ; then cd utils/wxrc && /Library/Developer/CommandLineTools/usr/bin/make all ; fi)
/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/bk-deps g++ -mmacosx-version-min=10.11 -c -o wxrc_wxrc.o -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I../../../include -D_FILE_OFFSET_BITS=64 -D__WXOSX_COCOA__ -I../../../utils/wxrc -DwxUSE_GUI=0 -Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy -Woverloaded-virtual -Wno-deprecated-declarations -O2 -arch arm64 -fno-common -dynamic -fPIC -DPIC ../../../utils/wxrc/wxrc.cpp
g++ -mmacosx-version-min=10.11 -o wxrc wxrc_wxrc.o -L/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib -arch arm64 -framework IOKit -framework Carbon -framework Cocoa -framework QuartzCore -framework AudioToolbox -framework System -framework OpenGL -lwx_baseu_xml-3.3 -lwx_baseu-3.3 -lwxzlib-3.3 -lwxregexu-3.3 -lwxexpat-3.3 -framework Security -lpthread -liconv -lcurl
(native) gabefrohaug@MacBook-Pro build-osx % cd ~/golly-code/gui-wx
(native) gabefrohaug@MacBook-Pro gui-wx % make clean; make
rm -f ObjOSX/*.o ../bgolly
rm -rf ../Golly.app
(cd ../lua && /Library/Developer/CommandLineTools/usr/bin/make clean)
rm -f liblua.a lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o lundump.o lvm.o lzio.o lauxlib.o lbaselib.o lcorolib.o ldblib.o liolib.o lmathlib.o loslib.o lstrlib.o ltablib.o lutf8lib.o loadlib.o linit.o
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/bigint.o ../gollybase/bigint.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/lifealgo.o ../gollybase/lifealgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/hlifealgo.o ../gollybase/hlifealgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/hlifedraw.o ../gollybase/hlifedraw.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/qlifealgo.o ../gollybase/qlifealgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/qlifedraw.o ../gollybase/qlifedraw.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/ltlalgo.o ../gollybase/ltlalgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/ltldraw.o ../gollybase/ltldraw.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/jvnalgo.o ../gollybase/jvnalgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/ruletreealgo.o ../gollybase/ruletreealgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/ruletable_algo.o ../gollybase/ruletable_algo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/ruleloaderalgo.o ../gollybase/ruleloaderalgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/ghashbase.o ../gollybase/ghashbase.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/ghashdraw.o ../gollybase/ghashdraw.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/readpattern.o ../gollybase/readpattern.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/writepattern.o ../gollybase/writepattern.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/liferules.o ../gollybase/liferules.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/util.o ../gollybase/util.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/liferender.o ../gollybase/liferender.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/viewport.o ../gollybase/viewport.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/lifepoll.o ../gollybase/lifepoll.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/generationsalgo.o ../gollybase/generationsalgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/superalgo.o ../gollybase/superalgo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxutils.o wxutils.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxprefs.o wxprefs.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxalgos.o wxalgos.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxrule.o wxrule.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxinfo.o wxinfo.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxhelp.o wxhelp.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxstatus.o wxstatus.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxview.o wxview.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxoverlay.o wxoverlay.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxrender.o wxrender.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxscript.o wxscript.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -x objective-c++ -DAUTORELEASE -c -o ObjOSX/wxlua.o wxlua.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND `python3-config --includes` -x objective-c++ -DAUTORELEASE -c -o ObjOSX/wxpython.o wxpython.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxfile.o wxfile.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxedit.o wxedit.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxcontrol.o wxcontrol.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxtimeline.o wxtimeline.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxundo.o wxundo.cpp
wxundo.cpp:1382:22: warning: comparison between NULL and non-pointer ('bool' and NULL) [-Wnull-arithmetic]
1382 | if (node == NULL) Fatal(_("Bug in UndoChange!"));
| ~~~~ ^ ~~~~
wxundo.cpp:1453:22: warning: comparison between NULL and non-pointer ('bool' and NULL) [-Wnull-arithmetic]
1453 | if (node == NULL) Fatal(_("Bug in RedoChange!"));
| ~~~~ ^ ~~~~
2 warnings generated.
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxselect.o wxselect.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxlayer.o wxlayer.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxmain.o wxmain.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -D__WXOSX_COCOA__ -DVERSION=5.0 -DWX_PRECOMP -DNO_GCC_PRAGMA -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib/wx/include/osx_cocoa-unicode-static-3.3 -I/Users/gabefrohaug/wxWidgets-3.3.1/include -I../gollybase -I../lua -I../sound -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -Wno-potentially-evaluated-expression -fno-strict-aliasing -fno-common -DENABLE_SOUND -c -o ObjOSX/wxgolly.o wxgolly.cpp
(cd ../lua && /Library/Developer/CommandLineTools/usr/bin/make all)
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lapi.o lapi.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lcode.o lcode.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lctype.o lctype.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o ldebug.o ldebug.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o ldo.o ldo.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o ldump.o ldump.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lfunc.o lfunc.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lgc.o lgc.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o llex.o llex.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lmem.o lmem.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lobject.o lobject.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lopcodes.o lopcodes.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lparser.o lparser.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lstate.o lstate.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lstring.o lstring.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o ltable.o ltable.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o ltm.o ltm.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lundump.o lundump.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lvm.o lvm.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lzio.o lzio.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lauxlib.o lauxlib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lbaselib.o lbaselib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lcorolib.o lcorolib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o ldblib.o ldblib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o liolib.o liolib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lmathlib.o lmathlib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o loslib.o loslib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lstrlib.o lstrlib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o ltablib.o ltablib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o lutf8lib.o lutf8lib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o loadlib.o loadlib.c
cc -O2 -Wall -Wextra -DLUA_USE_MACOSX -arch arm64 -arch x86_64 -mmacosx-version-min=10.11 -c -o linit.o linit.c
ar rcu liblua.a lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o lundump.o lvm.o lzio.o lauxlib.o lbaselib.o lcorolib.o ldblib.o liolib.o lmathlib.o loslib.o lstrlib.o ltablib.o lutf8lib.o loadlib.o linit.o
ranlib liblua.a
g++ -mmacosx-version-min=10.11 -o app.bin ObjOSX/bigint.o ObjOSX/lifealgo.o ObjOSX/hlifealgo.o ObjOSX/hlifedraw.o ObjOSX/qlifealgo.o ObjOSX/qlifedraw.o ObjOSX/ltlalgo.o ObjOSX/ltldraw.o ObjOSX/jvnalgo.o ObjOSX/ruletreealgo.o ObjOSX/ruletable_algo.o ObjOSX/ruleloaderalgo.o ObjOSX/ghashbase.o ObjOSX/ghashdraw.o ObjOSX/readpattern.o ObjOSX/writepattern.o ObjOSX/liferules.o ObjOSX/util.o ObjOSX/liferender.o ObjOSX/viewport.o ObjOSX/lifepoll.o ObjOSX/generationsalgo.o ObjOSX/superalgo.o ObjOSX/wxutils.o ObjOSX/wxprefs.o ObjOSX/wxalgos.o ObjOSX/wxrule.o ObjOSX/wxinfo.o ObjOSX/wxhelp.o ObjOSX/wxstatus.o ObjOSX/wxview.o ObjOSX/wxoverlay.o ObjOSX/wxrender.o ObjOSX/wxscript.o ObjOSX/wxlua.o ObjOSX/wxpython.o ObjOSX/wxfile.o ObjOSX/wxedit.o ObjOSX/wxcontrol.o ObjOSX/wxtimeline.o ObjOSX/wxundo.o ObjOSX/wxselect.o ObjOSX/wxlayer.o ObjOSX/wxmain.o ObjOSX/wxgolly.o ../lua/liblua.a -arch arm64 -Wl,-dead_strip -Wl,-S -framework IOKit -framework Carbon -framework Cocoa -framework System -framework QuartzCore -L/Users/gabefrohaug/wxWidgets-3.3.1/build-osx/lib \
-lwx_osx_cocoau_html-3.3 -lwx_osx_cocoau_adv-3.3 -lwx_osx_cocoau_core-3.3 \
-lwx_baseu-3.3 -lwx_baseu_net-3.3 -lwx_osx_cocoau_gl-3.3 \
-lwxtiff-3.3 -lwxpng-3.3 -lwxjpeg-3.3 -lwxzlib-3.3 \
-lz -lpthread -liconv -lcurl -framework WebKit -framework AudioToolbox -framework OpenGL
mkdir -p ../Golly.app/Contents
mkdir -p ../Golly.app/Contents/MacOS
mkdir -p ../Golly.app/Contents/Resources
sed -e "s/VERSION/5.0/" \
Info.plist.in >../Golly.app/Contents/Info.plist
echo -n "APPLGoLy" >../Golly.app/Contents/PkgInfo
mv -f app.bin ../Golly.app/Contents/MacOS/Golly
cp -f icons/*.icns ../Golly.app/Contents/Resources
g++ -mmacosx-version-min=10.11 -arch arm64 -DVERSION=5.0 -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -fno-strict-aliasing -fno-common -I../gollybase -c -o ObjOSX/bgolly.o ../cmdline/bgolly.cpp
g++ -mmacosx-version-min=10.11 -arch arm64 -DVERSION=5.0 -DZLIB -O3 -Wall -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-c++11-extensions -Wno-deprecated-declarations -fno-strict-aliasing -fno-common -I../gollybase -o ../bgolly ObjOSX/bigint.o ObjOSX/lifealgo.o ObjOSX/hlifealgo.o ObjOSX/hlifedraw.o ObjOSX/qlifealgo.o ObjOSX/qlifedraw.o ObjOSX/ltlalgo.o ObjOSX/ltldraw.o ObjOSX/jvnalgo.o ObjOSX/ruletreealgo.o ObjOSX/ruletable_algo.o ObjOSX/ruleloaderalgo.o ObjOSX/ghashbase.o ObjOSX/ghashdraw.o ObjOSX/readpattern.o ObjOSX/writepattern.o ObjOSX/liferules.o ObjOSX/util.o ObjOSX/liferender.o ObjOSX/viewport.o ObjOSX/lifepoll.o ObjOSX/generationsalgo.o ObjOSX/superalgo.o ObjOSX/bgolly.o -arch arm64 -lz
(native) gabefrohaug@MacBook-Pro gui-wx % Code: Select all
x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Re: Golly 5.0
No need. Glad to see you managed to build Golly.LaundryPizza03 wrote: January 9th, 2026, 10:56 pm On M4 Pro, do I also modify the command to build wxWidgets?
-
FlutterWithKSparkler
- Posts: 55
- Joined: October 14th, 2023, 12:43 pm
Re: Golly 5.0
The following diagonal line pattern in Life 1.06 format contains cells whose y value exceeds 2147483648 (2^31), and when loaded in Golly it is split into two distant parts instead of one continuous line.
Is this intended behavior, and does it affect display and simulation of those much sparser astronomically spaced patterns like the RCT?
Code: Select all
#Life 1.06
0 2147483646
1 2147483647
2 2147483648
3 2147483649
4 2147483650
5 2147483651(*≧▽≦)~Yay
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Re: Golly 5.0
No, but not a bug I'm likely to bother fixing.
No, those operations use Tom Rokicki's bigint class which supports arbitrarily large (or small) integers.and does it affect display and simulation of those much sparser astronomically spaced patterns like the RCT?
- MDA
- Posts: 231
- Joined: June 8th, 2026, 12:18 pm
- Location: In Haven (B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-ak)
- Contact:
Re: Golly 5.0
Is it currently possible to configure Golly to remove line breaks from RLEs? As an example, instead of
could Golly be configured to produce
Code: Select all
x = 41, y = 89, rule = B3/S23-a5
6bo$5b3o$4bo3bo$ob2ob3o$2obo3bo$2o3bo$2bobo2bo$4bobo$3bo$4bobo$2bobo2b
2o$2b2ob2o2bo$6bo2bo$7bo5b2o$6bob2o3b2o$4bobob4o3bo$5b2o5b4o2$11b2ob2o
$11bo2bo$10bob2obo$8b3o3bobo$8bo3b6o$8bo8b2o$8bob6ob2o$9b3o4b2o$10bo4b
o$8bo5bo$5b2obob3o2bo$8bo4bobo$8b2ob2o2b2o$8bo3bo$11bo2bo2bobo$13bob2o
2bo$10b2obobob4o$12b2obobob2o$16bob2o$14bo4b2o$16b3obo3bo$18b2o4bo$20b
2o3bob2o$17bob2o4b4o$25b2o3bo$18bobo9bo$19bo2bo2b2obo$20b6o3bo$23bo2b
3o$20b2obo$19bobo3bo$21bo4bo$23bob2o$18bo2bo3bobob3o$20b3o3b3o$18bobo
2bo6b3o$19b4o2bo7bo$23bobobob3obo$28b2o2bo$24b2obobob2o$24bob2o4bo$23b
2obobo3bo$26bobo2bo$26bo3b2o5bo$26bob2ob2o2bobo$31bobo3b2o$39bo$31bobo
4bo$26b5o2b3o2bo$26bobobobo3b2o$28b2o4bobo$28b2ob2ob2o$28bo5bo$27b2ob
5o2bo$26b2obo3bo2b2o$27bo2b2o3bo2b2o$26b2ob2o2bo4b2o$28bobo$30bo2bo3b
3o$29bo9bo$30bobob3obo$29bo2b2o2bo$29bo4b3o2b2o$29bo$28b5o3bob2o$31b3o
3b4o$28b3o4bobob2o$29bo3b2o4bo$33bo4bo$34b2ob2o$36bo!
Code: Select all
x = 41, y = 89, rule = B3/S23-a5
6bo$5b3o$4bo3bo$ob2ob3o$2obo3bo$2o3bo$2bobo2bo$4bobo$3bo$4bobo$2bobo2b2o$2b2ob2o2bo$6bo2bo$7bo5b2o$6bob2o3b2o$4bobob4o3bo$5b2o5b4o$$11b2ob2o$11bo2bo$10bob2obo$8b3o3bobo$8bo3b6o$8bo8b2o$8bob6ob2o$9b3o4b2o$10bo4bo$8bo5bo$5b2obob3o2bo$8bo4bobo$8b2ob2o2b2o$8bo3bo$11bo2bo2bobo$13bob2o2bo$10b2obobob4o$12b2obobob2o$16bob2o$14bo4b2o$16b3obo3bo$18b2o4bo$20b2o3bob2o$17bob2o4b4o$25b2o3bo$18bobo9bo$19bo2bo2b2obo$20b6o3bo$23bo2b3o$20b2obo$19bobo3bo$21bo4bo$23bob2o$18bo2bo3bobob3o$20b3o3b3o$18bobo2bo6b3o$19b4o2bo7bo$23bobobob3obo$28b2o2bo$24b2obobob2o$24bob2o4bo$23b2obobo3bo$26bobo2bo$26bo3b2o5bo$26bob2ob2o2bobo$31bobo3b2o$39bo$31bobo4bo$26b5o2b3o2bo$26bobobobo3b2o$28b2o4bobo$28b2ob2ob2o$28bo5bo$27b2ob5o2bo$26b2obo3bo2b2o$27bo2b2o3bo2b2o$26b2ob2o2bo4b2o$28bobo$30bo2bo3b3o$29bo9bo$30bobob3obo$29bo2b2o2bo$29bo4b3o2b2o$29bo$28b5o3bob2o$31b3o3b4o$28b3o4bobob2o$29bo3b2o4bo$33bo4bo$34b2ob2o$36bo!My website (a database of Life objects, WIP).
GlidINT has been released!
GlidINT has been released!
Code: Select all
x = 5, y = 17, rule = B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-akHistory
C$2C$.2C$2C11$.3D$3.D$2.3D!
[[ STOP 72 ]]
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Re: Golly 5.0
There's no setting to do that but it would be very easy to write a small Lua/Python script to remove line breaks from a given RLE (via file or clipboard).MDA wrote: August 10th, 2026, 4:39 am Is it currently possible to configure Golly to remove line breaks from RLEs?
Re: Golly 5.0
golly 5.0 ships with less than 10 Mb of patterns
if i add 100 Mb of patterns, can i sell it as an "app"
Thank You !
P.S. how about if i also add the latest version of "the book" in PDF
( i m going to rave about how great all this looks on people's giant screen TVs )
if i add 100 Mb of patterns, can i sell it as an "app"
Thank You !
P.S. how about if i also add the latest version of "the book" in PDF
( i m going to rave about how great all this looks on people's giant screen TVs )
"One picture is worth 1000 words; but one thousand words, carefully crafted, can paint an infinite number of pictures."
- autonomic writing
forFUN : http://gol.jct.onl
ArtGallery : http://cgolart.onfav.net
VideoWS : http://conway.life
- autonomic writing
forFUN : http://gol.jct.onl
ArtGallery : http://cgolart.onfav.net
VideoWS : http://conway.life
- Andrew
- Moderator
- Posts: 1039
- Joined: June 2nd, 2009, 2:08 am
- Location: Melbourne, Australia
- Contact:
Re: Golly 5.0
No.
I'm pretty confident the authors wouldn't agree to that.P.S. how about if i also add the latest version of "the book" in PDF