K 10 svn:author V 5 steve K 8 svn:date V 27 1999-09-29T01:24:51.000000Z K 7 svn:log V 301 Don't use 'cc -D${ARCH} -c foo.c' especially when '${ARCH} = alpha' and you have this in your code, 'double alpha[30];'. The preprocessor does what it's supposed to do and replaces all of occurrences of alpha with 1 and the compiler sees code like this 'double 1[10]' which it summarily yacks on. :) END