Re: [Development] Qt 4.8 clang and libc++

2012-09-12 Thread Thiago Macieira
On quarta-feira, 12 de setembro de 2012 21.40.45, Sylvain Pointeau wrote: > is it enough to compile qtbase to have qtcore and widgets? Yes. Please start a new thread. The subject has disappeared on my mail reader already since this thread has now gone so deep... -- Thiago Macieira - thiago.macie

Re: [Development] Qt 4.8 clang and libc++

2012-09-12 Thread Sylvain Pointeau
when I compiled qtbase, and make install, the headers are not installed. did I miss something? ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-12 Thread Sylvain Pointeau
On Tue, Sep 11, 2012 at 10:55 PM, Sylvain Pointeau < sylvain.point...@gmail.com> wrote: > ok then I compiled and deployed only qtbase > I deployed it and now > "make" on my project, does nothing, always saying that the files are up.todate > > did you meet the same issue? > > QMAKE_TARGET and TARGE

Re: [Development] Qt 4.8 clang and libc++

2012-09-12 Thread Sylvain Pointeau
is it enough to compile qtbase to have qtcore and widgets? ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-11 Thread Sylvain Pointeau
ok then I compiled and deployed only qtbase I deployed it and now "make" on my project, does nothing, always saying that the files are up.todate did you meet the same issue? ___ Development mailing list Development@qt-project.org http://lists.qt-project.

Re: [Development] Qt 4.8 clang and libc++

2012-09-11 Thread Sylvain Pointeau
> > Don't type make in its dir. I though it was something in the configure ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-11 Thread Thiago Macieira
On terça-feira, 11 de setembro de 2012 13.37.19, Sylvain Pointeau wrote: > > If you don't want Qt 3D, simply don't build it. > > How should I do it? Don't type make in its dir. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center Int

Re: [Development] Qt 4.8 clang and libc++

