* [Qemu-devel] Latest git does not compile target_to_host_rlim()
@ 2010-05-19 11:51 Riccardo Magliocchetti
2010-05-19 16:38 ` Aurelien Jarno
0 siblings, 1 reply; 5+ messages in thread
From: Riccardo Magliocchetti @ 2010-05-19 11:51 UTC (permalink / raw)
To: qemu-devel; +Cc: takasi-y
Hello,
latest git does not compile on debian sid 32 bit (kernel 64 bit), gcc
4.4.4:
CC alpha-linux-user/syscall.o
cc1: warnings being treated as errors
/home/rm/src/qemu/linux-user/syscall.c: In function ‘target_to_host_rlim’:
/home/rm/src/qemu/linux-user/syscall.c:836: error: integer constant is
too large for ‘unsigned long’ type
/home/rm/src/qemu/linux-user/syscall.c: In function ‘host_to_target_rlim’:
/home/rm/src/qemu/linux-user/syscall.c:845: error: integer constant is
too large for ‘unsigned long’ type
thanks,
Riccardo Magliocchetti
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Latest git does not compile target_to_host_rlim()
2010-05-19 11:51 [Qemu-devel] Latest git does not compile target_to_host_rlim() Riccardo Magliocchetti
@ 2010-05-19 16:38 ` Aurelien Jarno
2010-05-19 17:09 ` Riccardo Magliocchetti
0 siblings, 1 reply; 5+ messages in thread
From: Aurelien Jarno @ 2010-05-19 16:38 UTC (permalink / raw)
To: Riccardo Magliocchetti; +Cc: qemu-devel, takasi-y
On Wed, May 19, 2010 at 01:51:35PM +0200, Riccardo Magliocchetti wrote:
> Hello,
>
> latest git does not compile on debian sid 32 bit (kernel 64 bit),
> gcc 4.4.4:
>
> CC alpha-linux-user/syscall.o
> cc1: warnings being treated as errors
> /home/rm/src/qemu/linux-user/syscall.c: In function ‘target_to_host_rlim’:
> /home/rm/src/qemu/linux-user/syscall.c:836: error: integer constant
> is too large for ‘unsigned long’ type
> /home/rm/src/qemu/linux-user/syscall.c: In function ‘host_to_target_rlim’:
> /home/rm/src/qemu/linux-user/syscall.c:845: error: integer constant
> is too large for ‘unsigned long’ type
>
I have just committed a patch to fix the problem.
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Latest git does not compile target_to_host_rlim()
2010-05-19 16:38 ` Aurelien Jarno
@ 2010-05-19 17:09 ` Riccardo Magliocchetti
2010-05-19 17:19 ` Aurelien Jarno
0 siblings, 1 reply; 5+ messages in thread
From: Riccardo Magliocchetti @ 2010-05-19 17:09 UTC (permalink / raw)
To: Aurelien Jarno; +Cc: qemu-devel, takasi-y
Il 19/05/2010 18:38, Aurelien Jarno ha scritto:
> On Wed, May 19, 2010 at 01:51:35PM +0200, Riccardo Magliocchetti wrote:
>> Hello,
>>
>> latest git does not compile on debian sid 32 bit (kernel 64 bit),
>> gcc 4.4.4:
>>
>> CC alpha-linux-user/syscall.o
>> cc1: warnings being treated as errors
>> /home/rm/src/qemu/linux-user/syscall.c: In function ‘target_to_host_rlim’:
>> /home/rm/src/qemu/linux-user/syscall.c:836: error: integer constant
>> is too large for ‘unsigned long’ type
>> /home/rm/src/qemu/linux-user/syscall.c: In function ‘host_to_target_rlim’:
>> /home/rm/src/qemu/linux-user/syscall.c:845: error: integer constant
>> is too large for ‘unsigned long’ type
>>
>
> I have just committed a patch to fix the problem.
>
thanks for the prompt reply, have you pushed it? can't see it on
git.qemu.org.
thanks,
riccardo
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Latest git does not compile target_to_host_rlim()
2010-05-19 17:09 ` Riccardo Magliocchetti
@ 2010-05-19 17:19 ` Aurelien Jarno
2010-05-19 18:59 ` Riccardo Magliocchetti
0 siblings, 1 reply; 5+ messages in thread
From: Aurelien Jarno @ 2010-05-19 17:19 UTC (permalink / raw)
To: Riccardo Magliocchetti; +Cc: qemu-devel, takasi-y
On Wed, May 19, 2010 at 07:09:55PM +0200, Riccardo Magliocchetti wrote:
> Il 19/05/2010 18:38, Aurelien Jarno ha scritto:
>> On Wed, May 19, 2010 at 01:51:35PM +0200, Riccardo Magliocchetti wrote:
>>> Hello,
>>>
>>> latest git does not compile on debian sid 32 bit (kernel 64 bit),
>>> gcc 4.4.4:
>>>
>>> CC alpha-linux-user/syscall.o
>>> cc1: warnings being treated as errors
>>> /home/rm/src/qemu/linux-user/syscall.c: In function ‘target_to_host_rlim’:
>>> /home/rm/src/qemu/linux-user/syscall.c:836: error: integer constant
>>> is too large for ‘unsigned long’ type
>>> /home/rm/src/qemu/linux-user/syscall.c: In function ‘host_to_target_rlim’:
>>> /home/rm/src/qemu/linux-user/syscall.c:845: error: integer constant
>>> is too large for ‘unsigned long’ type
>>>
>>
>> I have just committed a patch to fix the problem.
>>
>
> thanks for the prompt reply, have you pushed it? can't see it on
> git.qemu.org.
>
Yes.
git.qemu.org is only a mirror, so a propagation time is needed.
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Latest git does not compile target_to_host_rlim()
2010-05-19 17:19 ` Aurelien Jarno
@ 2010-05-19 18:59 ` Riccardo Magliocchetti
0 siblings, 0 replies; 5+ messages in thread
From: Riccardo Magliocchetti @ 2010-05-19 18:59 UTC (permalink / raw)
To: Aurelien Jarno; +Cc: qemu-devel, takasi-y
Il 19/05/2010 19:19, Aurelien Jarno ha scritto:
> On Wed, May 19, 2010 at 07:09:55PM +0200, Riccardo Magliocchetti wrote:
>> Il 19/05/2010 18:38, Aurelien Jarno ha scritto:
>>> On Wed, May 19, 2010 at 01:51:35PM +0200, Riccardo Magliocchetti wrote:
>>>> Hello,
>>>>
>>>> latest git does not compile on debian sid 32 bit (kernel 64 bit),
>>>> gcc 4.4.4:
>>>>
>>>> CC alpha-linux-user/syscall.o
>>>> cc1: warnings being treated as errors
>>>> /home/rm/src/qemu/linux-user/syscall.c: In function ‘target_to_host_rlim’:
>>>> /home/rm/src/qemu/linux-user/syscall.c:836: error: integer constant
>>>> is too large for ‘unsigned long’ type
>>>> /home/rm/src/qemu/linux-user/syscall.c: In function ‘host_to_target_rlim’:
>>>> /home/rm/src/qemu/linux-user/syscall.c:845: error: integer constant
>>>> is too large for ‘unsigned long’ type
>>>>
>>>
>>> I have just committed a patch to fix the problem.
>>>
>>
>> thanks for the prompt reply, have you pushed it? can't see it on
>> git.qemu.org.
>>
>
> Yes.
>
> git.qemu.org is only a mirror, so a propagation time is needed.
>
fix propagated :)
Thanks,
riccardo
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-05-19 18:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-19 11:51 [Qemu-devel] Latest git does not compile target_to_host_rlim() Riccardo Magliocchetti
2010-05-19 16:38 ` Aurelien Jarno
2010-05-19 17:09 ` Riccardo Magliocchetti
2010-05-19 17:19 ` Aurelien Jarno
2010-05-19 18:59 ` Riccardo Magliocchetti
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).