Changeset 957 for branches/reconfiguration/platforms
- Timestamp:
- Mar 19, 2015, 5:08:34 PM (10 years ago)
- Location:
- branches/reconfiguration/platforms/tsar_generic_iob
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/scripts/onerun.py
r940 r957 1 #!/usr/bin/env python 1 #!/usr/bin/env python2 2 2 # @date 22 September, 2014 3 3 # @author cfuguet <cesar.fuguet-tortolero@lip6.fr> … … 199 199 200 200 parser.add_argument( 201 '--disk-image', '-di', dest='diskimage', default=" ./file.dmg",201 '--disk-image', '-di', dest='diskimage', default="/dev/null", 202 202 help='relative or absolute path to the external firmware') 203 203 -
branches/reconfiguration/platforms/tsar_generic_iob/soclib.conf
r906 r957 1 1 # append compilation flags 2 2 cflags = config.default.toolchain.cflags 3 if config.default == config.envsystemcassomp:4 cflags.extend(['-DUSE_OPENMP=1'])5 else:6 cflags.extend(['-DUSE_OPENMP=0'])7 3 #cflags.extend(['-ggdb']) 8 4 config.default.toolchain.set("cflags", cflags) -
branches/reconfiguration/platforms/tsar_generic_iob/top.cpp
r941 r957 1032 1032 { 1033 1033 std::ostringstream term_name; 1034 1035 1036 1037 1038 1039 1040 1041 1034 term_name << "term" << tid; 1035 vect_names.push_back(term_name.str().c_str()); 1036 } 1037 VciMultiTty<vci_param_ext>* mtty; 1038 mtty = new VciMultiTty<vci_param_ext>( "mtty", 1039 IntTab(0, IOX_MTTY_TGT_ID), 1040 maptab_iox, 1041 vect_names); 1042 1042 1043 1043 // IOPIC
Note: See TracChangeset
for help on using the changeset viewer.