[libc-commits] [PATCH] D81533: [libc] Add a simple linux aarch64 config.

Siva Chandra via Phabricator via libc-commits libc-commits at lists.llvm.org
Wed Jun 10 11:45:51 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG1f567b2c6f65: [libc] Add a simple linux aarch64 config. (authored by sivachandra).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D81533/new/

https://reviews.llvm.org/D81533

Files:
  libc/config/linux/aarch64/entrypoints.txt
  libc/config/linux/aarch64/headers.txt


Index: libc/config/linux/aarch64/headers.txt
===================================================================
--- /dev/null
+++ libc/config/linux/aarch64/headers.txt
@@ -0,0 +1,5 @@
+set(PUBLIC_HEADERS
+    libc.include.errno
+    libc.include.math
+    libc.include.sys_syscall
+)
Index: libc/config/linux/aarch64/entrypoints.txt
===================================================================
--- /dev/null
+++ libc/config/linux/aarch64/entrypoints.txt
@@ -0,0 +1,26 @@
+set(TARGET_LIBC_ENTRYPOINTS
+    # errno.h entrypoints
+    libc.src.errno.__errno_location
+
+    # string.h entrypoints
+    libc.src.string.strlen
+)
+
+set(TARGET_LIBM_ENTRYPOINTS
+    # math.h entrypoints
+    libc.src.math.ceil
+    libc.src.math.ceilf
+    libc.src.math.cosf
+    libc.src.math.expf
+    libc.src.math.exp2f
+    libc.src.math.fabs
+    libc.src.math.fabsf
+    libc.src.math.floor
+    libc.src.math.floorf
+    libc.src.math.round
+    libc.src.math.roundf
+    libc.src.math.sincosf
+    libc.src.math.sinf
+    libc.src.math.trunc
+    libc.src.math.truncf
+)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D81533.269929.patch
Type: text/x-patch
Size: 1068 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20200610/c9787168/attachment.bin>


More information about the libc-commits mailing list