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.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/soft_transpose_giet/Makefile

    r744 r810  
    99       main.o
    1010
    11 CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 \
    12          -msoft-float -O2 \
    13          # -ggdb -mlong-calls
     11CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32
    1412
    1513GIET =  ../giet_tsar
    1614
    17 bin.soft: $(OBJS) ldscript
    18         $(LD) -o $@ -T ldscript $(OBJS)
     15bin.soft: $(OBJS) giet.ld
     16        $(LD) -o $@ -T giet.ld $(OBJS)
    1917        $(DU) -D $@ > $@.txt
    2018
    2119reset.o: $(GIET)/reset.S hard_config.h
    22         $(CC) -I. -I$(GIET) $(CFLAGS) -c -o $@ $<
     20        $(CC) -I. $(CFLAGS) -c -o $@ $<
    2321        $(DU) -D $@ > $@.txt
    2422
     
    3533        $(DU) -D $@ > $@.txt
    3634
     35giet.ld: giet.ld.in
     36        $(CC) -x c -P -E -I. $< -o $@
     37
    3738clean:
    38         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.