Re: Another GCC 6 & Rawhide build failure

2016-02-03 Thread Tom Callaway
On 02/03/2016 02:21 PM, Marek Polacek wrote: > Looks like a g++ bug; I opened > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69658 > to track it further. Thanks. Always nice to have someone else agree that it probably isn't my fault. :D ~tom == Red Hat -- devel mailing list devel@lists.fedorapr

Re: Another GCC 6 & Rawhide build failure

2016-02-03 Thread Marek Polacek
On Wed, Feb 03, 2016 at 02:10:46PM -0500, Tom Callaway wrote: > On 02/03/2016 01:57 PM, Florian Weimer wrote: > > > Okay, self-contained test case is: > > > > struct GVector4 { > > GVector4(int); > > }; > > struct GNamedSVGcolor { > > char Name[22]; > > GVector4 RGBA; > > }; > > > > static

Re: Another GCC 6 & Rawhide build failure

2016-02-03 Thread Tom Callaway
On 02/03/2016 01:57 PM, Florian Weimer wrote: > Okay, self-contained test case is: > > struct GVector4 { > GVector4(int); > }; > struct GNamedSVGcolor { > char Name[22]; > GVector4 RGBA; > }; > > static const GNamedSVGcolor SVGColors[1] = { > { "aliceblue", GVector4(1) }, > }; > > The R

Re: Another GCC 6 & Rawhide build failure

2016-02-03 Thread Florian Weimer
On 02/03/2016 07:51 PM, Tom Callaway wrote: > On 02/03/2016 01:49 PM, Florian Weimer wrote: >> On 02/03/2016 07:37 PM, Tom Callaway wrote: >> >>> Ideas? >> >> Please tells us which package and which build. This needs more context >> for an investigation, I think. > > amanith: > https://kojipkgs.f

Re: Another GCC 6 & Rawhide build failure

2016-02-03 Thread Tom Callaway
On 02/03/2016 01:49 PM, Florian Weimer wrote: > On 02/03/2016 07:37 PM, Tom Callaway wrote: > >> Ideas? > > Please tells us which package and which build. This needs more context > for an investigation, I think. amanith: https://kojipkgs.fedoraproject.org//work/tasks/6502/12806502/build.log ~t

Re: Another GCC 6 & Rawhide build failure

2016-02-03 Thread Florian Weimer
On 02/03/2016 07:37 PM, Tom Callaway wrote: > Ideas? Please tells us which package and which build. This needs more context for an investigation, I think. Florian -- devel mailing list devel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org

Another GCC 6 & Rawhide build failure

2016-02-03 Thread Tom Callaway
First the C++ code: namespace Amanith { struct GNamedSVGcolor { GChar8 Name[22]; GVector4 RGBA; }; static const GNamedSVGcolor SVGColors[147] = { { "aliceblue", GVector4(0.941, 0.973, 1.000, 1.000) }, { "antiquewhite", GVector4(0.980, 0.922, 0.843, 1.000) },