Re: [Development] Qt 4.x and Qt 5 frameworks should use @rpath (QTBUG-31814)

2014-08-07 Thread Jake Petroules
Expanding on my previous benchmarks regarding embedding libraries in app bundles, see the following script... on my old, slow machine I've observed it completing in < 10 seconds to copy both debug and release versions of the libraries listed below. Only two processes need to be forked, too. One

Re: [Development] Qt 4.x and Qt 5 frameworks should use @rpath (QTBUG-31814)

2014-08-07 Thread Jake Petroules
On 2014-08-07, at 10:22 AM, Thiago Macieira wrote: > On Thursday 07 August 2014 14:55:06 Adam Strzelecki wrote: >> The changes for qtbase are there: >> >>https://codereview.qt-project.org/91669 >>https://codereview.qt-project.org/91670 >>https://codereview.qt-project.org/

Re: [Development] Qt 4.x and Qt 5 frameworks should use @rpath (QTBUG-31814)

2014-08-07 Thread Thiago Macieira
On Thursday 07 August 2014 14:55:06 Adam Strzelecki wrote: > The changes for qtbase are there: > > https://codereview.qt-project.org/91669 > https://codereview.qt-project.org/91670 > https://codereview.qt-project.org/91671 > https://codereview.qt-project.org/91672 >

Re: [Development] Stopping a QProcess gracefully

2014-08-07 Thread Thiago Macieira
On Wednesday 06 August 2014 23:19:49 achart...@fastmail.fm wrote: > Hello, > > I am trying to find the proper way to gracefully exit a QProcess. The > particular process that I am running does some work and then is in a > waiting state, exiting only when the user presses the Enter key. This > work

Re: [Development] Segmentation fault with qpa directfb when upgrade qt5.2

2014-08-07 Thread Thiago Macieira
On Thursday 07 August 2014 09:31:40 Nancy Zou wrote: > Hi All > > Recently, I upgrade qt to 5.2.0 version and I find qpa directfb can't work. > directfb version is 1.6.0.3 > gdb info: > Program received signal SIGSEGV, Segmentation fault. > [Switching to LWP 1590] > 0xb6079ecc in QThreadPrivate::s

Re: [Development] Stopping a QProcess gracefully

2014-08-07 Thread achartier
> On Wed, Aug 06, 2014 at 11:19:49PM -0700, achart...@fastmail.fm wrote: > > (3) Writing the return key to the process with QProcess::write("\r") and > > QProcess::write("\\r) > > > you need to use waitForBytesWritten() (or actually wait for the signal > to be delivered). Thanks! Forgot write was

Re: [Development] Qt 4.x and Qt 5 frameworks should use @rpath (QTBUG-31814)

2014-08-07 Thread Adam Strzelecki
The changes for qtbase are there: https://codereview.qt-project.org/91669 https://codereview.qt-project.org/91670 https://codereview.qt-project.org/91671 https://codereview.qt-project.org/91672 https://codereview.qt-project.org/91673 https://coderevi

[Development] Segmentation fault with qpa directfb when upgrade qt5.2

2014-08-07 Thread Nancy Zou
Hi All Recently, I upgrade qt to 5.2.0 version and I find qpa directfb can't work. directfb version is 1.6.0.3 gdb info: Program received signal SIGSEGV, Segmentation fault. [Switching to LWP 1590] 0xb6079ecc in QThreadPrivate::start(void*) () from /usr/lib/libQt5Core.so.5 (gdb) backtrace #0 0xb60

Re: [Development] Stopping a QProcess gracefully

2014-08-07 Thread Oswald Buddenhagen
On Wed, Aug 06, 2014 at 11:19:49PM -0700, achart...@fastmail.fm wrote: > (3) Writing the return key to the process with QProcess::write("\r") and > QProcess::write("\\r) > you need to use waitForBytesWritten() (or actually wait for the signal to be delivered). __