output unless SDCCPICDEBUG is set
* device/lib/pic16/Makefile.rules (%.lib target): suppress verbose
output if SILENT is set
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4294
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2006-07-20 Raphael Neider <rneider AT web.de>
+
+ * src/pic/device.c (addMemRange,assignRegister): suppress verbose
+ output unless SDCCPICDEBUG is set
+ * device/lib/pic16/Makefile.rules (%.lib target): suppress verbose
+ output if SILENT is set
+
2006-07-11 Borut Razem <borut.razem AT siol.net>
* doc/README.txt: updated
2006-07-08 Maarten Brock <sourceforge.brock AT dse.nl>
* device/include/mcs51/XC866.h: added sbit definitions for Px_x, P1_x, P2_x
- * src/pic16/glue.c (initPointer), fixed bug 1496419 for pic16
+ * src/pic16/glue.c (initPointer): fixed bug 1496419 for pic16
2006-07-06 Maarten Brock <sourceforge.brock AT dse.nl>
%.lib : recurse
ifndef SILENT
@echo "[ LIB ] $(patsubst $(top_builddir)%,%,$@) <== **/*.o"
-endif
$(Q)$(RM) "$@"; LIB_O=`find "$(top_builddir)$(builddir)" -name "*.o"`; echo $${LIB_O}; [ "x$${LIB_O}" = "x" ] || $(LIB) $(LIBFLAGS) "$@" $${LIB_O}
+else
+ $(Q)$(RM) "$@"; LIB_O=`find "$(top_builddir)$(builddir)" -name "*.o"`; [ "x$${LIB_O}" = "x" ] || $(LIB) $(LIBFLAGS) "$@" $${LIB_O}
+endif
endif
.PHONY : recurse force
}
}
} else {
- fprintf(stderr, "WARNING: %s:%s memory at 0x%x is beyond max ram = 0x%x\n",
- __FILE__,__FUNCTION__,(i|alias), maxRAMaddress);
+ if (getenv("SDCCPICDEBUG")) {
+ fprintf(stderr, "WARNING: %s:%s memory at 0x%x is beyond max ram = 0x%x\n",
+ __FILE__,__FUNCTION__,(i|alias), maxRAMaddress);
+ }
}
}
return reg->address;
}
- fprintf(stderr, "WARNING: Ignoring Out of Range register assignment at fixed address %d, %s\n",
- reg->address, reg->name);
+ if (getenv("SDCCPICDEBUG")) {
+ fprintf(stderr, "WARNING: Ignoring Out of Range register assignment at fixed address %d, %s\n",
+ reg->address, reg->name);
+ }
} else {