[libc][dlfcn] Remove unused errno dep (#152222)

This removes the errno dep for the stub libdl functions, since there is
no need for it.
This commit is contained in:
Caslyn Tonelli 2025-08-07 07:48:28 -07:00 committed by GitHub
parent c088b5ffca
commit e1171e6a98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,6 @@ add_entrypoint_object(
dlerror.h
DEPENDS
libc.include.dlfcn
libc.src.errno.errno
)
add_entrypoint_object(
@ -25,7 +24,6 @@ add_entrypoint_object(
dlopen.h
DEPENDS
libc.include.dlfcn
libc.src.errno.errno
)
add_entrypoint_object(
@ -36,7 +34,6 @@ add_entrypoint_object(
dlsym.h
DEPENDS
libc.include.dlfcn
libc.src.errno.errno
)
add_entrypoint_object(
@ -47,7 +44,6 @@ add_entrypoint_object(
dlinfo.h
DEPENDS
libc.include.dlfcn
libc.src.errno.errno
)
add_entrypoint_object(
@ -58,5 +54,4 @@ add_entrypoint_object(
dladdr.h
DEPENDS
libc.include.dlfcn
libc.src.errno.errno
)