[libc-commits] [PATCH] D147961: [libc] Update supported riscv libs
Mikhail Ramalho via Phabricator via libc-commits
libc-commits at lists.llvm.org
Mon Apr 10 12:18:52 PDT 2023
mikhail.ramalho created this revision.
mikhail.ramalho added a reviewer: sivachandra.
Herald added subscribers: libc-commits, asb, luke, VincentWu, vkmr, frasercrmck, ecnelises, evandro, luismarques, apazos, sameer.abuasal, tschuett, pengfei, s.egerton, Jim, benna, psnobl, jocewei, PkmX, the_o, brucehoult, MartinMosbeck, rogfer01, edward-jones, zzheng, jrtc27, shiva0217, kito-cheng, niosHD, sabuasal, simoncook, johnrusso, rbar, arichardson.
Herald added projects: libc-project, All.
mikhail.ramalho requested review of this revision.
Herald added subscribers: pcwang-thead, eopXD.
This patch updates the list of supported libs according to the latest changes to x86_64
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D147961
Files:
libc/config/linux/riscv64/entrypoints.txt
libc/config/linux/riscv64/headers.txt
Index: libc/config/linux/riscv64/headers.txt
===================================================================
--- libc/config/linux/riscv64/headers.txt
+++ libc/config/linux/riscv64/headers.txt
@@ -20,6 +20,7 @@
libc.include.threads
libc.include.time
libc.include.unistd
+ libc.include.wchar
libc.include.arpa_inet
Index: libc/config/linux/riscv64/entrypoints.txt
===================================================================
--- libc/config/linux/riscv64/entrypoints.txt
+++ libc/config/linux/riscv64/entrypoints.txt
@@ -114,6 +114,8 @@
libc.src.stdio.remove
libc.src.stdio.sprintf
libc.src.stdio.snprintf
+ libc.src.stdio.fprintf
+ libc.src.stdio.printf
# sys/mman.h entrypoints
libc.src.sys.mman.madvise
@@ -196,6 +198,9 @@
libc.src.unistd.unlink
libc.src.unistd.unlinkat
libc.src.unistd.write
+
+ # wchar.h entrypoints
+ libc.src.wchar.wctob
)
set(TARGET_LIBM_ENTRYPOINTS
@@ -271,6 +276,7 @@
libc.src.math.llround
libc.src.math.llroundf
libc.src.math.llroundl
+ libc.src.math.log10
libc.src.math.log10f
libc.src.math.log1pf
libc.src.math.log2f
@@ -408,10 +414,8 @@
libc.src.stdio.funlockfile
libc.src.stdio.fwrite
libc.src.stdio.fwrite_unlocked
- libc.src.stdio.fprintf
libc.src.stdio.getc
libc.src.stdio.getc_unlocked
- libc.src.stdio.printf
libc.src.stdio.sscanf
libc.src.stdio.scanf
libc.src.stdio.fscanf
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D147961.512217.patch
Type: text/x-patch
Size: 1485 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230410/3ed90d93/attachment.bin>
More information about the libc-commits
mailing list