Hi, Watt Poosanguansit <[EMAIL PROTECTED]> writes:
> I am just too new to this to really get around the > error of idc1 not found. I would appreciate any help. Your problem actually occurs above that point, around here: > ./if_mach POWERPC DARWIN as -arch ppc -DLARGE_CONFIG -o mach_dep.o > ./powerpc_darwin_mach_dep.s > ^^^^Starting command^^^^ > FATAL:/usr/bin/../libexec/gcc/darwin/ppc/as: I don't understand 'D' flag! > make[2]: *** [mach_dep.o] Error 1 > make[1]: [../gc6.7/gc.a] Error 2 (ignored) Looking into object/gc6.7/powerpc_darwin_mach_dep.s, there are no references to LARGE_CONFIG, so I would assume that it's just an error for the gc6.7 Makefiles to pass -DLARGE_CONFIG (indeed, the lowercase .s files are not supposed to be preprocessed; by convention only .S files are). You could hack around it by doing something like this: $ cd object/gc6.7 $ ./if_mach POWERPC DARWIN as -arch ppc -o mach_dep.o ./powerpc_darwin_mach_dep.s then, rerun the `make' and see if that helps. I don't have access to that platform though, so somebody else might offer better advice. Google turned up nothing for me. Good luck, -- Michael FIG <[EMAIL PROTECTED]> //\ http://michael.fig.org/ \// _______________________________________________ fonc mailing list [email protected] http://vpri.org/mailman/listinfo/fonc
