Skip to content

Commit b1de42a

Browse files
authored
[libc] printf, putchar and vprintf in bareemetal entrypoints (llvm#95436)
We now have baremetal implementations of these entrypoints.
1 parent ebdea52 commit b1de42a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

libc/config/baremetal/arm/entrypoints.txt

+3
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,11 @@ set(TARGET_LIBC_ENTRYPOINTS
8080

8181
# stdio.h entrypoints
8282
libc.src.stdio.remove
83+
libc.src.stdio.printf
84+
libc.src.stdio.putchar
8385
libc.src.stdio.sprintf
8486
libc.src.stdio.snprintf
87+
libc.src.stdio.vprintf
8588
libc.src.stdio.vsprintf
8689
libc.src.stdio.vsnprintf
8790

libc/config/baremetal/riscv/entrypoints.txt

+3
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,11 @@ set(TARGET_LIBC_ENTRYPOINTS
8080

8181
# stdio.h entrypoints
8282
libc.src.stdio.remove
83+
libc.src.stdio.printf
84+
libc.src.stdio.putchar
8385
libc.src.stdio.sprintf
8486
libc.src.stdio.snprintf
87+
libc.src.stdio.vprintf
8588
libc.src.stdio.vsprintf
8689
libc.src.stdio.vsnprintf
8790

0 commit comments

Comments
 (0)