diff options
| author | Joel Challis | 2021-02-14 02:44:22 +0100 |
|---|---|---|
| committer | GitHub | 2021-02-14 02:44:22 +0100 |
| commit | 1f2fe2eab99548f4bde2a79b03e3303cc9b73214 (patch) | |
| tree | 22c7b61acf16ce3e25b5c35ce56cc2bb6ebec290 /tmk_core/common/lib_printf.mk | |
| parent | 72e515547aedbfd0b91296a51a81861236be8fe5 (diff) | |
Refactor platform logic within print.h (#11863)
* Remove GCC check from debug
* Remove platform logic from common.mk
* Refactor platform logic within print.h
* restore debug.c format
* headers
* Rename function pointer type
* review comments
* Update tmk_core/common/printf.c
Co-authored-by: Nick Brassel <nick@tzarc.org>
* Format
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'tmk_core/common/lib_printf.mk')
| -rw-r--r-- | tmk_core/common/lib_printf.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tmk_core/common/lib_printf.mk b/tmk_core/common/lib_printf.mk new file mode 100644 index 0000000000..10d2d8468d --- /dev/null +++ b/tmk_core/common/lib_printf.mk @@ -0,0 +1,9 @@ +PRINTF_PATH = $(LIB_PATH)/printf + +TMK_COMMON_SRC += $(PRINTF_PATH)/printf.c +TMK_COMMON_SRC += $(COMMON_DIR)/printf.c +TMK_COMMON_DEFS += -DPRINTF_DISABLE_SUPPORT_FLOAT +TMK_COMMON_DEFS += -DPRINTF_DISABLE_SUPPORT_EXPONENTIAL +TMK_COMMON_DEFS += -DPRINTF_DISABLE_SUPPORT_LONG_LONG +TMK_COMMON_DEFS += -DPRINTF_DISABLE_SUPPORT_PTRDIFF_T +VPATH += $(PRINTF_PATH) |