* [Qemu-devel] Use of LONG_LONG_MAX breaks build on OSX ?
@ 2010-01-07 23:20 Emmanuel Kasper
2010-02-28 18:07 ` Aurelien Jarno
0 siblings, 1 reply; 2+ messages in thread
From: Emmanuel Kasper @ 2010-01-07 23:20 UTC (permalink / raw)
To: qemu-devel
Hello
Qemu does not build on my platform ( OSX / 10.5 / PowerPC ) because of
the use of LONG_LONG_MAX in raw-posix.c
Replacing LONG_LONG_MAX with LLONG_MAX fixes the build and is more
standard IMHO ( LONG_LONG_MAX is GNU libc, LLONG_MAX is C99 standard )
The following patch makes this trivial switch.
--- block-raw-posix.c.before 2010-01-07 22:40:37.000000000 +0100
+++ block-raw-posix.c 2010-01-07 22:41:43.000000000 +0100
@@ -782,7 +782,7 @@
if (size == 0)
#endif
#ifdef CONFIG_COCOA
- size = LONG_LONG_MAX;
+ size = LLONG_MAX;
#else
size = lseek(fd, 0LL, SEEK_END);
#endif
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] Use of LONG_LONG_MAX breaks build on OSX ?
2010-01-07 23:20 [Qemu-devel] Use of LONG_LONG_MAX breaks build on OSX ? Emmanuel Kasper
@ 2010-02-28 18:07 ` Aurelien Jarno
0 siblings, 0 replies; 2+ messages in thread
From: Aurelien Jarno @ 2010-02-28 18:07 UTC (permalink / raw)
To: Emmanuel Kasper; +Cc: qemu-devel
On Fri, Jan 08, 2010 at 12:20:54AM +0100, Emmanuel Kasper wrote:
> Hello
> Qemu does not build on my platform ( OSX / 10.5 / PowerPC ) because of
> the use of LONG_LONG_MAX in raw-posix.c
> Replacing LONG_LONG_MAX with LLONG_MAX fixes the build and is more
> standard IMHO ( LONG_LONG_MAX is GNU libc, LLONG_MAX is C99 standard )
> The following patch makes this trivial switch.
As qemu is not compiled with -std=c99, LLONG_MAX is not guaranteed to be
defined (it is on recent systems, not on old ones). The best solution in
that case is probably to do at the begining of the file:
#ifndef LONG_LONG_MAX
#define LONG_LONG_MAX LLONG_MAX
#endif
Or applying your patch and doing the reverse.
Also please add a Signed-off-by: line.
> --- block-raw-posix.c.before 2010-01-07 22:40:37.000000000 +0100
> +++ block-raw-posix.c 2010-01-07 22:41:43.000000000 +0100
> @@ -782,7 +782,7 @@
> if (size == 0)
> #endif
> #ifdef CONFIG_COCOA
> - size = LONG_LONG_MAX;
> + size = LLONG_MAX;
> #else
> size = lseek(fd, 0LL, SEEK_END);
> #endif
>
>
>
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-02-28 18:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-07 23:20 [Qemu-devel] Use of LONG_LONG_MAX breaks build on OSX ? Emmanuel Kasper
2010-02-28 18:07 ` Aurelien Jarno
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).