diff options
author | Joseph Huber <huberjn@outlook.com> | 2024-07-01 06:29:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-01 06:29:48 -0500 |
commit | ec0e6ef09bdbae42872af1145f9c58c641d0ab8a (patch) | |
tree | 25e9bc8c8e7848de2193860fd7219d6f55b87249 /libc/config | |
parent | d32d20f3a05abf74ecc11848a672d4cac4fa45cd (diff) | |
download | llvm-ec0e6ef09bdbae42872af1145f9c58c641d0ab8a.zip llvm-ec0e6ef09bdbae42872af1145f9c58c641d0ab8a.tar.gz llvm-ec0e6ef09bdbae42872af1145f9c58c641d0ab8a.tar.bz2 |
[libc] Implement the 'remove' function on the GPU (#97096)
Summary:
Straightforward RPC implementation of the `remove` function for the GPU.
Copies over the string and calls `remove` on it, passing the result
back. This is required for building some `libc++` functionality.
Diffstat (limited to 'libc/config')
-rw-r--r-- | libc/config/gpu/entrypoints.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/config/gpu/entrypoints.txt b/libc/config/gpu/entrypoints.txt index 69f1bdb..c8d68d6 100644 --- a/libc/config/gpu/entrypoints.txt +++ b/libc/config/gpu/entrypoints.txt @@ -205,6 +205,7 @@ set(TARGET_LIBC_ENTRYPOINTS libc.src.stdio.putc libc.src.stdio.putchar libc.src.stdio.puts + libc.src.stdio.remove libc.src.stdio.stderr libc.src.stdio.stdin libc.src.stdio.stdout |