2012-09-11 Thread Sylvain Pointeau
> > If you don't want Qt 3D, simply don't build it. > > How should I do it? ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-11 Thread Sylvain Pointeau
> > You only pasted parts that are inside libc++. Without knowing what Assimp > did > to trigger that error, I am assuming it is doing everything right and > therefore the error is inside libc++. > How can I deactivate Assimp, I don't need it, neither webkit. I just need QtCore and widget. ___

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
> > > What's the version of your clang? I am using MacPorts Clang 3.1 and never > have this error. > > In fact, I just rebuilt Qt 5 from latest git and other than qbasicatomic.h > (which should be fixed with clang 3.2) and qmacstyle_mac.mm (CGFloat size > is different in 32-bit), I don't have any e

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 23.56.24, Sylvain Pointeau wrote: > and now this error: > > In file included from ../../3rdparty/assimp/code/Importer.cpp:46: > In file included from ../../3rdparty/assimp/code/AssimpPCH.h:106: > /usr/bin/../lib/c++/v1/list:212:9: error: field has incomplet

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Stephen Chu
On 9/10/12 4:21 PM, Sylvain Pointeau wrote: > and now I have this error: > > In file included from kernel/qvariant.cpp:64: > In file included from > ../../include/QtCore/5.0.0/QtCore/private/qvariant_p.h:1: > ../../include/QtCore/5.0.0/QtCore/private/../../../../../src/corelib/kernel/qvariant_p.h:2

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
and now this error: In file included from ../../3rdparty/assimp/code/Importer.cpp:46: In file included from ../../3rdparty/assimp/code/AssimpPCH.h:106: /usr/bin/../lib/c++/v1/list:212:9: error: field has incomplete type 'Assimp::LWS::Element' _Tp __value_; ^ /usr/bin/../lib/c++/v1/type

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
then I do # define Q_DECL_FINAL # define Q_DECL_OVERRIDE will see if that works ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 22.21.16, Sylvain Pointeau wrote: > error: > base 'SelfTestFinal1' is marked 'final' > struct Derived : public T, public FallbackMixin {}; // <- ... > ^ That's in a section marked: // C++98 version (doesn't work

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
and now I have this error: In file included from kernel/qvariant.cpp:64: In file included from ../../include/QtCore/5.0.0/QtCore/private/qvariant_p.h:1: ../../include/QtCore/5.0.0/QtCore/private/../../../../../src/corelib/kernel/qvariant_p.h:248:33: error: base 'SelfTestFinal1' is marked 'fi

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Olivier Goffart
On Monday 10 September 2012 10:49:41 Sylvain Pointeau wrote: > > > I had a similar issue with ICC 13.0, but since the ICC documentation > > > says > > > that its constexpr support is only partial, I attributed it to a > > > compiler > > > bug. > > > > > > Try turning off constexpr support. > > Ex

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
> > > I had a similar issue with ICC 13.0, but since the ICC documentation says > > that its constexpr support is only partial, I attributed it to a compiler > > bug. > > > > Try turning off constexpr support. > Excellent, I will try this evening. ___ De

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 10.07.17, Thiago Macieira wrote: > On segunda-feira, 10 de setembro de 2012 09.57.37, Sylvain Pointeau wrote: > > In file included from animation/qabstractanimation.cpp:1434: > > .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization > >

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 09.57.37, Sylvain Pointeau wrote: > In file included from animation/qabstractanimation.cpp:1434: > .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization > of non-aggregate type 'QBasicAtomicInt' > (aka 'QBasicAtomicInteger') with a

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
In file included from animation/qabstractanimation.cpp:1434: .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization of non-aggregate type 'QBasicAtomicInt' (aka 'QBasicAtomicInteger') with an initializer list QT_MOC_LITERAL(4, 42, 25), Is it linked to the clang/libc++ iss

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Sylvain Pointeau
> > > You can also get recent GCC's libstdc++ >> > > It should work with the standard tool provided by apple via xcode. > Other solutions is loss of time, we are never sure if it will work 100%. > Also to mention that Apple is definitely going to clang, GCC on mac os x is going to disappear. _

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Sylvain Pointeau
> > > You can also get recent GCC's libstdc++ > It should work with the standard tool provided by apple via xcode. Other solutions is loss of time, we are never sure if it will work 100%. ___ Development mailing list Development@qt-project.org http://lis

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Stephen Chu
On 9/8/12 9:55 AM, Olivier Goffart wrote: > On Saturday 08 September 2012 15:42:20 Sylvain Pointeau wrote: clang-libc++ is the only way to have C++11 on mac os x >>> >>> No. The other way was mentioned already in this thread. >> >> no, you need to link with libc++ to have the library support f

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Olivier Goffart
On Saturday 08 September 2012 15:42:20 Sylvain Pointeau wrote: > > > clang-libc++ is the only way to have C++11 on mac os x > > > > No. The other way was mentioned already in this thread. > > no, you need to link with libc++ to have the library support for c++11. You can also get recent GCC's li

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Sylvain Pointeau
> > > clang-libc++ is the only way to have C++11 on mac os x > > No. The other way was mentioned already in this thread. > no, you need to link with libc++ to have the library support for c++11. ___ Development mailing list Development@qt-project.org htt

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Konstantin Tokarev
08.09.2012, 16:24, "Sylvain Pointeau" : > clang-libc++ is the only way to have C++11 on mac os x No. The other way was mentioned already in this thread. -- Regards, Konstantin ___ Development mailing list Development@qt-project.org http://lists.qt-pr

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Sylvain Pointeau
> > In file included from animation/qabstractanimation.cpp:1434: > .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization > of non-aggregate type 'QBasicAtomicInt' > (aka 'QBasicAtomicInteger') with an initializer list > QT_MOC_LITERAL(4, 42, 25), > I am stuck now with th

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Sylvain Pointeau
and now I have In file included from animation/qabstractanimation.cpp:1434: .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization of non-aggregate type 'QBasicAtomicInt' (aka 'QBasicAtomicInteger') with an initializer list QT_MOC_LITERAL(4, 42, 25), ^

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Olivier Goffart
On Saturday 08 September 2012 13:46:52 Sylvain Pointeau wrote: > > clang++ -c -o project.o -pipe -mmacosx-version-min=10.6 -stdlib=libc++ > > -DQMAKE_OPENSOURCE_EDITION > > > > how can I configure it to be -mmacosx-version-min=10.7 ? > > weird, it is in the file qtbase/mkspecs/common/gcc-base-mac

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Sylvain Pointeau
> > clang++ -c -o project.o -pipe -mmacosx-version-min=10.6 -stdlib=libc++ > -DQMAKE_OPENSOURCE_EDITION > > how can I configure it to be -mmacosx-version-min=10.7 ? > weird, it is in the file qtbase/mkspecs/common/gcc-base-macx.conf 3 lines contained -mmacosx-version-min=10.6 seems to work with

