diff --git a/plugins/example_plugin/Makefile b/plugins/example_plugin/Makefile index 08fb63f..dd480be 100644 --- a/plugins/example_plugin/Makefile +++ b/plugins/example_plugin/Makefile @@ -230,7 +230,7 @@ $(OUTPUT) : $(OFILES) #--------------------------------------------------------------------------------- %.o: %.S @echo $(notdir $<) - $(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(INCLUDE_FULL) -c $< -o $@ $(ERROR_FILTER) + @$(CC) -MMD -MP -MF $(DEPSDIR)/$*.d -x assembler-with-cpp $(INCLUDE_FULL) -c $< -o $@ $(ERROR_FILTER) #--------------------------------------------------------------------------------- %.png.o : %.png diff --git a/plugins/example_plugin/makefile.mk b/plugins/example_plugin/makefile.mk index ed19430..7caac6f 100644 --- a/plugins/example_plugin/makefile.mk +++ b/plugins/example_plugin/makefile.mk @@ -13,7 +13,7 @@ WUT_ENABLE_CPP := 0 # if this is unacceptable to you then you should use this as it replaces the newlib # malloc functions which ones which redirect to the CafeOS default heap functions # such as MEMAllocFromDefaultHeap. -WUT_DEFAULT_MALLOC := 0 +WUT_DEFAULT_MALLOC := 1 # Target filename TARGET := $(notdir $(CURDIR)).mod