Changeset 256


Ignore:
Timestamp:
Nov 21, 2013, 7:32:28 PM (11 years ago)
Author:
cfuguet
Message:

Introducing generic sort application. This application
can be executed with at most 256 processors

Location:
soft/giet_vm
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/Makefile

    r253 r256  
    5050                 build/libs/malloc.o
    5151
     52SORT_OBJS      = build/sort/main.o \
     53                 build/libs/stdio.o \
     54                 build/libs/barrier.o
    5255
    5356CFLAGS = -Wall -ffreestanding -mno-gpopt -mips32
     
    6669          build/gameoflife/gameoflife.elf \
    6770          build/dhrystone/dhrystone.elf \
     71          build/sort/sort.elf \
    6872         
    6973        $(MAKE) -C memo
     
    150154        $(CC) $(INCLUDE) $(CFLAGS)  -c -o $@ $<
    151155
     156### sort compilation
     157build/sort/sort.elf: $(SORT_OBJS) sort/sort.ld
     158        $(LD) -o $@ -T sort/sort.ld $(SORT_OBJS)
     159        $(DU) -D $@ > $@.txt
     160
     161build/sort/main.o: sort/main.c
     162        $(CC) $(INCLUDE) $(CFLAGS) -O3 -c -o $@ $<
     163
    152164### libs compilation
    153165build/libs/utils.o: libs/utils.c giet_config.h
Note: See TracChangeset for help on using the changeset viewer.