]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - support/make/avr/avr.rules
Don't use the "__" for TOSSIM. This re-enables the inspection of variables.
[tinyos-2.x.git] / support / make / avr / avr.rules
index 5f95880bdfa6ecb489096c911f60d2bff58d27ed..7424b8408f5dff47e09c48912763f1c7e1536801 100644 (file)
@@ -36,7 +36,9 @@ NCC = ncc
 LIBS = -lm
 
 # Use __ as the separator - requires nesC 1.2.9 or later
-PFLAGS += -fnesc-separator=__
+ifneq ($(filter sim,$(GOALS)),sim)
+       PFLAGS += -fnesc-separator=__
+endif
 AMADDR = ActiveMessageAddressC__addr
 BUILDDIR ?= build/$(PLATFORM)
 MAIN_EXE = $(BUILDDIR)/main.exe
@@ -138,6 +140,11 @@ exe0: builddir $(BUILD_EXTRA_DEPS) FORCE
        $(NCC) -o $(MAIN_EXE) $(NCC_SAFE_TINYOS_FLAGS) $(OPTFLAGS) $(PFLAGS) $(CFLAGS) $(WIRING_CHECK_FLAGS) $(COMPONENT).nc $(LIBS) $(LDFLAGS)
 ifdef WIRING_CHECK_FILE
        @nescc-wiring $(WIRING_CHECK_FILE)
+endif
+ifdef STACK_CHECK
+       @echo
+       @-tos-ramsize $(PLATFORM) $(MAIN_EXE)
+       @echo
 endif
        @echo "    compiled $(COMPONENT) to $(MAIN_EXE)"