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
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/
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
>
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
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
> 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
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
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
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).
__