From: John T. <jt...@us...> - 2006-06-18 21:29:26
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31364/Source Modified Files: GNUmakefile.source Log Message: Fix for GCC GCCSDK 3.4.6 Release 1 more strict APCS specification behaviour : make sure the GCC APCS selection does not conflict with the assembler backend APCS selection. Index: GNUmakefile.source =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/GNUmakefile.source,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GNUmakefile.source 31 Dec 2005 12:06:31 -0000 1.3 --- GNUmakefile.source 18 Jun 2006 21:29:22 -0000 1.4 *************** *** 203,211 **** .asm.o: ;@echo making $@ @-${LIBFILE} -d ${OSLIB} $@ ! @${AS} -Wa,-apcs26 -o $@ $< .asm.o32: ;@echo making $@ @-${LIBFILE} -d ${OSLIB32} $@ ! @${AS} -Wa,-apcs32 -o $@ $< #------------------------------------------------------------------------ --- 203,211 ---- .asm.o: ;@echo making $@ @-${LIBFILE} -d ${OSLIB} $@ ! @${AS} -mapcs-26 -Wa,-apcs26 -o $@ $< .asm.o32: ;@echo making $@ @-${LIBFILE} -d ${OSLIB32} $@ ! @${AS} -mapcs-32 -Wa,-apcs32 -o $@ $< #------------------------------------------------------------------------ |