* [Qemu-devel] build failure
@ 2008-04-29 22:34 Robert Reif
0 siblings, 0 replies; 7+ messages in thread
From: Robert Reif @ 2008-04-29 22:34 UTC (permalink / raw)
To: qemu-devel
I have been getting this build error for a few days now:
In file included from /home/wine/qemu/linux-user/syscall.c:71:
/usr/include/linux/loop.h:31:2: #error "Wrong dev_t in loop.h"
make[1]: *** [syscall.o] Error 1
make[1]: Leaving directory `/home/wine/qemu/i386-linux-user'
make: *** [subdir-i386-linux-user] Error 2
This is on a Red Hat 9 system.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Qemu-devel] build failure
@ 2016-09-19 21:17 Jianjun Duan
2016-09-19 21:38 ` John Snow
0 siblings, 1 reply; 7+ messages in thread
From: Jianjun Duan @ 2016-09-19 21:17 UTC (permalink / raw)
To: qemu-devel
Hi,
I ran into the follow problems when I tried to build code based on
latest master or ppc-for-2.8:
hw/ide/core.c: In function ‘ide_init_ioport’:
hw/ide/core.c:2622:39: error: ‘IDEBus’ has no member named ‘portio_list’
isa_register_portio_list(dev, &bus->portio_list,
^
hw/ide/core.c:2626:43: error: ‘IDEBus’ has no member named ‘portio2_list’
isa_register_portio_list(dev, &bus->portio2_list,
^
make: *** [hw/ide/core.o] Error 1
Is there a patch available for this?
Thanks,
Jianjun
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] build failure
2016-09-19 21:17 [Qemu-devel] build failure Jianjun Duan
@ 2016-09-19 21:38 ` John Snow
2016-09-19 21:44 ` Peter Maydell
0 siblings, 1 reply; 7+ messages in thread
From: John Snow @ 2016-09-19 21:38 UTC (permalink / raw)
To: Jianjun Duan, qemu-devel; +Cc: Marc-André Lureau
On 09/19/2016 05:17 PM, Jianjun Duan wrote:
> Hi,
> I ran into the follow problems when I tried to build code based on
> latest master or ppc-for-2.8:
>
> hw/ide/core.c: In function ‘ide_init_ioport’:
> hw/ide/core.c:2622:39: error: ‘IDEBus’ has no member named ‘portio_list’
> isa_register_portio_list(dev, &bus->portio_list,
> ^
> hw/ide/core.c:2626:43: error: ‘IDEBus’ has no member named ‘portio2_list’
> isa_register_portio_list(dev, &bus->portio2_list,
> ^
> make: *** [hw/ide/core.o] Error 1
>
> Is there a patch available for this?
>
> Thanks,
> Jianjun
>
>
Introduced in e305a16510afa74eec20390479e349402e55ef4c.
Looks related to Marc's recent work, whom I have CC'd.
--js
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] build failure
2016-09-19 21:38 ` John Snow
@ 2016-09-19 21:44 ` Peter Maydell
2016-09-19 21:51 ` John Snow
0 siblings, 1 reply; 7+ messages in thread
From: Peter Maydell @ 2016-09-19 21:44 UTC (permalink / raw)
To: John Snow; +Cc: Jianjun Duan, QEMU Developers, Marc-André Lureau
On 19 September 2016 at 22:38, John Snow <jsnow@redhat.com> wrote:
>
>
> On 09/19/2016 05:17 PM, Jianjun Duan wrote:
>>
>> Hi,
>> I ran into the follow problems when I tried to build code based on
>> latest master or ppc-for-2.8:
>>
>> hw/ide/core.c: In function ‘ide_init_ioport’:
>> hw/ide/core.c:2622:39: error: ‘IDEBus’ has no member named ‘portio_list’
>> isa_register_portio_list(dev, &bus->portio_list,
>> ^
>> hw/ide/core.c:2626:43: error: ‘IDEBus’ has no member named ‘portio2_list’
>> isa_register_portio_list(dev, &bus->portio2_list,
>> ^
>> make: *** [hw/ide/core.o] Error 1
>>
>> Is there a patch available for this?
>>
>> Thanks,
>> Jianjun
>>
>>
>
> Introduced in e305a16510afa74eec20390479e349402e55ef4c.
>
> Looks related to Marc's recent work, whom I have CC'd.
That commit adds the 'portio_list' and 'portio2_list'
fields to struct IDEBus, though (and it passed build tests
unless I messed something up testing the merge)...
thanks
-- PMM
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] build failure
2016-09-19 21:44 ` Peter Maydell
@ 2016-09-19 21:51 ` John Snow
2016-09-19 22:11 ` Jianjun Duan
2016-09-19 22:46 ` Jianjun Duan
0 siblings, 2 replies; 7+ messages in thread
From: John Snow @ 2016-09-19 21:51 UTC (permalink / raw)
To: Peter Maydell; +Cc: Jianjun Duan, QEMU Developers, Marc-André Lureau
On 09/19/2016 05:44 PM, Peter Maydell wrote:
> On 19 September 2016 at 22:38, John Snow <jsnow@redhat.com> wrote:
>>
>>
>> On 09/19/2016 05:17 PM, Jianjun Duan wrote:
>>>
>>> Hi,
>>> I ran into the follow problems when I tried to build code based on
>>> latest master or ppc-for-2.8:
>>>
>>> hw/ide/core.c: In function ‘ide_init_ioport’:
>>> hw/ide/core.c:2622:39: error: ‘IDEBus’ has no member named ‘portio_list’
>>> isa_register_portio_list(dev, &bus->portio_list,
>>> ^
>>> hw/ide/core.c:2626:43: error: ‘IDEBus’ has no member named ‘portio2_list’
>>> isa_register_portio_list(dev, &bus->portio2_list,
>>> ^
>>> make: *** [hw/ide/core.o] Error 1
>>>
>>> Is there a patch available for this?
>>>
>>> Thanks,
>>> Jianjun
>>>
>>>
>>
>> Introduced in e305a16510afa74eec20390479e349402e55ef4c.
>>
>> Looks related to Marc's recent work, whom I have CC'd.
>
> That commit adds the 'portio_list' and 'portio2_list'
> fields to struct IDEBus, though (and it passed build tests
> unless I messed something up testing the merge)...
>
> thanks
> -- PMM
>
Serves me right for looking quickly.
Jianjun: Can you perform a build after a make distclean? Maybe you've
got some outdated files in your tree ...?
--js
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] build failure
2016-09-19 21:51 ` John Snow
@ 2016-09-19 22:11 ` Jianjun Duan
2016-09-19 22:46 ` Jianjun Duan
1 sibling, 0 replies; 7+ messages in thread
From: Jianjun Duan @ 2016-09-19 22:11 UTC (permalink / raw)
To: John Snow, Peter Maydell; +Cc: QEMU Developers, Marc-André Lureau
make distclean didn't solve the problem.
Thanks,
Jianjun
On 09/19/2016 02:51 PM, John Snow wrote:
>
>
> On 09/19/2016 05:44 PM, Peter Maydell wrote:
>> On 19 September 2016 at 22:38, John Snow <jsnow@redhat.com> wrote:
>>>
>>>
>>> On 09/19/2016 05:17 PM, Jianjun Duan wrote:
>>>>
>>>> Hi,
>>>> I ran into the follow problems when I tried to build code based on
>>>> latest master or ppc-for-2.8:
>>>>
>>>> hw/ide/core.c: In function ‘ide_init_ioport’:
>>>> hw/ide/core.c:2622:39: error: ‘IDEBus’ has no member named
>>>> ‘portio_list’
>>>> isa_register_portio_list(dev, &bus->portio_list,
>>>> ^
>>>> hw/ide/core.c:2626:43: error: ‘IDEBus’ has no member named
>>>> ‘portio2_list’
>>>> isa_register_portio_list(dev, &bus->portio2_list,
>>>> ^
>>>> make: *** [hw/ide/core.o] Error 1
>>>>
>>>> Is there a patch available for this?
>>>>
>>>> Thanks,
>>>> Jianjun
>>>>
>>>>
>>>
>>> Introduced in e305a16510afa74eec20390479e349402e55ef4c.
>>>
>>> Looks related to Marc's recent work, whom I have CC'd.
>>
>> That commit adds the 'portio_list' and 'portio2_list'
>> fields to struct IDEBus, though (and it passed build tests
>> unless I messed something up testing the merge)...
>>
>> thanks
>> -- PMM
>>
>
> Serves me right for looking quickly.
>
> Jianjun: Can you perform a build after a make distclean? Maybe you've
> got some outdated files in your tree ...?
>
> --js
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] build failure
2016-09-19 21:51 ` John Snow
2016-09-19 22:11 ` Jianjun Duan
@ 2016-09-19 22:46 ` Jianjun Duan
1 sibling, 0 replies; 7+ messages in thread
From: Jianjun Duan @ 2016-09-19 22:46 UTC (permalink / raw)
To: John Snow, Peter Maydell; +Cc: Marc-André Lureau, QEMU Developers
It seems my source tree wasn't clean. I removed the old tree and that
error is gone.
Thanks,
Jianjun
On 09/19/2016 02:51 PM, John Snow wrote:
>
>
> On 09/19/2016 05:44 PM, Peter Maydell wrote:
>> On 19 September 2016 at 22:38, John Snow <jsnow@redhat.com> wrote:
>>>
>>>
>>> On 09/19/2016 05:17 PM, Jianjun Duan wrote:
>>>>
>>>> Hi,
>>>> I ran into the follow problems when I tried to build code based on
>>>> latest master or ppc-for-2.8:
>>>>
>>>> hw/ide/core.c: In function ‘ide_init_ioport’:
>>>> hw/ide/core.c:2622:39: error: ‘IDEBus’ has no member named
>>>> ‘portio_list’
>>>> isa_register_portio_list(dev, &bus->portio_list,
>>>> ^
>>>> hw/ide/core.c:2626:43: error: ‘IDEBus’ has no member named
>>>> ‘portio2_list’
>>>> isa_register_portio_list(dev, &bus->portio2_list,
>>>> ^
>>>> make: *** [hw/ide/core.o] Error 1
>>>>
>>>> Is there a patch available for this?
>>>>
>>>> Thanks,
>>>> Jianjun
>>>>
>>>>
>>>
>>> Introduced in e305a16510afa74eec20390479e349402e55ef4c.
>>>
>>> Looks related to Marc's recent work, whom I have CC'd.
>>
>> That commit adds the 'portio_list' and 'portio2_list'
>> fields to struct IDEBus, though (and it passed build tests
>> unless I messed something up testing the merge)...
>>
>> thanks
>> -- PMM
>>
>
> Serves me right for looking quickly.
>
> Jianjun: Can you perform a build after a make distclean? Maybe you've
> got some outdated files in your tree ...?
>
> --js
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-09-19 22:46 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-19 21:17 [Qemu-devel] build failure Jianjun Duan
2016-09-19 21:38 ` John Snow
2016-09-19 21:44 ` Peter Maydell
2016-09-19 21:51 ` John Snow
2016-09-19 22:11 ` Jianjun Duan
2016-09-19 22:46 ` Jianjun Duan
-- strict thread matches above, loose matches on Subject: below --
2008-04-29 22:34 Robert Reif
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).