From: Erik M. <er...@us...> - 2002-01-07 15:00:19
|
Update of /cvsroot/blob/blob/src/blob In directory usw-pr-cvs1:/tmp/cvs-serv15829/src/blob Modified Files: Makefile.am rest-ld-script.in Log Message: The preprocessor can be told not to predefine anything at all, so we can safely use the keyword "arm". Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/src/blob/Makefile.am,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- Makefile.am 2002/01/05 20:21:49 1.14 +++ Makefile.am 2002/01/07 15:00:14 1.15 @@ -45,7 +45,7 @@ rest-ld-script: rest-ld-script.in - $(CC) -x c-header ${INCLUDES} -E $< | sed 's/^#.*//' > $@ + $(CC) -x c-header -undef -nostdinc ${INCLUDES} -E $< | sed 's/^#.*//' > $@ Index: rest-ld-script.in =================================================================== RCS file: /cvsroot/blob/blob/src/blob/rest-ld-script.in,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- rest-ld-script.in 2001/11/04 23:09:17 1.1 +++ rest-ld-script.in 2002/01/07 15:00:15 1.2 @@ -25,7 +25,7 @@ #include <blob/arch.h> OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") -/*OUTPUT_ARCH(arm)*/ +OUTPUT_ARCH(arm) ENTRY(_trampoline) SECTIONS { @@ -102,4 +102,3 @@ __bss_end = .; } } - |