* [Qemu-devel] buildbot failure in qemu on default_s390
@ 2012-03-15 0:16 qemu
2012-03-15 0:01 ` Andreas Färber
0 siblings, 1 reply; 10+ messages in thread
From: qemu @ 2012-03-15 0:16 UTC (permalink / raw)
To: agraf, gollub, lcapitulino, qemu-devel
The Buildbot has detected a new failure on builder default_s390 while building qemu.
Full details are available at:
http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/190
Buildbot URL: http://buildbot.b1-systems.de/qemu/
Buildslave for this Build: qemu-s390.opensuse.org
Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
Build Source Stamp: [branch master] HEAD
Blamelist:
BUILD FAILED: failed compile
sincerely,
-The Buildbot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Qemu-devel] buildbot failure in qemu on default_s390
2012-03-15 0:16 [Qemu-devel] buildbot failure in qemu on default_s390 qemu
@ 2012-03-15 0:01 ` Andreas Färber
2012-03-15 0:11 ` Michael Roth
0 siblings, 1 reply; 10+ messages in thread
From: Andreas Färber @ 2012-03-15 0:01 UTC (permalink / raw)
To: Anthony Liguori; +Cc: qemu-devel, gollub, qemu, agraf, lcapitulino
Am 15.03.2012 01:16, schrieb qemu@buildbot.b1-systems.de:
> The Buildbot has detected a new failure on builder default_s390 while building qemu.
> Full details are available at:
> http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/190
>
> Buildbot URL: http://buildbot.b1-systems.de/qemu/
>
> Buildslave for this Build: qemu-s390.opensuse.org
>
> Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
> Build Source Stamp: [branch master] HEAD
> Blamelist:
>
> BUILD FAILED: failed compile
Sorry...
CC lm32-softmmu/arch_init.o
In file included from /home/build/qemu/default_s390/build/qemu-common.h:123,
from /home/build/qemu/default_s390/build/monitor.h:4,
from /home/build/qemu/default_s390/build/arch_init.c:32:
/home/build/qemu/default_s390/build/target-lm32/cpu.h:185: error:
redefinition of typedef 'CPULM32State'
/home/build/qemu/default_s390/build/target-lm32/cpu.h:31: error:
previous declaration of 'CPULM32State' was here
make[1]: *** [arch_init.o] Error 1
make: *** [subdir-lm32-softmmu] Error 2
My GCC handles the following code fine:
typedef struct CPULM32State CPULM32State;
typedef struct CPULM32State {
// ...
} CPULM32State;
Solutions would be to
a) drop the second typedef,
b) use struct CPULM32State,
c) move the function using it to after the second typedef.
Andreas
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Qemu-devel] buildbot failure in qemu on default_s390
2012-03-15 0:01 ` Andreas Färber
@ 2012-03-15 0:11 ` Michael Roth
2012-03-15 8:32 ` Alexander Graf
0 siblings, 1 reply; 10+ messages in thread
From: Michael Roth @ 2012-03-15 0:11 UTC (permalink / raw)
To: Andreas Färber
Cc: agraf, qemu-devel, lcapitulino, qemu, Anthony Liguori, gollub
On Thu, Mar 15, 2012 at 01:01:04AM +0100, Andreas Färber wrote:
> Am 15.03.2012 01:16, schrieb qemu@buildbot.b1-systems.de:
> > The Buildbot has detected a new failure on builder default_s390 while building qemu.
> > Full details are available at:
> > http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/190
> >
> > Buildbot URL: http://buildbot.b1-systems.de/qemu/
> >
> > Buildslave for this Build: qemu-s390.opensuse.org
> >
> > Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
> > Build Source Stamp: [branch master] HEAD
> > Blamelist:
> >
> > BUILD FAILED: failed compile
>
> Sorry...
>
> CC lm32-softmmu/arch_init.o
> In file included from /home/build/qemu/default_s390/build/qemu-common.h:123,
> from /home/build/qemu/default_s390/build/monitor.h:4,
> from /home/build/qemu/default_s390/build/arch_init.c:32:
> /home/build/qemu/default_s390/build/target-lm32/cpu.h:185: error:
> redefinition of typedef 'CPULM32State'
> /home/build/qemu/default_s390/build/target-lm32/cpu.h:31: error:
> previous declaration of 'CPULM32State' was here
> make[1]: *** [arch_init.o] Error 1
> make: *** [subdir-lm32-softmmu] Error 2
>
> My GCC handles the following code fine:
>
> typedef struct CPULM32State CPULM32State;
>
> typedef struct CPULM32State {
> // ...
> } CPULM32State;
>
> Solutions would be to
> a) drop the second typedef,
> b) use struct CPULM32State,
> c) move the function using it to after the second typedef.
I vote for a)
Multiple/unecessary typedefs is funky.
>
> Andreas
>
> --
> SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
> GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Qemu-devel] buildbot failure in qemu on default_s390
2012-03-15 0:11 ` Michael Roth
@ 2012-03-15 8:32 ` Alexander Graf
2012-03-15 9:16 ` Andreas Färber
0 siblings, 1 reply; 10+ messages in thread
From: Alexander Graf @ 2012-03-15 8:32 UTC (permalink / raw)
To: Michael Roth
Cc: qemu-devel@nongnu.org, lcapitulino@redhat.com,
qemu@buildbot.b1-systems.de, Anthony Liguori,
gollub@b1-systems.de, Andreas Färber
On 15.03.2012, at 01:11, Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> On Thu, Mar 15, 2012 at 01:01:04AM +0100, Andreas Färber wrote:
>> Am 15.03.2012 01:16, schrieb qemu@buildbot.b1-systems.de:
>>> The Buildbot has detected a new failure on builder default_s390 while building qemu.
>>> Full details are available at:
>>> http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/190
>>>
>>> Buildbot URL: http://buildbot.b1-systems.de/qemu/
>>>
>>> Buildslave for this Build: qemu-s390.opensuse.org
>>>
>>> Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
>>> Build Source Stamp: [branch master] HEAD
>>> Blamelist:
>>>
>>> BUILD FAILED: failed compile
>>
>> Sorry...
>>
>> CC lm32-softmmu/arch_init.o
>> In file included from /home/build/qemu/default_s390/build/qemu-common.h:123,
>> from /home/build/qemu/default_s390/build/monitor.h:4,
>> from /home/build/qemu/default_s390/build/arch_init.c:32:
>> /home/build/qemu/default_s390/build/target-lm32/cpu.h:185: error:
>> redefinition of typedef 'CPULM32State'
>> /home/build/qemu/default_s390/build/target-lm32/cpu.h:31: error:
>> previous declaration of 'CPULM32State' was here
>> make[1]: *** [arch_init.o] Error 1
>> make: *** [subdir-lm32-softmmu] Error 2
>>
>> My GCC handles the following code fine:
>>
>> typedef struct CPULM32State CPULM32State;
>>
>> typedef struct CPULM32State {
>> // ...
>> } CPULM32State;
>>
>> Solutions would be to
>> a) drop the second typedef,
>> b) use struct CPULM32State,
>> c) move the function using it to after the second typedef.
>
> I vote for a)
Same here.
Alex
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Qemu-devel] buildbot failure in qemu on default_s390
2012-03-15 8:32 ` Alexander Graf
@ 2012-03-15 9:16 ` Andreas Färber
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Färber @ 2012-03-15 9:16 UTC (permalink / raw)
To: Alexander Graf; +Cc: qemu-devel@nongnu.org
Am 15.03.2012 09:32, schrieb Alexander Graf:
>
> On 15.03.2012, at 01:11, Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
>
>> On Thu, Mar 15, 2012 at 01:01:04AM +0100, Andreas Färber wrote:
>>> My GCC handles the following code fine:
>>>
>>> typedef struct CPULM32State CPULM32State;
>>>
>>> typedef struct CPULM32State {
>>> // ...
>>> } CPULM32State;
>>>
>>> Solutions would be to
>>> a) drop the second typedef,
>>> b) use struct CPULM32State,
>>> c) move the function using it to after the second typedef.
>>
>> I vote for a)
>
> Same here.
Long fixed. :) Wait, you haven't actually been sleeping at night this
once? ;)
Andreas
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Qemu-devel] buildbot failure in qemu on default_s390
@ 2012-05-14 23:57 qemu
0 siblings, 0 replies; 10+ messages in thread
From: qemu @ 2012-05-14 23:57 UTC (permalink / raw)
To: agraf, gollub, lcapitulino, qemu-devel
The Buildbot has detected a new failure on builder default_s390 while building qemu.
Full details are available at:
http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/239
Buildbot URL: http://buildbot.b1-systems.de/qemu/
Buildslave for this Build: qemu-s390.opensuse.org
Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
Build Source Stamp: [branch master] HEAD
Blamelist:
BUILD FAILED: failed test
sincerely,
-The Buildbot
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Qemu-devel] buildbot failure in qemu on default_s390
@ 2012-03-25 0:03 qemu
0 siblings, 0 replies; 10+ messages in thread
From: qemu @ 2012-03-25 0:03 UTC (permalink / raw)
To: agraf, gollub, lcapitulino, qemu-devel
The Buildbot has detected a new failure on builder default_s390 while building qemu.
Full details are available at:
http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/200
Buildbot URL: http://buildbot.b1-systems.de/qemu/
Buildslave for this Build: qemu-s390.opensuse.org
Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
Build Source Stamp: [branch master] HEAD
Blamelist:
BUILD FAILED: failed compile
sincerely,
-The Buildbot
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Qemu-devel] buildbot failure in qemu on default_s390
@ 2012-01-24 0:09 qemu
0 siblings, 0 replies; 10+ messages in thread
From: qemu @ 2012-01-24 0:09 UTC (permalink / raw)
To: agraf, gollub, lcapitulino, qemu-devel
The Buildbot has detected a new failure on builder default_s390 while building qemu.
Full details are available at:
http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/139
Buildbot URL: http://buildbot.b1-systems.de/qemu/
Buildslave for this Build: qemu-s390.opensuse.org
Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
Build Source Stamp: [branch master] HEAD
Blamelist:
BUILD FAILED: failed compile
sincerely,
-The Buildbot
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Qemu-devel] buildbot failure in qemu on default_s390
@ 2011-10-26 9:16 qemu
2011-10-30 16:42 ` Alexander Graf
0 siblings, 1 reply; 10+ messages in thread
From: qemu @ 2011-10-26 9:16 UTC (permalink / raw)
To: agraf, gollub, lcapitulino, qemu-devel
The Buildbot has detected a new failure on builder default_s390 while building qemu.
Full details are available at:
http://buildbot.b1-systems.de/qemu/builders/default_s390/builds/49
Buildbot URL: http://buildbot.b1-systems.de/qemu/
Buildslave for this Build: qemu-s390.opensuse.org
Build Reason: The Nightly scheduler named 'nightly_default' triggered this build
Build Source Stamp: [branch master] HEAD
Blamelist:
BUILD FAILED: failed configure
sincerely,
-The Buildbot
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2012-05-14 23:57 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-15 0:16 [Qemu-devel] buildbot failure in qemu on default_s390 qemu
2012-03-15 0:01 ` Andreas Färber
2012-03-15 0:11 ` Michael Roth
2012-03-15 8:32 ` Alexander Graf
2012-03-15 9:16 ` Andreas Färber
-- strict thread matches above, loose matches on Subject: below --
2012-05-14 23:57 qemu
2012-03-25 0:03 qemu
2012-01-24 0:09 qemu
2011-10-26 9:16 qemu
2011-10-30 16:42 ` Alexander Graf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).