Re: [Development] Qt 4.8 clang and libc++

2012-09-08 Thread Sylvain Pointeau
> > I recently installed xcode 4.4.1 and I installed the new command line > tools before to run the configure. > ./configure -release -platform macx-clang-libc++ -qt-pcre it compiles like: clang++ -c -o project.o -pipe -mmacosx-version-min=10.6 -stdlib=libc++ -DQMAKE_OPENSOURCE_EDITION how can I

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
I recently installed xcode 4.4.1 and I installed the new command line tools before to run the configure. ./configure -release -platform macx-clang-libc++ -qt-pcre How can I remove the min version or to set it up to 10.7? ___ Development mailing list Deve

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
I just downloaded the git repository, it doesn't seem to be linked to the c++11. ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > > but will qtwebkit compile with c++11? > > I beleive it should now. > Maybe you will run into some small issues. > I have this error now when I run the configure: clang++ -c -o project.o -pipe -mmacosx-version-min=10.6 -stdlib=libc++ -DQMAKE_OPENSOURCE_EDITION -fconstant-cfstrings -g -I/Use

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Olivier Goffart
On Friday 07 September 2012 00:03:33 Sylvain Pointeau wrote: > > > > One may need to add this line in some .pro or .pri file > > > > contains(QT_CONFIG, c++11):CONFIG += c++11 > > > > > > It seems to be missing in /qtwebkit.pri > > > where should it be exactly? > > > > I'm not really sure. You ca

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > > > One may need to add this line in some .pro or .pri file > > > contains(QT_CONFIG, c++11):CONFIG += c++11 > > > > It seems to be missing in /qtwebkit.pri > > where should it be exactly? > > I'm not really sure. You can try > Tools/qmake/mkspecs/features/default_pre.prf qtbase/mkspecs/featu

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Olivier Goffart
On Thursday 06 September 2012 23:24:06 Sylvain Pointeau wrote: > > I'm confused? Are you working with 4.8 or with Qt5? > > I want libc++ and Qt 4.8 does not provide clang-libc++. > so I switched to Qt5 but facing this compilation error. > sorry for the confusion. > > > Regarding Webkit in Qt5, >

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > I'm confused? Are you working with 4.8 or with Qt5? > > I want libc++ and Qt 4.8 does not provide clang-libc++. so I switched to Qt5 but facing this compilation error. sorry for the confusion. > Regarding Webkit in Qt5, > It does not seem to use load(qt_module) in its profle that is required

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Olivier Goffart
On Thursday 06 September 2012 22:33:30 Sylvain Pointeau wrote: > > No. I can't read a 1.5 MB preprocessed source without context. > > > > You're the one with libstdc++ and the reproducible issue. You get to fix > > the > > issue. > > > > I can't help you. > > not libstdc++ but the one with libc+

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > > I read on the web that libc++ will not work well in C++03 > > and looking at the command line, I don't see > > -*std*=c++11 > > > > why is it missing? how can we activate it? > > It's missing because WebKit doesn't compile in C++11 mode. > > how can they use "move" then? hrg Qt enable c++

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Thiago Macieira
On quinta-feira, 6 de setembro de 2012 22.33.30, Sylvain Pointeau wrote: > > No. I can't read a 1.5 MB preprocessed source without context. > > > > You're the one with libstdc++ and the reproducible issue. You get to fix > > the > > issue. > > > > I can't help you. > > not libstdc++ but the one wit

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > > No. I can't read a 1.5 MB preprocessed source without context. > > You're the one with libstdc++ and the reproducible issue. You get to fix > the > issue. > > I can't help you. not libstdc++ but the one with libc++ I read on the web that libc++ will not work well in C++03 and looking at th

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Thiago Macieira
On quinta-feira, 6 de setembro de 2012 22.16.44, Sylvain Pointeau wrote: > > Obviously, since qglobal.h has been used a thousand times by the time you > > get > > to this error, there's something *different* about Timer.cpp. > > > > Take a look at the preprocessed output of that compilation and fig

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > however I still find in the file bug.i > I meant bug.d ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Thiago Macieira
On quinta-feira, 6 de setembro de 2012 12.40.36, Sylvain Pointeau wrote: > move works well, why do we have this error? > is it related to the param type? /Users/sylvain/development/lib/qt-5.0/qtwebkit/Source/WebCore/platform/Timer.cpp:27: In file included from /Users/sylvain/development/lib/qt-5.0

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > > > > lib/global/qglobal.h:77: /usr/bin/../lib/c++/v1/algorithm:4461:28: > error: > > > no matching function for call > > > > > > to 'move' > > > > > > value_type __t(_VSTD::move(*__pp)); > > > > any idea on this error? > > Look at the include sequence: it's , included from >

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Thiago Macieira
On quinta-feira, 6 de setembro de 2012 12.05.46, Sylvain Pointeau wrote: > > In file included from > > /Users/sylvain/development/lib/qt-5.0/qtwebkit/Source/WebCore/platform/Tim > > er.cpp:27: In file included from > > /Users/sylvain/development/lib/qt-5.0/qtwebkit/Source/WebCore/config.h:30: > > I

