Re: [Development] Debug Qt on Mac

2014-08-24 Thread Ziller Eike
On Aug 25, 2014, at 3:09 AM, Jake Petroules wrote: > `export DYLD_IMAGE_SUFFIX=_debug` before running your application. Simple as > that. Note that this option will be ignored if DYLD_ROOT_PATH is set. > > See > https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/

Re: [Development] Debug Qt on Mac

2014-08-24 Thread Jake Petroules
`export DYLD_IMAGE_SUFFIX=_debug` before running your application. Simple as that. Note that this option will be ignored if DYLD_ROOT_PATH is set. See https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/dyld.1.html for related documentation. -- Jake Petroules -

Re: [Development] [Gimp-developer] Two-minute(!)-survey on motivation and free time contribution of open source developers

2014-08-24 Thread Stefan Kullack
Dear Kurt, Of course, I’ll write a bit more about it:   What I want to do is get an idea of whether and how the free time sacrifice of open source developers is linked to the type of primary motivation they have for contributing to FLOSS in their free time. I know that there are studies that a

[Development] QFont: change substitutions

2014-08-24 Thread Jan Sundermeyer
Qt uses substitute fonts when a character is not present in the principal font. Apparently the substitute fonts are not always to the users taste, so they like to change the substitution. QT offers a function for it (QFont::substitutes), however it would be tedious to fill a substitution list from

[Development] Debug Qt on Mac

2014-08-24 Thread Jan Sundermeyer
After compiling Qt from git on mac, debugging an application which was build against that Qt-version does not allow debugging of Qt-functions though of all other internal application functions. Seems that the build is not linked against the debug-version of the qt libs. How can that be done ? _