changeset 0f75de05c240 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=0f75de05c240
description:
        makefiles updated to make use of cross compile tools

        console/Makefile:
            All tools are variables now
        palcode/Makefile:
            tool names changed to variables, can build palcode on zizzer

diffstat:

 system/alpha/console/Makefile |  12 ++++++++----
 system/alpha/palcode/Makefile |  10 +++++-----
 2 files changed, 13 insertions(+), 9 deletions(-)

diffs (63 lines):

diff -r fffe5c0f6707 -r 0f75de05c240 system/alpha/console/Makefile
--- a/system/alpha/console/Makefile     Wed Jan 14 04:07:07 2004 -0500
+++ b/system/alpha/console/Makefile     Thu Jan 15 02:59:57 2004 -0500
@@ -7,6 +7,10 @@
 SOURDIR = ./
 PALCODE  = ../palcode
 INCLUDEH = ../h
+AS=alpha-elf-as
+CC=alpha-elf-gcc
+CXX=alpha-elf-$(CXX)
+
 
 dbmentry.o: dbmentry.s 
        $(AS)  $(INCLUDES) -nointrinsics -o $*.o $*.s
@@ -18,12 +22,12 @@
        $(CC)  -g3 $(INCLUDES) -nointrinsics -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
+       $(CXX) -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtokern.s | \
+       $(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
+       $(CXX) -I ../palcode -E -P -nostdinc -nostdinc++ -x c++ paljtoslave.s | 
\
+       $(AS) -m 21164 -o paljtoslave.s.o
 
 paljtokern.c: paljtokern.s.o
        echo 'unsigned int palJToKern[] = {' > paljtokern.c
diff -r fffe5c0f6707 -r 0f75de05c240 system/alpha/palcode/Makefile
--- a/system/alpha/palcode/Makefile     Wed Jan 14 04:07:07 2004 -0500
+++ b/system/alpha/palcode/Makefile     Thu Jan 15 02:59:57 2004 -0500
@@ -3,15 +3,15 @@
 
 #19 December 2003 - Ali Saidi
 
-GAS = as
-CC = g++
-LD = ld
+GAS = alpha-elf-as
+CC = alpha-elf-g++
+LD = alpha-elf-ld
 #CFLAGS=-I ../h -E -P -D SIMOS -nostdinc -nostdinc++ -x c++
 CFLAGS=-I . -E -P -D SIMOS -D BUILD_PALCODE -nostdinc -nostdinc++ -x c++
 GASFLAGS=-m21164
 LDFLAGS=-Ttext 0x4000
 
-SOURCES=platform_tlaser.s osfpal.s
+SOURCES=osfpal.s platform_tlaser.s
 PREPROC := $(SOURCES:.s=.i)
 OBJS := $(SOURCES:.s=.o)
     
@@ -23,7 +23,7 @@
 
 
 all: $(PREPROC) $(OBJS)
-       ld $(LDFLAGS) -o osfpal $(OBJS) 
+       $(LD) $(LDFLAGS) -o osfpal $(OBJS) 
 
 clean:
        rm -f *.o *.i osfpal
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to