Re: [Development] Qt 4.8 clang and libc++

2012-09-06 Thread Sylvain Pointeau
> > In file included from > /Users/sylvain/development/lib/qt-5.0/qtwebkit/Source/WebCore/platform/Timer.cpp:27: > In file included from > /Users/sylvain/development/lib/qt-5.0/qtwebkit/Source/WebCore/config.h:30: > In file included from > /Users/sylvain/development/lib/qt-5.0/qtwebkit/Source/WTF/w

Re: [Development] Qt 4.8 clang and libc++

2012-09-03 Thread Sylvain Pointeau
for Qt 5, I de-activated the Q_DECL_NOEXCEPT_EXPR from qt-5.0/qtbase/src/corelib/global/qcompilerdetection.h and now webkit is giving an error In file included from /Users/sylvain/development/lib/qt-5.0/qtwebkit/Source/WebCore/platform/Timer.cpp:27: In file included from /Users/sylvain/developmen

Re: [Development] Qt 4.8 clang and libc++

2012-09-03 Thread Thiago Macieira
On segunda-feira, 3 de setembro de 2012 08.27.43, Olivier Goffart wrote: > > #include > > #if defined(__clang__) && !defined(_LIBCPP_VERSION) > > # error "C++11 with clang requires libc++ runtime" > > #endif > > But why do we require libc++? What's wrong with using the standard library > from re

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Olivier Goffart
On Monday 03 September 2012 00:13:50 Thiago Macieira wrote: > On segunda-feira, 3 de setembro de 2012 00.02.09, Olivier Goffart wrote: > > On Sunday 02 September 2012 22:43:33 Laszlo Papp wrote: > > > > It would be nice to have clang in the CI system. > > > > > > I had the impression, clang is alr

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Thiago Macieira
On segunda-feira, 3 de setembro de 2012 00.02.09, Olivier Goffart wrote: > On Sunday 02 September 2012 22:43:33 Laszlo Papp wrote: > > > It would be nice to have clang in the CI system. > > > > I had the impression, clang is already in there: > > http://testresults.qt-project.org/ci/QtBase_master_I

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Olivier Goffart
On Sunday 02 September 2012 22:43:33 Laszlo Papp wrote: > > It would be nice to have clang in the CI system. > > I had the impression, clang is already in there: > http://testresults.qt-project.org/ci/QtBase_master_Integration/latest-succes > s/ http://qt-project.org/wiki/CI_Configurations > > La

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Thiago Macieira
On domingo, 2 de setembro de 2012 23.27.34, Sylvain Pointeau wrote: > > > error: no matching function for call to 'qHash' > > > > > > Q_DECL_NOEXCEPT_EXPR(noexcept(qHash(t))) > > > > We're not sure if this error is in clang or in our use of noexcept. > > How can I disable it for now? Remove th

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Laszlo Papp
> > It would be nice to have clang in the CI system. > I had the impression, clang is already in there: http://testresults.qt-project.org/ci/QtBase_master_Integration/latest-success/ http://qt-project.org/wiki/CI_Configurations Laszlo ___ Development ma

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Sergio Ahumada
On 09/02/2012 11:36 PM, Olivier Goffart wrote: > On Sunday 02 September 2012 19:51:21 Thiago Macieira wrote: >> On domingo, 2 de setembro de 2012 19.25.45, Sylvain Pointeau wrote: >>> clang and libc++ are the only way to use c++11 on mac os x. >>> I think it is important to have it enable on mac os

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Olivier Goffart
On Sunday 02 September 2012 19:51:21 Thiago Macieira wrote: > On domingo, 2 de setembro de 2012 19.25.45, Sylvain Pointeau wrote: > > clang and libc++ are the only way to use c++11 on mac os x. > > I think it is important to have it enable on mac os x users. > > Do you plan to support it in qt5 rel

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Sylvain Pointeau
> > > error: no matching function for call to 'qHash' > > Q_DECL_NOEXCEPT_EXPR(noexcept(qHash(t))) > > We're not sure if this error is in clang or in our use of noexcept. > > How can I disable it for now? ___ Development mailing list Development@qt-pr

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Thiago Macieira
On domingo, 2 de setembro de 2012 21.45.57, Sylvain Pointeau wrote: > error: no matching function for call to 'qHash' > Q_DECL_NOEXCEPT_EXPR(noexcept(qHash(t))) We're not sure if this error is in clang or in our use of noexcept. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Ar

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Sylvain Pointeau
On Sun, Sep 2, 2012 at 7:51 PM, Thiago Macieira wrote: > On domingo, 2 de setembro de 2012 19.25.45, Sylvain Pointeau wrote: > > clang and libc++ are the only way to use c++11 on mac os x. > > I think it is important to have it enable on mac os x users. > > Do you plan to support it in qt5 release

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Thiago Macieira
On domingo, 2 de setembro de 2012 19.25.45, Sylvain Pointeau wrote: > clang and libc++ are the only way to use c++11 on mac os x. > I think it is important to have it enable on mac os x users. > Do you plan to support it in qt5 release? $ ls -1d mkspecs/macx-clang* mkspecs/macx-clang mkspecs/macx

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Konstantin Tokarev
02.09.2012, 21:25, "Sylvain Pointeau" : > clang and libc++ are the only way to use c++11 on mac os x. Not really - FSF GCC is another way. It seems to be binary incompatible with Apple's compilers though. -- Regards, Konstantin ___ Development mailing

