Changeset 753
- Timestamp:
- Jan 6, 2016, 5:14:34 PM (9 years ago)
- Location:
- soft/giet_vm
- Files:
-
- 15 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/Makefile
r739 r753 37 37 applications/shell/shell.py \ 38 38 applications/sort/sort.py \ 39 applications/transpose/transpose.py 39 applications/transpose/transpose.py \ 40 applications/coremark/coremark.py 40 41 41 42 # build the list of applications to be executed (used in the all rule) … … 131 132 132 133 CFLAGS = -Wall -ffreestanding -mno-gpopt -mips32 -g -O2 \ 133 -fno-delete-null-pointer-checks 134 -fno-delete-null-pointer-checks $(XCFLAGS) 134 135 135 136 GIET_INCLUDE = -Igiet_boot \ … … 197 198 cd applications/sort && $(MAKE) clean && cd ../.. 198 199 cd applications/transpose && $(MAKE) clean && cd ../.. 200 cd applications/coremark && $(MAKE) clean && cd ../.. 199 201 200 202 ######################################## 201 203 ### delete disk image 202 204 clean-disk: 203 rm -rf hdd/205 rm -rf $(DISK_IMAGE) 204 206 205 207 ######################################## … … 223 225 mmd -o -i $< ::/bin/sort || true 224 226 mmd -o -i $< ::/bin/transpose || true 227 mmd -o -i $< ::/bin/coremark || true 225 228 mmd -o -i $< ::/misc || true 226 229 mmd -o -i $< ::/home || true … … 240 243 mcopy -o -i $< applications/sort/appli.elf ::/bin/sort || true 241 244 mcopy -o -i $< applications/transpose/appli.elf ::/bin/transpose || true 245 mcopy -o -i $< applications/coremark/appli.elf ::/bin/coremark || true 242 246 mcopy -o -i $< images/images_128.raw ::/misc 243 247 mcopy -o -i $< images/philips_1024.raw ::/misc … … 432 436 $(MAKE) -C applications/transpose 433 437 438 ######################################## 439 ### coremark compilation 440 applications/coremark/appli.elf: build/libs/libuser.a 441 $(MAKE) -C applications/coremark 442 -
soft/giet_vm/giet_kernel/sys_handler.c
r733 r753 959 959 960 960 // print exit message 961 if ( string == NULL ) 962 { 963 _printf("\n[GIET WARNING] Exit thread %x in application %s\n", 964 trdid , vspace[vsid].name ); 965 } 966 else 961 if ( string != NULL ) 967 962 { 968 963 _printf("\n[GIET WARNING] Exit thread %x in vspace %s\n" -
soft/giet_vm/giet_python/genmap
r737 r753 43 43 # - shell 44 44 # - transpose 45 # - coremark 45 46 ################################################################################### 46 47 … … 162 163 default = False, 163 164 help = 'map the "transpose" application for the GietVM' ) 165 166 parser.add_option( '--coremark', action = 'store_true', dest = 'coremark', 167 default = False, 168 help = 'map the "coremark" application for the GietVM' ) 164 169 165 170 ################################################################################### … … 202 207 map_sort = options.sort # map "sort" application if True 203 208 map_transpose = options.transpose # map "transpose" application if True 209 map_coremark = options.coremark # map "coremark" application if True 204 210 205 211 ################################################################################### … … 290 296 print '[genmap] application "transpose" will be loaded' 291 297 298 if ( map_coremark ): 299 appli = __import__( 'coremark' ) 300 appli.extend( mapping ) 301 print '[genmap] application "coremark" will be loaded' 302 292 303 ################################################################################### 293 304 # Generate xml file if required.
Note: See TracChangeset
for help on using the changeset viewer.