This is the mail archive of the gcc-prs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

bootstrap/3090: compile fails on linux-m68k



>Number:         3090
>Category:       bootstrap
>Synopsis:       compile fails on linux-m68k in dwarf2out.c
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Fri Jun 08 14:56:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Roman Zippel
>Release:        3.0 20010606 (prerelease)
>Organization:
>Environment:
System: Linux sodom 2.2.10 #4 Sun Aug 1 14:25:38 CEST 1999 m68k unknown
Architecture: m68k

	
host: m68k-unknown-linux-gnu
build: m68k-unknown-linux-gnu
target: m68k-unknown-linux-gnu
configured with: ../gcc-3.0/configure --verbose --cache-file=../config.cache --prefix=/usr/local/egcs --enable-languages=c,c++
>Description:
dwarf2out.c uses ACCUMULATE_OUTGOING_ARGS without defining a default
>How-To-Repeat:
Configure for target linux-m68k and try to (cross) compile it.
>Fix:
This also fixes one of the problems of PR 1795.

Index: gcc/dwarf2out.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/dwarf2out.c,v
retrieving revision 1.242.2.20
diff -u -r1.242.2.20 dwarf2out.c
--- dwarf2out.c	2001/06/05 21:07:46	1.242.2.20
+++ dwarf2out.c	2001/06/08 19:57:27
@@ -57,6 +57,10 @@
 #include "md5.h"
 #include "tm_p.h"
 
+#ifndef ACCUMULATE_OUTGOING_ARGS
+#define ACCUMULATE_OUTGOING_ARGS 0
+#endif
+
 /* DWARF2 Abbreviation Glossary:
    CFA = Canonical Frame Address
 	   a fixed address on the stack which identifies a call frame.
>Release-Note:
>Audit-Trail:
>Unformatted:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]