Prof A Olowofoyeku wrote:
On 1 Apr 2005 at 14:26, Frank Heckenbach wrote:
[...]
Conclusion: It seems that this alpha is broken under gcc < 3.3.x
Actually, with 3.2 only (which is the version I didn't test with ...)
That attached patch solves those problems, thanks.
However, I now get this: p/integrate.o:integrate.c:(.text+0x3f4): undefined reference to `copy_lang_decl'
That one is easy: --- p.orig/gbe.h Fri Mar 25 21:53:14 2005 +++ p/gbe.h Fri Apr 1 15:42:18 2005 @@ -162,6 +162,9 @@ extern void (*print_error_function) (const char *); extern PTR alloca (size_t); extern tree void_list_node; +#endif + +#ifndef GCC_3_3 #define copy_decl_lang_specific copy_lang_decl #endif
But for me the build crashes later trying to compile GPC runtime. I am looking now what the problem is.