http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45815
--- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2010-09-28 15:19:29 UTC --- > That shouldn't happen, because flag_split_stack is initialized to -1, and you > should only see that error if flag_split_stack != -1 in decode_options. Can > you find out what is setting flag_split_stack to a value other than -1? In gcc/opts.c at lines 1092-1102, I see if (flag_split_stack == -1) flag_split_stack = 0; else { if (!targetm.supports_split_stack (true)) { error ("%<-fsplit-stack%> is not supported by " "this compiler configuration"); flag_split_stack = 0; } }