Ignore:
Timestamp:
Sep 19, 2014, 2:53:18 PM (10 years ago)
Author:
cfuguet
Message:

giet_tsar: updating giet_tsar to use new hard_config format

Other optimizations:

  • Using a memory lock instead of the hard lock for the TTY
  • Each tty channel data is aligned to a cacheline (lock and buffers).
  • The applications' ldscript is generated from a template which includes the hard_config.h file.
Location:
trunk/softs/soft_hello_giet
Files:
1 added
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/soft_hello_giet/Makefile

    r623 r810  
    44DU = mipsel-unknown-elf-objdump
    55
    6 OBJS =   reset.o \
    7          giet.o \
    8          stdio.o \
    9          main.o
     6OBJS = reset.o \
     7       giet.o \
     8       stdio.o \
     9       main.o
    1010
    11 CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 -ggdb
     11CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32
    1212
    1313GIET =  ../giet_tsar
    1414
    15 bin.soft: $(OBJS) ldscript
    16         $(LD) -o $@ -T ldscript $(OBJS)
     15bin.soft: $(OBJS) giet.ld
     16        $(LD) -o $@ -T giet.ld $(OBJS)
    1717        $(DU) -D $@ > $@.txt
    1818
     
    3333        $(DU) -D $@ > $@.txt
    3434
     35giet.ld: giet.ld.in
     36        $(CC) -x c -P -E -I. $< -o $@
     37
    3538clean:
    36         rm -f *.o bin.soft *.txt core term* temp
     39        rm -f *.o bin.soft *.txt core term* temp giet.ld
Note: See TracChangeset for help on using the changeset viewer.