Re: [Development] Qt 4.8 clang and libc++

2012-09-02 Thread Sylvain Pointeau
clang and libc++ are the only way to use c++11 on mac os x. I think it is important to have it enable on mac os x users. Do you plan to support it in qt5 release? ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/

Re: [Development] Qt 4.8 clang and libc++

2012-08-28 Thread Thiago Macieira
On terça-feira, 28 de agosto de 2012 14.46.24, Yves Bailly wrote: > Le 24/08/2012 19:11, Sylvain Pointeau a écrit : > > Hi, > > > > I would like to compile Qt 4.8 using clang / libc++ (to have c++11) > > is it possible? > > Doesn't simply using GCC 4.7 provides C++11? or is C++11 support in CLang >

Re: [Development] Qt 4.8 clang and libc++

2012-08-28 Thread Yves Bailly
Le 24/08/2012 19:11, Sylvain Pointeau a écrit : > Hi, > > I would like to compile Qt 4.8 using clang / libc++ (to have c++11) > is it possible? Doesn't simply using GCC 4.7 provides C++11? or is C++11 support in CLang more advanced? -- /- Yves Bailly - Software developper -\ \- Ses

Re: [Development] Qt 4.8 clang and libc++

2012-08-28 Thread Raphael Kubo da Costa
> On sexta-feira, 24 de agosto de 2012 19.11.14, Sylvain Pointeau wrote: >> Hi, >> >> I would like to compile Qt 4.8 using clang / libc++ (to have c++11) >> is it possible? > > No one has ever reported success. Then again, no one has ever reported failure > either -- no one has ever reported trying

