On Friday 18 of October 2013 02:31:03 Moritz Kassner wrote:
> Here are my questions:
> 1) What are the differences in the bootloader for console and windowed 
> applications that may trigger this error?

Not sure what might trigger this error, but for the windowed application the 
bootloader is linked with some corefoundation libraries:

-------------------------
$ otool -L run
run:
        /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current 
version 159.1.0)
        /usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 
1.2.5)
        /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current 
version 1105.0.0)
-------------------------
$ otool -L runw
runw:
        /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 
(compatibility version 2.0.0, current version 153.0.0)
        /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current 
version 159.1.0)
        /usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 
1.2.5)
        /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current 
version 1105.0.0)
        
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 
(compatibility version 1.0.0, current version 53.0.0)
        
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 
(compatibility version 150.0.0, current version 635.21.0)
        
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
 
(compatibility version 1.0.0, current version 41.0.0)
---------------------

> 2) How do I redirect my stdout to Console.app when I run my .app bundle? 
> This would be helpfull!

OSX redirects stdout/stderr of the app bundle to a log viewer.

I remember I used it only once but I  could see there the stdout of the .app 
bundle.

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyinstaller.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to