On Tue, Oct 28, 2008 at 12:24:03PM -0700, Adam Mitchell wrote: > I know that "syntax error near" message comes from dt_lex.l, but I can't > figure out what's wrong with the input line... > > typedef __builtin_va_list __gnuc_va_list;
The problem is that __builtin_va_list is a predefined type in GCC, but not in D. You might be able to get away with something like: -D__builtin_va_list=long or -D__builtin_va_list='void*' _______________________________________________ dtrace-discuss mailing list dtrace-discuss@opensolaris.org