diff options
author | Damien George <damien.p.george@gmail.com> | 2018-02-22 13:19:09 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-02-22 13:19:09 +1100 |
commit | a36c700d9b3bacd3bfba0eef5bf9c9ba19a0e440 (patch) | |
tree | a8d300203676a6ccb75e339057a0348c31c22fe7 | |
parent | 6af4515969045701a44fc282f72f68b7faaeb538 (diff) |
minimal/Makefile: Explicitly include lib/utils/printf.c in build.
The bare-metal port needs it and it's no longer included by default since
the Makefile now uses $(PY_CORE_O).
-rw-r--r-- | ports/minimal/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/minimal/Makefile b/ports/minimal/Makefile index e97fb16d8..64ad3cc0b 100644 --- a/ports/minimal/Makefile +++ b/ports/minimal/Makefile @@ -41,6 +41,7 @@ LIBS = SRC_C = \ main.c \ uart_core.c \ + lib/utils/printf.c \ lib/utils/stdout_helpers.c \ lib/utils/pyexec.c \ lib/libc/string0.c \ |