Hi,

I'm having some issues building a onefile app using wxpython 3.0.2.0 with 
pyinstaller 3.3.dev0-b78bfe5 on osx 10.11.6, and I was wondering if anyone 
else has run into the same problem, described in this thread 
<https://github.com/pyinstaller/pyinstaller/issues/1825>).
Basically every time I try to run the app I get a ton errors followed by a 
segfault at the point where I declare app = wx.App(false). The thread I 
linked makes the problem out to be wx libraries, but I can't make head or 
tails of the workaround (which involves a bunch of library re-linking which 
I'm not familiar with at all). I've built previous versions of my app 
before with absolutely no problems, so I was hoping that someone here has 
seen this before and can help me figure out what's happened to break things.

I posted a similar thread 
<https://groups.google.com/forum/#!topic/wxpython-users/QV20uSKraxw>on the 
wxpython board, but I thought I'd try my luck here as well.

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pyinstaller+unsubscr...@googlegroups.com.
To post to this group, send email to pyinstaller@googlegroups.com.
Visit this group at https://groups.google.com/group/pyinstaller.
For more options, visit https://groups.google.com/d/optout.
#!/usr/bin/python
# -*- coding: utf-8 -*-

import wx

print 'Hello world'
wx = wx.App(False)
print 'Goodbye cruel world'
PyInstaller Bootloader 3.x
LOADER: executable is /Users/dliflc/Documents/utility projects/hello 
world/dist/helloworld
LOADER: homepath is /Users/dliflc/Documents/utility projects/hello world/dist
LOADER: _MEIPASS2 is NULL
LOADER: archivename is /Users/dliflc/Documents/utility projects/hello 
world/dist/helloworld
LOADER: Extracting binaries
LOADER: Executing self as child
LOADER: set _MEIPASS2 to 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5
LOADER: AppleEvent - processing...
LOADER: AppleEvent - installed handler.
PyInstaller Bootloader 3.x
LOADER: executable is /Users/dliflc/Documents/utility projects/hello 
world/dist/helloworld
LOADER: homepath is /Users/dliflc/Documents/utility projects/hello world/dist
LOADER: _MEIPASS2 is /var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5
LOADER: archivename is /Users/dliflc/Documents/utility projects/hello 
world/dist/helloworld
LOADER: Already in the child - running user's code.
LOADER: Python library: 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/Python
LOADER: Loaded functions from Python library.
LOADER: Manipulating environment (sys.path, sys.prefix)
LOADER: sys.prefix is 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5
LOADER: Setting runtime options
LOADER: Initializing python
LOADER: Overriding Python's sys.path
LOADER: Post-init sys.path is 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5
LOADER: Setting sys.argv
LOADER: setting sys._MEIPASS
LOADER: importing modules from CArchive
LOADER: extracted struct
LOADER: callfunction returned...
LOADER: extracted pyimod01_os_path
LOADER: callfunction returned...
LOADER: extracted pyimod02_archive
LOADER: callfunction returned...
LOADER: extracted pyimod03_importers
LOADER: callfunction returned...
LOADER: Installing PYZ archive with Python modules.
LOADER: PYZ archive: out00-PYZ.pyz
LOADER: Running pyiboot01_bootstrap.py
LOADER: Running helloworld.py
objc[1489]: Class wxNSAppController is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class ModalDialogDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSApplication is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class MyFrameLoadMonitor is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class MyPolicyDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class MyUIDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxCPWCDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxMacFontPanelAccView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSButton is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxDisclosureNSButton is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSPopUpButton is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSComboBox is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class DropSourceDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxOpenPanelDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSProgressIndicator is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTableColumn is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTableDataSource is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTableView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSMenu is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSMenuController is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSMenuItem is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSWindow is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSPanel is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNonOwnedWindowController is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxTabViewController is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTabView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class WXCTabViewImageItem is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSRadioButton is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSScroller is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSSlider is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSStepper is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSSearchField is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSBox is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSStaticTextView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxMaximumLengthFormatter is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSSecureTextField is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTextScrollView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTextFieldEditor is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTextView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSTextField is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSToolbarItem is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSToolbarDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSToolbar is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSToolBarButton is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSAnimationDelegate is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_core-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxPointerObject is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxCustomRendererObject is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxDVCNSTableColumn is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxSortDescriptorObject is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxCocoaOutlineDataSource is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxCustomCell is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxImageTextCell is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxCocoaOutlineView is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxNSDatePicker is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
objc[1489]: Class wxOSXStatusItemTarget is implemented in both 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.0.2.0.dylib
 and 
/var/folders/p3/czwth07d5sn0j8gykyb8wy_00000gp/T/_MEIGCDfT5/libwx_osx_cocoau_adv-3.0.dylib.
 One of the two will be used. Which one is undefined.
Hello world
Segmentation fault: 11
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.

Reply via email to