Skip to content

Commit 62e5b6e

Browse files
[libc] fix pthread build issue for full-build mode (#100912)
Fix a silly typo that stops pthread from being built
1 parent 315a55f commit 62e5b6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/__support/threads/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ endif()
101101

102102
set(tid_dep)
103103
if (LLVM_LIBC_FULL_BUILD)
104-
list(APPEND tid_dep libc.src.__support.thread)
104+
list(APPEND tid_dep libc.src.__support.threads.thread)
105105
else()
106106
list(APPEND tid_dep libc.src.__support.OSUtil.osutil)
107107
list(APPEND tid_dep libc.include.sys_syscall)

0 commit comments

Comments
 (0)