Re: [Interest] -u and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together

2015-10-29 Thread Hamish Moffatt
On 26/10/15 10:55, Hamish Moffatt wrote: On 26/10/15 10:49, Nuno Santos wrote: Hi, Since I have upgraded to Xcode 7.1 and Mac OSX 10.11, when compiling an iOS app on Qt 5.4.1 I have this error: -u and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together Does anyone has

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Thiago Macieira
On Thursday 29 October 2015 16:40:43 Thiago Macieira wrote: > If you wanted to do a codec conversion with istream, you'd do it on top, not > below. Note that wistream classes (like wifstream) don't convert from 8-bit > to wchar_t: they read wchar_t from the input. I don't know how to convert > from

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Thiago Macieira
On Friday 30 October 2015 00:08:54 Elvis Stansvik wrote: > > Slow? This is not the main problem. The main problem is that that seek() > > and pos() uses device's units. But I need to seek() one character back, > > and what then just -1, or -2, or something else? unget() can't be > > implemented wit

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Igor Mironchik
On 30.10.2015 02:08, Elvis Stansvik wrote: 2015-10-29 23:43 GMT+01:00 Igor Mironchik : On 30.10.2015 00:05, Thiago Macieira wrote: On Thursday 29 October 2015 21:49:40 Igor Mironchik wrote: On 29.10.2015 06:51, Thiago Macieira wrote: On Thursday 29 October 2015 05:51:36 Igor Mironchik wrot

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Thiago Macieira
On Friday 30 October 2015 10:03:17 Hamish Moffatt wrote: > > Visual Studio is not the problem for Qt developers (why you need such > > generator?), but without XCode generator you just can't live if you > > develop for iOS platform, for example... > > Because I like to develop in VS. I guess you'r

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Elvis Stansvik
2015-10-29 23:43 GMT+01:00 Igor Mironchik : > > > On 30.10.2015 00:05, Thiago Macieira wrote: >> >> On Thursday 29 October 2015 21:49:40 Igor Mironchik wrote: >>> >>> On 29.10.2015 06:51, Thiago Macieira wrote: On Thursday 29 October 2015 05:51:36 Igor Mironchik wrote: > > P.S. Wh

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Thiago Macieira
On Friday 30 October 2015 01:43:22 Igor Mironchik wrote: > > peek > > It can be useful in some cases, for example, when you implementing some > sort of parsers where very often you need to know what next character is > but don't really need to seek stream's position. > > > ung

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Hamish Moffatt
On 30/10/15 09:57, Igor Mironchik wrote: On 30.10.2015 01:53, Hamish Moffatt wrote: On 30/10/15 01:31, Gian Maxera wrote: :-( So, there is no alternative but manually tweak the generated Xcode :-( Can you do the DWARF generation yourself and combine that and your custom post link stage in

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Igor Mironchik
On 30.10.2015 01:53, Hamish Moffatt wrote: On 30/10/15 01:31, Gian Maxera wrote: :-( So, there is no alternative but manually tweak the generated Xcode :-( Can you do the DWARF generation yourself and combine that and your custom post link stage into the post link script? It would be gre

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Hamish Moffatt
On 30/10/15 01:31, Gian Maxera wrote: :-( So, there is no alternative but manually tweak the generated Xcode :-( Can you do the DWARF generation yourself and combine that and your custom post link stage into the post link script? It would be great if qmake had some more hooks for custom step

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Igor Mironchik
On 30.10.2015 00:05, Thiago Macieira wrote: On Thursday 29 October 2015 21:49:40 Igor Mironchik wrote: On 29.10.2015 06:51, Thiago Macieira wrote: On Thursday 29 October 2015 05:51:36 Igor Mironchik wrote: P.S. Why QTextStream doesn't have something like get(), peek(), unget(), putback()? E

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread william.croc...@analog.com
On 10/29/2015 05:05 PM, Thiago Macieira wrote: On Thursday 29 October 2015 21:49:40 Igor Mironchik wrote: On 29.10.2015 06:51, Thiago Macieira wrote: On Thursday 29 October 2015 05:51:36 Igor Mironchik wrote: P.S. Why QTextStream doesn't have something like get(), peek(), unget(), putback()?

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Thiago Macieira
On Thursday 29 October 2015 21:49:40 Igor Mironchik wrote: > On 29.10.2015 06:51, Thiago Macieira wrote: > > On Thursday 29 October 2015 05:51:36 Igor Mironchik wrote: > >> P.S. Why QTextStream doesn't have something like get(), peek(), unget(), > >> putback()? > > > > Explain what you would want

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Igor Mironchik
On 29.10.2015 17:31, Gian Maxera wrote: :-( So, there is no alternative but manually tweak the generated Xcode :-( Who knows, but I didn't find another solution... On 29 Oct 2015, at 14:23, Igor Mironchik wrote: Hi, 10/29/2015 12:29 PM, Gustavsen Richard пишет: I try QMAKE_POST_LINK …

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Igor Mironchik
On 29.10.2015 06:51, Thiago Macieira wrote: On Thursday 29 October 2015 05:51:36 Igor Mironchik wrote: P.S. Why QTextStream doesn't have something like get(), peek(), unget(), putback()? Explain what you would want those functions to do. The same like in std::istream, for example... -- Best

[Interest] Compile Errors (Qt 5.4.2) with OS X 10.10 and JavaScript

2015-10-29 Thread Mike Jackson
I am trying to compile Qt with C++11 support on OS X 10.10 using Xcode 6.4 tooling. ./configure -opensource -confirm-license -debug-and-release -release -nomake tests -nomake examples -no-compile-examples \ -qt-zlib -qt-libjpeg -qt-libpng -platform macx-clang -openssl -c++11 -sdk macosx10.9 -n

Re: [Interest] QFile::size() and QTextStream::pos()

2015-10-29 Thread Thiago Macieira
On Thursday 29 October 2015 05:51:36 Igor Mironchik wrote: > P.S. Why QTextStream doesn't have something like get(), peek(), unget(), > putback()? Explain what you would want those functions to do. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Techn

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Gian Maxera
:-( So, there is no alternative but manually tweak the generated Xcode :-( > On 29 Oct 2015, at 14:23, Igor Mironchik wrote: > > Hi, > > 10/29/2015 12:29 PM, Gustavsen Richard пишет: >>> I try QMAKE_POST_LINK … but it’s executed just one step before the >>> generation of dSYM :-( >>> So, I nee

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Igor Mironchik
Hi, 10/29/2015 12:29 PM, Gustavsen Richard пишет: I try QMAKE_POST_LINK … but it’s executed just one step before the generation of dSYM :-( So, I need something like QMAKE_POST_POST_LINK :-P Then your out of luck :) There is no such thing in QMake (that will affect the Xcode project). What yo

[Interest] QT5.5, Video playback over Wayland

2015-10-29 Thread James Hughes
Hello all, I have some questions about running QT5.5 over Wayland, and playing back video using a gstreamer pipeline, on an embedded system. We have a QT application and performance is much slower than when using gstreamer gst-launch1.0 directly. We have determined that the cause of this is tha

Re: [Interest] How to run a custom command after dSYM generation for iOS ?

2015-10-29 Thread Gustavsen Richard
> I try QMAKE_POST_LINK … but it’s executed just one step before the generation > of dSYM :-( > So, I need something like QMAKE_POST_POST_LINK :-P Then your out of luck :) There is no such thing in QMake (that will affect the Xcode project). What you can do is to manually create an extra target

[Interest] Qtmultimedia (5.3.2) + Yocto Dizzy + no video

2015-10-29 Thread Stefano Gurrieri
Hi, I write you as for the question: "chances of usable qtmultimedia on imx6"... I need to use QtMultimedia (Qt 5.3.2) in my Yocto Dizzy image, but I'm not able to see any video. When I try to add (in local.conf ) PACKAGECONFIG_append_pn-qtmultimedia = " gstreamer010" I've an error during the buil