Changeset 652 for branches


Ignore:
Timestamp:
Mar 3, 2014, 11:38:49 AM (10 years ago)
Author:
cfuguet
Message:

Modifying makefile and soclib configuration file
of the fault_tolerance::tsar_generic_iob platform.

Location:
branches/fault_tolerance/platform/tsar_generic_iob
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/fault_tolerance/platform/tsar_generic_iob/Makefile

    r648 r652  
    33CP        := cp -f
    44MAKE      := make
     5TARGET    := simul.x
     6
     7all: $(TARGET) preloader tags
    58
    69# create simulator
    710
    8 TARGET := simul.x
     11SRCS := top.cpp
     12SRCS += tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp
     13INCS := tsar_iob_cluster/caba/source/include/tsar_iob_cluster.h
     14INCS += top.desc
     15INCS += soclib.conf
    916
    10 $(TARGET): top.cpp top.desc
     17$(TARGET): $(SRCS) $(INCS)
    1118        $(SOCLIB_CC) -P -p top.desc -I. -o simul.x
    1219
     
    5764
    5865
    59 .PHONY: simul.x tags preloader clean clean-soft clean-preloader
     66.PHONY: tags preloader clean clean-soft clean-preloader
    6067
  • branches/fault_tolerance/platform/tsar_generic_iob/soclib.conf

    r648 r652  
    1 config.default.toolchain.set("cflags", config.default.toolchain.cflags)
     1config.default.toolchain.set(
     2        "cflags", config.default.toolchain.cflags
     3#       "cflags", config.default.toolchain.cflags + ['-ggdb']
     4)
    25
    3 #config.default.toolchain.set("cflags", config.default.toolchain.cflags + ['-ggdb'])
     6import os
     7tsar_path = os.environ['TSARPATH']
     8config.addDescPath(tsar_path + "/branches/fault_tolerance/module")
     9config.addDescPath(tsar_path + "/branches/fault_tolerance/lib")
     10
Note: See TracChangeset for help on using the changeset viewer.