diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-05-17 17:49:19 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-05-17 17:49:19 -0400 |
commit | 31ac4ce14032ee8bc3f44a9a600bd006f054077b (patch) | |
tree | b0bbef85fbc58ea88a0da0c2ad597cff23302673 /system/alpha/console | |
parent | b582b5058e1ecfc4f8a38c74ff111bed47d9fdbb (diff) | |
download | gem5-31ac4ce14032ee8bc3f44a9a600bd006f054077b.tar.xz |
console code now builds on zizzer
console/Makefile:
Updated to build on linux and removed
lots of crud that compiled, disassembled, and then reassembled
console/dbmentry.s:
the assembler didn't like they comments, so I removed them
console/printf.c:
Gcc was very unhappy, so I fixed this line
h/lib.h:
time_t is defined in a std header, and this was causing some problems
Diffstat (limited to 'system/alpha/console')
-rw-r--r-- | system/alpha/console/Makefile | 55 | ||||
-rw-r--r-- | system/alpha/console/dbmentry.s | 6 | ||||
-rw-r--r-- | system/alpha/console/printf.c | 2 |
3 files changed, 30 insertions, 33 deletions
diff --git a/system/alpha/console/Makefile b/system/alpha/console/Makefile index d83bdc9fa..518596058 100644 --- a/system/alpha/console/Makefile +++ b/system/alpha/console/Makefile @@ -1,51 +1,48 @@ - -all: console - DBMENTRY = fffffc0000010000 INCLUDES = -I$(PALCODE) -I$(INCLUDEH) -I$(M5)/dev SOURDIR = ./ PALCODE = ../palcode INCLUDEH = ../h -CC=gcc -#AS=gas + +ARCHNAME=$(shell uname -m) + +### If we are not compiling on an alpha, we must use cross tools ### +ifneq ($(ARCHNAME), alpha) +CC=alpha-unknown-linux-gnu-gcc +AS=alpha-unknown-linux-gnu-as +CXX=alpha-unknown-linux-gnu-g++ +LD=alpha-unknown-linux-gnu-ld +endif + +### Make sure that the M5 variable is set ### +ifndef M5 +$(error The M5 variable must be set) +endif + +all: console dbmentry.o: dbmentry.s - $(AS) $(INCLUDES) -nointrinsics -o $*.o $*.s + g++ -I ../h -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ dbmentry.s | \ + $(AS) -m 21164 -o dbmentry.s.o console.o: console.c - $(CC) -g3 $(INCLUDES) -nointrinsics -o $*.o -c $*.c + $(CC) -g3 $(INCLUDES) -D _TIME_T -nostdinc++ -o $*.o -c $*.c printf.o: printf.c - $(CC) -g3 $(INCLUDES) -nointrinsics -o $*.o -c $*.c + $(CC) -g3 $(INCLUDES) -nostdinc++ -o $*.o -c $*.c paljtokern.s.o: paljtokern.s g++ -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtokern.s | \ - gas -m 21164 -o paljtokern.s.o + $(AS) -m 21164 -o paljtokern.s.o paljtoslave.s.o: paljtoslave.s g++ -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtoslave.s | \ - gas -m 21164 -o paljtoslave.s.o - -paljtokern.c: paljtokern.s.o - echo 'unsigned int palJToKern[] = {' > paljtokern.c - dis paljtokern.s.o | awk '{print "0x"$$2","}' >> paljtokern.c - echo "0x0\n};" >> paljtokern.c - -paljtoslave.c: paljtoslave.s.o - echo "unsigned int palJToSlave[] = {" > paljtoslave.c - dis paljtoslave.s.o | awk '{print "0x"$$2","}' >> paljtoslave.c - echo "0x0\n};" >> paljtoslave.c - -paljtokern.c.o: paljtokern.c - $(CC) -g3 -nointrinsics -o paljtokern.c.o -c paljtokern.c - -paljtoslave.c.o: paljtoslave.c - $(CC) -g3 -nointrinsics -o paljtoslave.c.o -c paljtoslave.c + $(AS) -m 21164 -o paljtoslave.s.o -console: console.o dbmentry.o printf.o paljtokern.c.o paljtoslave.c.o - $(LD) -o console -N -T $(DBMENTRY) -non_shared \ - dbmentry.o console.o printf.o paljtokern.c.o paljtoslave.c.o -lc +console: console.o dbmentry.o printf.o paljtokern.s.o paljtoslave.s.o + $(LD) -o console -N -Ttext $(DBMENTRY) -non_shared \ + dbmentry.s.o console.o printf.o paljtokern.s.o paljtoslave.s.o -lc install: console scp console zizzer.eecs.umich.edu:/z/m5/system/testing/binaries/console diff --git a/system/alpha/console/dbmentry.s b/system/alpha/console/dbmentry.s index 2ecb9ebd4..91b0d51c9 100644 --- a/system/alpha/console/dbmentry.s +++ b/system/alpha/console/dbmentry.s @@ -2,12 +2,12 @@ /* taken from ebfw/rom/dbmentry.s */ #define EB164 -#ifndef LINT +/*#ifndef LINT .data .asciiz "$Id: dbmentry.s,v 1.1.1.1 1997/10/30 23:27:12 verghese Exp $" .text #endif - +*/ /* * Debug Monitor Entry code */ @@ -210,4 +210,4 @@ SpinLock: br zero,1b .end SpinLock -
\ No newline at end of file + diff --git a/system/alpha/console/printf.c b/system/alpha/console/printf.c index 24efa802e..21a449b2f 100644 --- a/system/alpha/console/printf.c +++ b/system/alpha/console/printf.c @@ -219,7 +219,7 @@ FormatItem(const char *f, va_list *ap) case '-': leftjust = TRUE; break; case 'c': { - char a = va_arg(*ap, char); + char a = va_arg(*ap, char *); if (leftjust) PutChar(a & 0x7f); if (fieldwidth > 0) PutRepChar(fill, fieldwidth - 1); |