Changeset 138 for trunk/Makefile.flags


Ignore:
Timestamp:
May 12, 2010, 7:34:01 PM (14 years ago)
Author:
rosiere
Message:

1) add counters_t type for interface
2) fix in check load in load_store_unit
3) add parameters (but not yet implemented)
4) change environment and add script (distcc_env.sh ...)
5) add warning if an unser change rename flag with l.mtspr instruction
6) ...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.flags

    r137 r138  
    1919
    2020#-----[ Flags ]--------------------------------------------
    21 MORPHEO_FLAGS                   =       -DSYSTEMC               \
    22                                         -DVHDL                  \
    23                                         -DSTATISTICS           
     21MORPHEO_TYPE                    ?= debug_systemc
    2422
    25 #                                       -DPRINT_COLOR           \
    26 #                                       -DDEBUG=DEBUG_NONE      \
    27 #                                       -DDEBUG_MEMORY_LEAK     \
    28 #                                       -DDEBUG_SIGNAL          \
    29 #                                       -DVHDL_TESTBENCH        \
    30 #                                       -DVHDL_TESTBENCH_ASSERT \
    31 #                                       -DTRANSLATION           \
    32 #                                       -DPOSITION              \
     23MORPHEO_systemc_FLAGS           =       -DSYSTEMC               \
     24                                        -DSTATISTICS            \
     25                                        -DTRANSLATION
     26
     27MORPHEO_vhdl_FLAGS              =       -DVHDL                  \
     28                                        -DTRANSLATION
     29
     30MORPHEO_cosim_FLAGS             =       -DSYSTEMC               \
     31                                        -DSTATISTICS            \
     32                                        -DVHDL                  \
     33                                        -DTRANSLATION
     34
     35MORPHEO_debug_FLAGS             =       -DSYSTEMC               \
     36                                        -DDEBUG=DEBUG_FUNC      \
     37                                        -DVHDL
     38
     39MORPHEO_debug_systemc_FLAGS     =       -DSYSTEMC               \
     40                                        -DSTATISTICS            \
     41                                        -DDEBUG=DEBUG_FUNC
     42
     43MORPHEO_FLAGS                   = $(MORPHEO_$(MORPHEO_TYPE)_FLAGS)
     44
     45#                       | systemc | vhdl | cosim | debug | debug_systemc
     46#-----------------------+---------+------+-------+-------+---------------
     47# TRANSLATION           | X       | X    | X     |       |   
     48# SYSTEMC               | X       |      | X     | X     |  X
     49# STATISTICS            | X       |      | X     | X     |  X
     50# VHDL                  |         | X    | X     | X     |   
     51# VHDL_TESTBENCH        |         |      |       |       |   
     52# VHDL_TESTBENCH_ASSERT |         |      |       |       |   
     53# DEBUG=DEBUG_NONE      |         |      |       | X     |  X
     54# DEBUG_MEMORY_LEAK     |         |      |       |       |   
     55# DEBUG_SIGNAL          |         |      |       |       |   
     56# POSITION              |         |      |       |       |   
     57# PRINT_COLOR           |         |      |       |       |   
    3358
    3459# Flags :
    35 # DEBUG={level}                               - Print Debug Message
     60# TRANSLATION                                 - Translate message
    3661# SYSTEMC                                     - To generate a systemc's model
     62# STATISTICS            (need SYSTEMC)        - In the simulation, generate a statistics's file
    3763# VHDL                                        - To generate a vhdl's    models
    3864# VHDL_TESTBENCH        (need SYSTEMC)        - In the simulation, generate two testbench's file (input and ouput) to validate the vhdl's model
    3965# VHDL_TESTBENCH_ASSERT (need VHDL_TESTBENCH) - In the simulation, generate in  testbench's file an serie of assert
     66# DEBUG={level}                               - Print Debug Message
     67# DEBUG_MEMORY_LEAK                           -
     68# DEBUG_SIGNAL                                -
    4069# POSITION                                    - To generate a position's files     (it's input of viewer)
    41 # STATISTICS            (need SYSTEMC)        - In the simulation, generate a statistics's file
    42 # TRANSLATION                                 - Translate message
    4370# PRINT_COLOR                                 - Print with colors
Note: See TracChangeset for help on using the changeset viewer.