Commit e53cb026 authored by Alessandro Rubini's avatar Alessandro Rubini

diag: bugfix for arch-gnu-linux

pp_printf calls puts, but that's the "embedded" puts, the one that
doens't add a trailing newline. So to avoid extra lines and split
messages in the diagnostic output we need to link the fake puts, that
calls pp_puts instead (in turn, pp_puts for arch-gnu-linux relies on
fputs, which doesn't add the trailing newline).
Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent bb38580a
......@@ -12,6 +12,7 @@ OBJ-libarch := $A/posix-startup.o \
$A/posix-time.o \
$A/posix-timer.o \
lib/cmdline.o \
lib/libc-functions.o \
lib/div64.o
$(LIBARCH): $(OBJ-libarch)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment