[libc] Add dl_iterate_phdr to Linux x86-64 entrypoints#193601
Conversation
Created using spr 1.3.7
|
@llvm/pr-subscribers-libc Author: Aiden Grossman (boomanaiden154) ChangesThis is needed for building libunwind. Full diff: https://github.com/llvm/llvm-project/pull/193601.diff 1 Files Affected:
diff --git a/libc/config/linux/x86_64/entrypoints.txt b/libc/config/linux/x86_64/entrypoints.txt
index f67d658d0b176..51da06cec588d 100644
--- a/libc/config/linux/x86_64/entrypoints.txt
+++ b/libc/config/linux/x86_64/entrypoints.txt
@@ -1454,6 +1454,9 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.nl_types.catopen
libc.src.nl_types.catclose
libc.src.nl_types.catgets
+
+ # link.h entrypoints
+ libc.src.link.dl_iterate_phdr
)
endif()
|
AFAICT libunwind when using |
Ah. I was missing that this was only a stub implementation. For some reason I was under the impression that this was a full implementation. Do we need to fill out a |
This is needed for building libunwind.