Changeset 130 for trunk/Softwares


Ignore:
Timestamp:
Jun 30, 2009, 2:31:46 PM (15 years ago)
Author:
rosiere
Message:

1) add MORPHEO_PREFIX

Location:
trunk/Softwares
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Softwares/Dhrystone/Makefile

    r112 r130  
    77#
    88
     9include                         Makefile.defs
    910
    1011# common definition
     
    2223LIBNAME                         = $(NEWLIB_LIBNAME)
    2324
     25FLAGS                           = -DDHRYSTONE_NB_RUNS=$(DHRYSTONE_NB_RUNS)
     26
    2427#-----[ Files ]-------------------------------------------------------------------
    2528OBJECTS                         =       $(NEWLIB)/lib/*.o \
  • trunk/Softwares/Dhrystone/src/c/main.c

    r128 r130  
    1010#include "dhry21.h"
    1111
     12#ifndef DHRYSTONE_NB_RUNS
     13# error "DHRYSTONE_NB_RUNS must be defined."
     14#endif
     15
    1216int main()
    1317{
    14   dhry21(100);
     18  dhry21(DHRYSTONE_NB_RUNS);
    1519   
    1620  exit (0);
  • trunk/Softwares/MiBench/Makefile.defs

    r129 r130  
    1919                        none
    2020
    21 BENCHS_TYPE             = -DMIBENCH_SMALL
     21BENCHS_TYPE             = -DMIBENCH_LARGE
     22
     23# MIBENCH_SMALL
     24# MIBENCH_LARGE
Note: See TracChangeset for help on using the changeset viewer.