Index: gcc.pl
===================================================================
RCS file: /cvs/public/parrot/config/auto/gcc.pl,v
retrieving revision 1.12
diff -u -r1.12 gcc.pl
--- gcc.pl	13 Oct 2003 14:19:28 -0000	1.12
+++ gcc.pl	14 Oct 2003 11:03:52 -0000
@@ -85,6 +85,13 @@
     while (my ($vers, $opt) = splice @opt_and_vers, 0, 2) {
       last if $vers > $gccversion;
       next unless $opt; # Ignore blank lines
+
+      if($opt =~ /-mno-accumulate-outgoing-args/) {
+        use Config;
+        if($Config{archname} !~ /86/) {
+          $opt =~ s/-mno-accumulate-outgoing-args//;
+        }
+      }
       $warns .= " $opt";
     }
     # if the user overwrites the warnings remove it from $warns
