|
From: Tom H. <to...@co...> - 2008-12-19 08:48:07
|
Tom Hughes wrote: > Last 20 lines of verbose log follow echo > auxprogs/genoffsets.c:135: error: syntax error before "VexGuestPPC64State" This is happening because __builtin_offsetof is a gcc 4 thing. Older versions define offsetof directly in terms of type casting. I don't think we need it though - genoffsets is never even executed now let along linked into valgrind so we can just include stdlib.h and use offsetof instead. That seems to work for me anyway... Tom -- Tom Hughes (to...@co...) http://www.compton.nu/ |