From 106e594580d4de2d680c7ceefc7a1c331b4de3dd Mon Sep 17 00:00:00 2001
From: stijn
Date: Tue, 3 Jul 2018 12:30:42 +0200
Subject: windows: Make printing of debugging info work out of the box.
Printing debugging info by defining MICROPY_DEBUG_VERBOSE expects
a definition of the DEBUG_printf function which is readily available
in printf.c so include that file in the build. Before this patch
one would have to manually provide such definition which is tedious.
For the msvc port disable MICROPY_USE_INTERNAL_PRINTF though: the
linker provides no (easy) way to replace printf with the custom
version as defined in printf.c.
---
ports/windows/Makefile | 1 +
ports/windows/mpconfigport.h | 1 +
ports/windows/msvc/sources.props | 1 +
3 files changed, 3 insertions(+)
diff --git a/ports/windows/Makefile b/ports/windows/Makefile
index 725cb686e..61a6b2844 100644
--- a/ports/windows/Makefile
+++ b/ports/windows/Makefile
@@ -28,6 +28,7 @@ endif
# source files
SRC_C = \
+ lib/utils/printf.c \
ports/unix/main.c \
ports/unix/file.c \
ports/unix/input.c \
diff --git a/ports/windows/mpconfigport.h b/ports/windows/mpconfigport.h
index 9db6d31ce..1107a538e 100644
--- a/ports/windows/mpconfigport.h
+++ b/ports/windows/mpconfigport.h
@@ -121,6 +121,7 @@ extern const struct _mp_print_t mp_stderr_print;
#ifdef _MSC_VER
#define MICROPY_GCREGS_SETJMP (1)
+#define MICROPY_USE_INTERNAL_PRINTF (0)
#endif
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
diff --git a/ports/windows/msvc/sources.props b/ports/windows/msvc/sources.props
index b85295ebc..5c2076f1e 100644
--- a/ports/windows/msvc/sources.props
+++ b/ports/windows/msvc/sources.props
@@ -6,6 +6,7 @@
+
--
cgit v1.2.3