Hi,

this happens on CentOS 5.3:

# cd kvm-85/qemu
# make
  CC    qemu-nbd.o
  CC    qemu-tool.o
  CC    osdep.o
  CC    cutils.o
In file included from cutils.c:27:
/usr/include/assert.h: In function ‘qemu_sync_idcache’:
/usr/include/assert.h:70: error: storage class specified for parameter
‘__assert_fail’
/usr/include/assert.h:76: error: storage class specified for parameter
‘__assert_perror_fail’
/usr/include/assert.h:82: error: storage class specified for parameter 
‘__assert’
cutils.c:30: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’
token
   ...
cutils.c:224: error: expected ‘{’ at end of input
make: *** [cutils.o] Error 1


gcc 4.1.2 doesn't like functions without body, this patch fixes the problem:

--- cache-utils.h.orig  2009-04-21 10:46:04.000000000 +0200
+++ cache-utils.h       2009-04-22 08:39:20.000000000 +0200
@@ -47,6 +47,8 @@
 }
 #else
 static inline void qemu_sync_idcache(unsigned long start, unsigned long stop)
+{
+}
 #endif

 #define qemu_cache_utils_init(envp) do { (void) (envp); } while (0)

Bernhard

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to