Changeset 652 for branches/fault_tolerance
- Timestamp:
- Mar 3, 2014, 11:38:49 AM (11 years ago)
- 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 3 3 CP := cp -f 4 4 MAKE := make 5 TARGET := simul.x 6 7 all: $(TARGET) preloader tags 5 8 6 9 # create simulator 7 10 8 TARGET := simul.x 11 SRCS := top.cpp 12 SRCS += tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp 13 INCS := tsar_iob_cluster/caba/source/include/tsar_iob_cluster.h 14 INCS += top.desc 15 INCS += soclib.conf 9 16 10 $(TARGET): top.cpp top.desc17 $(TARGET): $(SRCS) $(INCS) 11 18 $(SOCLIB_CC) -P -p top.desc -I. -o simul.x 12 19 … … 57 64 58 65 59 .PHONY: simul.xtags preloader clean clean-soft clean-preloader66 .PHONY: tags preloader clean clean-soft clean-preloader 60 67 -
branches/fault_tolerance/platform/tsar_generic_iob/soclib.conf
r648 r652 1 config.default.toolchain.set("cflags", config.default.toolchain.cflags) 1 config.default.toolchain.set( 2 "cflags", config.default.toolchain.cflags 3 # "cflags", config.default.toolchain.cflags + ['-ggdb'] 4 ) 2 5 3 #config.default.toolchain.set("cflags", config.default.toolchain.cflags + ['-ggdb']) 6 import os 7 tsar_path = os.environ['TSARPATH'] 8 config.addDescPath(tsar_path + "/branches/fault_tolerance/module") 9 config.addDescPath(tsar_path + "/branches/fault_tolerance/lib") 10
Note: See TracChangeset
for help on using the changeset viewer.