Re: [Development] Qt 4.8 clang and libc++

2012-08-25 Thread Sylvain Pointeau
I finally succeed to (git) clone the qt5 repository. and I met an issue, raised as a separate email. I continued with Qt 4.8(.3) and I added those 2 lines in the unsupported/macx-clang/qmake.conf QMAKE_CXXFLAGS += -stdlib=libc++ QMAKE_LFLAGS += -stdlib=libc++ ./configure -no-qt3support -platfor

Re: [Development] Qt 4.8 clang and libc++

2012-08-24 Thread Sylvain Pointeau
On Fri, Aug 24, 2012 at 10:26 PM, Stephen Chu wrote: > On 8/24/12 4:06 PM, Sylvain Pointeau wrote: > >> >> >> On Fri, Aug 24, 2012 at 9:59 PM, Thiago Macieira >> > > >> wrote: >> >> On sexta-feira, 24 de agosto de 2012 19.11.14, Sylvain Pointeau wrote: >>

Re: [Development] Qt 4.8 clang and libc++

2012-08-24 Thread Stephen Chu
On 8/24/12 4:06 PM, Sylvain Pointeau wrote: > > > On Fri, Aug 24, 2012 at 9:59 PM, Thiago Macieira > mailto:thiago.macie...@intel.com>> wrote: > > On sexta-feira, 24 de agosto de 2012 19.11.14, Sylvain Pointeau wrote: > > Hi, > > > > I would like to compile Qt 4.8 using clang / l

Re: [Development] Qt 4.8 clang and libc++

2012-08-24 Thread Sylvain Pointeau
> > > > I am ready to try, but how should I configure it? > > Modify the qmake.conf file above. > > what should I add or modify? ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-08-24 Thread Thiago Macieira
On sexta-feira, 24 de agosto de 2012 22.06.48, Sylvain Pointeau wrote: > On Fri, Aug 24, 2012 at 9:59 PM, Thiago Macieira > > wrote: > > On sexta-feira, 24 de agosto de 2012 19.11.14, Sylvain Pointeau wrote: > > > Hi, > > > > > > I would like to compile Qt 4.8 using clang / libc++ (to have c++11) >

Re: [Development] Qt 4.8 clang and libc++

2012-08-24 Thread Sylvain Pointeau
On Fri, Aug 24, 2012 at 9:59 PM, Thiago Macieira wrote: > On sexta-feira, 24 de agosto de 2012 19.11.14, Sylvain Pointeau wrote: > > Hi, > > > > I would like to compile Qt 4.8 using clang / libc++ (to have c++11) > > is it possible? > > No one has ever reported success. Then again, no one has ever

Re: [Development] Qt 4.8 clang and libc++

2012-08-24 Thread Thiago Macieira
On sexta-feira, 24 de agosto de 2012 19.11.14, Sylvain Pointeau wrote: > Hi, > > I would like to compile Qt 4.8 using clang / libc++ (to have c++11) > is it possible? No one has ever reported success. Then again, no one has ever reported failure either -- no one has ever reported trying. -- Thiag

[Development] Qt 4.8 clang and libc++

2012-08-24 Thread Sylvain Pointeau
Hi, I would like to compile Qt 4.8 using clang / libc++ (to have c++11) is it possible? Best regards, Sylvain ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development