Skip to content

[libc] fix lfind entrypoints #115771

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions libc/config/baremetal/arm/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ set(TARGET_LIBC_ENTRYPOINTS
# errno.h entrypoints
libc.src.errno.errno

# search.h entrypoints
libc.src.search.lfind

# setjmp.h entrypoints
libc.src.setjmp.longjmp
libc.src.setjmp.setjmp
Expand Down
3 changes: 0 additions & 3 deletions libc/config/baremetal/riscv/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ set(TARGET_LIBC_ENTRYPOINTS
# errno.h entrypoints
libc.src.errno.errno

# search.h entrypoints
libc.src.search.lfind

# string.h entrypoints
libc.src.string.bcmp
libc.src.string.bcopy
Expand Down
3 changes: 0 additions & 3 deletions libc/config/darwin/arm/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ set(TARGET_LIBC_ENTRYPOINTS
# errno.h entrypoints
libc.src.errno.errno

# search.h entrypoints
libc.src.search.lfind

# string.h entrypoints
libc.src.string.bcmp
libc.src.string.bcopy
Expand Down
6 changes: 3 additions & 3 deletions libc/config/linux/arm/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ set(TARGET_LIBC_ENTRYPOINTS
# errno.h entrypoints
libc.src.errno.errno

# search.h entrypoints
libc.src.search.lfind

# string.h entrypoints
libc.src.string.bcmp
libc.src.string.bcopy
Expand Down Expand Up @@ -186,6 +183,9 @@ set(TARGET_LIBC_ENTRYPOINTS

if(LLVM_LIBC_FULL_BUILD)
list(APPEND TARGET_LIBC_ENTRYPOINTS
# search.h entrypoints
libc.src.search.lfind

# setjmp.h entrypoints
libc.src.setjmp.longjmp
libc.src.setjmp.setjmp
Expand Down
3 changes: 0 additions & 3 deletions libc/config/windows/entrypoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.ctype.tolower
libc.src.ctype.toupper

# search.h entrypoints
libc.src.search.lfind

# string.h entrypoints
libc.src.string.bcmp
libc.src.string.bcopy
Expand Down
Loading