All of lore.kernel.org
 help / color / mirror / Atom feed
From: Khem Raj <raj.khem@gmail.com>
To: Denys Dmytriyenko <denis@denix.org>
Cc: openembedded-devel@lists.openembedded.org
Subject: Re: nativesdk-qtbase 5.9.2 C++11 errors with gcc 6.3?
Date: Thu, 12 Oct 2017 20:48:25 -0700	[thread overview]
Message-ID: <20171013034825.ispcwc762ls3ttes@apollo> (raw)
In-Reply-To: <20171013012110.GM9221@denix.org>

On Fri, Oct 13, 2017 at 01:21:10AM +0000, Denys Dmytriyenko wrote:
> Khem,
> 
> I tried following on your suggestion to add #include <cmath>, but it is 
> already there in src/corelib/global/qnumeric_p.h
> 
> Not sure why target qtbase builds fine with oe-core gcc 6.3.0, but 
> nativesdk-qtbase fails with this error... Any more ideas? Thanks.

Do you use uninative ? if not then try with uninative. 
It seems to be mixing headers from your build host and nativesdk sysroot
there could be several reasons for that. You can also try to build on
a different distro on host may be one which has gcc6 as host gcc.

> 
> -- 
> Denys
> 
> 
> On Tue, Oct 03, 2017 at 07:45:35PM -0400, Denys Dmytriyenko wrote:
> > Martin, Khem,
> > 
> > Have you tried building Qt 5.9 with gcc 6.3 from oe-core? I'm seeing bunch of 
> > what seems to be C++11 related errors during do_configure of nativesdk-qtbase. 
> > Target qtbase builds fine and switching to gcc 7.2 seems to resolve it as well.
> > 
> > Any ideas or pointers? Thanks!


> > 
> > 
> > Errors are like these:
> > 
> > In file included from ../include/QtCore/5.9.2/QtCore/private/qnumeric_p.h:1:0,
> >                  from /OE/master/build/tmp-glibc/work/x86_64-nativesdk-oe-linux/nativesdk-qtbase/5.9.2+gitAUTOINC+73573fce29-r0/git/src/corelib/tools/qarraydata.cpp:42:
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h: In function 'bool qnumeric_std_wrapper::__builtin_isnan(double)':
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h:104:45: error: '__builtin_isnan' is not a member of 'std'
> >  static inline bool isnan(double d) { return std::isnan(d); }
> >                                              ^~~
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h:104:45: note: suggested alternatives:
> > <built-in>: note:   '__builtin_isnan'
> > In file included from /OE/master/build/tmp-glibc/work/x86_64-nativesdk-oe-linux/nativesdk-qtbase/5.9.2+gitAUTOINC+73573fce29-r0/recipe-sysroot/tmp/sdk/sysroots/x86_64-oe-linux/usr/include/c++/6.3.0/cmath:45:0,
> >                  from ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h:56,
> >                  from ../include/QtCore/5.9.2/QtCore/private/qnumeric_p.h:1,
> >                  from /OE/master/build/tmp-glibc/work/x86_64-nativesdk-oe-linux/nativesdk-qtbase/5.9.2+gitAUTOINC+73573fce29-r0/git/src/corelib/tools/qarraydata.cpp:42:
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h:104:20: note:   'qnumeric_std_wrapper::__builtin_isnan'
> >  static inline bool isnan(double d) { return std::isnan(d); }
> >                     ^
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h: At global scope:
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h:105:20: error: expected ')' before '(' token
> >  static inline bool isinf(double d) { return std::isinf(d); }
> >                     ^
> > In file included from ../include/QtCore/5.9.2/QtCore/private/qnumeric_p.h:1:0,
> >                  from /OE/master/build/tmp-glibc/work/x86_64-nativesdk-oe-linux/nativesdk-qtbase/5.9.2+gitAUTOINC+73573fce29-r0/git/src/corelib/tools/qarraydata.cpp:42:
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h: In function 'bool qnumeric_std_wrapper::__builtin_isfinite(double)':
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h:106:48: error: '__builtin_isfinite' is not a member of 'std'
> >  static inline bool isfinite(double d) { return std::isfinite(d); }
> >                                                 ^~~
> > ../include/QtCore/5.9.2/QtCore/private/../../../../../../git/src/corelib/global/qnumeric_p.h:106:48: note: suggested alternatives:
> > <built-in>: note:   '__builtin_isfinite'
> > -- 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel


  reply	other threads:[~2017-10-13  3:48 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-03 23:45 nativesdk-qtbase 5.9.2 C++11 errors with gcc 6.3? Denys Dmytriyenko
2017-10-13  1:21 ` Denys Dmytriyenko
2017-10-13  3:48   ` Khem Raj [this message]
2017-10-13  4:02     ` Tim Orling
2017-10-13 17:35     ` Denys Dmytriyenko
2017-10-13 18:57       ` Khem Raj
2017-10-13 19:47         ` Denys Dmytriyenko
2017-10-13 20:34           ` Denys Dmytriyenko
2017-10-13 22:14             ` Khem Raj
2017-10-13 22:58               ` Denys Dmytriyenko
2017-10-13 23:05                 ` Khem Raj
2018-01-17 11:09 ` Patrick Ohly
2018-01-17 11:20   ` Patrick Ohly

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171013034825.ispcwc762ls3ttes@apollo \
    --to=raj.khem@gmail.com \
    --cc=denis@denix.org \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.