qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] Fix libfdt warnings on Darwin


From: Alexander Graf
Subject: Re: [Qemu-devel] [PATCH] Fix libfdt warnings on Darwin
Date: Sat, 28 May 2011 16:03:48 +0200

On 28.05.2011, at 16:01, Andreas Färber wrote:

> Building with libfdt results in the following warnings on Mac OS X:
> 
>  CC    ppc-softmmu/device_tree.o
> In file included from /Users/andreas/QEMU/latest64/include/libfdt.h:54,
>                 from /Users/andreas/QEMU/qemu/device_tree.c:26:
> /Users/andreas/QEMU/qemu/libfdt_env.h:25:20: warning: endian.h: No such file 
> or directory
> /Users/andreas/QEMU/qemu/libfdt_env.h:26:22: warning: byteswap.h: No such 
> file or directory
> /Users/andreas/QEMU/qemu/libfdt_env.h:28:5: warning: "__BYTE_ORDER" is not 
> defined
> /Users/andreas/QEMU/qemu/libfdt_env.h:28:21: warning: "__BIG_ENDIAN" is not 
> defined
> 
> Since QEMU's copy of libfdt_env.h only uses bswap_32() and bswap_64(),
> let QEMU's bswap.h take care of the headers and use its endianness define.
> 
> Cc: Hollis Blanchard <address@hidden>
> Cc: Alexander Graf <address@hidden>
> Signed-off-by: Andreas Färber <address@hidden>
> ---
> Tested on Darwin/ppc64 host.
> 
> libfdt_env.h |    8 ++------
> 1 files changed, 2 insertions(+), 6 deletions(-)
> 
> diff --git a/libfdt_env.h b/libfdt_env.h
> index ee0419f..90d7f3b 100644
> --- a/libfdt_env.h
> +++ b/libfdt_env.h
> @@ -19,13 +19,9 @@
> #ifndef _LIBFDT_ENV_H
> #define _LIBFDT_ENV_H
> 
> -#include <stddef.h>
> -#include <stdint.h>
> -#include <string.h>
> -#include <endian.h>
> -#include <byteswap.h>
> +#include "bswap.h"
> 
> -#if __BYTE_ORDER == __BIG_ENDIAN
> +#ifdef HOST_WORDS_BIGENDIAN

Hrm. Who defines HOST_WORDS_BIGENDIAN? Shouldn't you explicitly include that 
header file? Or at least have a sanity check that breaks compilation if neither 
BIG nor LITTLE endian are defined? :)


Alex




reply via email to

[Prev in Thread] Current Thread [Next in Thread]