Changeset 753 for soft/giet_vm/giet_python
- Timestamp:
- Jan 6, 2016, 5:14:34 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.