Changeset 130
- Timestamp:
- Jun 30, 2009, 2:31:46 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 39 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/Makefile.Common
r117 r130 11 11 else 12 12 include $(MORPHEO_TOPLEVEL)/Makefile.tools 13 endif 14 ifeq ($(origin MORPHEO_PREFIX), undefined) 15 $(error "variable MORPHEO_PREFIX is undefined"); 13 16 endif 14 17 ifeq ($(origin MORPHEO_TMP), undefined) … … 27 30 DIR_SRC = src 28 31 DIR_OBJ = $(DIR_TMP)/obj 29 DIR_LIB = $( DIR_TMP)/lib32 DIR_LIB = $(MORPHEO_PREFIX)/lib 30 33 DIR_SCRIPT = $(MORPHEO_SCRIPT) 31 34 -
trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Version.h
r129 r130 10 10 #define MORPHEO_MAJOR_VERSION "0" 11 11 #define MORPHEO_MINOR_VERSION "2" 12 #define MORPHEO_REVISION "1 29"12 #define MORPHEO_REVISION "130" 13 13 #define MORPHEO_CODENAME "Castor" 14 14 15 #define MORPHEO_DATE_DAY " 29"15 #define MORPHEO_DATE_DAY "30" 16 16 #define MORPHEO_DATE_MONTH "06" 17 17 #define MORPHEO_DATE_YEAR "2009" -
trunk/IPs/systemC/processor/Morpheo/Files/Morpheo-Dhrystone.sim
r129 r130 15 15 <parameter name="directory_vhdl" value="." /> 16 16 <parameter name="directory_position" value="." /> 17 <parameter name="directory_log" value=" /dsk/l1/misc/Morpheo/"/>17 <parameter name="directory_log" value="." /> 18 18 19 <parameter name="statistics_cycle_start" value="100000" />19 <parameter name="statistics_cycle_start" value="100000" /> 20 20 <parameter name="statistics_period" value="0" /> 21 21 -
trunk/IPs/systemC/processor/Morpheo/Files/Morpheo.sim
r128 r130 15 15 <parameter name="directory_vhdl" value="." /> 16 16 <parameter name="directory_position" value="." /> 17 <parameter name="directory_log" value=" /dsk/l1/misc/Morpheo/"/>17 <parameter name="directory_log" value="." /> 18 18 19 19 <parameter name="statistics_cycle_start" value="1000000" /> -
trunk/IPs/systemC/processor/Morpheo/Files/debug.sim
r129 r130 15 15 <parameter name="directory_vhdl" value="." /> 16 16 <parameter name="directory_position" value="." /> 17 <parameter name="directory_log" value=" /dsk/l1/misc/Morpheo/"/>17 <parameter name="directory_log" value="." /> 18 18 19 19 <parameter name="statistics_cycle_start" value="5" /> -
trunk/Platforms/Test/Makefile
r129 r130 23 23 $(error "variable MORPHEO_TMP is undefined") 24 24 endif 25 ifeq ($(origin MORPHEO_PREFIX), undefined) 26 $(error "variable MORPHEO_PREFIX is undefined") 27 endif 25 28 26 29 DATA_ALL = * … … 43 46 ENTITY = Test 44 47 45 PATH_TMP = $(MORPHEO_TMP)46 48 PATH_INC = include 47 49 PATH_SRC = src 48 PATH_OBJ = $( PATH_TMP)/obj49 PATH_LIB = $( PATH_TMP)/lib50 PATH_BIN = $( PATH_TMP)/bin51 PATH_LOG = $( PATH_TMP)/log50 PATH_OBJ = $(MORPHEO_TMP)/obj 51 PATH_LIB = $(MORPHEO_PREFIX)/lib 52 PATH_BIN = $(MORPHEO_PREFIX)/bin 53 PATH_LOG = $(MORPHEO_TMP)/log 52 54 PATH_DATA = ./data 53 55 PATH_LOGS = $(patsubst $(PATH_DATA)/%,$(PATH_LOG)/%,$(wildcard $(PATH_DATA)/*)) -
trunk/Softwares/Dhrystone/Makefile
r112 r130 7 7 # 8 8 9 include Makefile.defs 9 10 10 11 # common definition … … 22 23 LIBNAME = $(NEWLIB_LIBNAME) 23 24 25 FLAGS = -DDHRYSTONE_NB_RUNS=$(DHRYSTONE_NB_RUNS) 26 24 27 #-----[ Files ]------------------------------------------------------------------- 25 28 OBJECTS = $(NEWLIB)/lib/*.o \ -
trunk/Softwares/Dhrystone/src/c/main.c
r128 r130 10 10 #include "dhry21.h" 11 11 12 #ifndef DHRYSTONE_NB_RUNS 13 # error "DHRYSTONE_NB_RUNS must be defined." 14 #endif 15 12 16 int main() 13 17 { 14 dhry21( 100);18 dhry21(DHRYSTONE_NB_RUNS); 15 19 16 20 exit (0); -
trunk/Softwares/MiBench/Makefile.defs
r129 r130 19 19 none 20 20 21 BENCHS_TYPE = -DMIBENCH_SMALL 21 BENCHS_TYPE = -DMIBENCH_LARGE 22 23 # MIBENCH_SMALL 24 # MIBENCH_LARGE -
trunk/environment.sh
r123 r130 28 28 export MORPHEO_SCRIPT=${MORPHEO_TOPLEVEL}/IPs/systemC/processor/Morpheo/Script 29 29 export MORPHEO_HOME=${HOME}/.Morpheo 30 export MORPHEO_ TMP=/dsk/l1/misc/Morpheo30 export MORPHEO_PREFIX=/users/chaos/kane/Morpheo 31 31 #export MORPHEO_TMP=${HOME}/tmp/Morpheo 32 #export MORPHEO_TMP=/dsk/l1/misc/Morpheo 33 export MORPHEO_TMP=${MORPHEO_PREFIX} 32 34 MORPHEO_XTTY=${MORPHEO_TOPLEVEL}/IPs/systemC/Environment/TTY/xtty 33 35 … … 39 41 echo " - MORPHEO_SCRIPT is set to ${MORPHEO_SCRIPT}" 40 42 echo " - MORPHEO_HOME is set to ${MORPHEO_HOME}" 43 echo " - MORPHEO_PREFIX is set to ${MORPHEO_PREFIX}" 41 44 echo " - MORPHEO_TMP is set to ${MORPHEO_TMP}" 42 45
Note: See TracChangeset
for help on using the changeset viewer.