[libc-commits] [libc] [libc] fix typo due to futex renaming (PR #91379)

Schrodinger ZHU Yifan via libc-commits libc-commits at lists.llvm.org
Tue May 7 12:05:46 PDT 2024


https://github.com/SchrodingerZhu created https://github.com/llvm/llvm-project/pull/91379

It is strange that cmake did not error on this.

>From 5c23ee5b1809214a53b8668bc59a56c2e9f7aa53 Mon Sep 17 00:00:00 2001
From: Schrodinger ZHU Yifan <yifanzhu at rochester.edu>
Date: Tue, 7 May 2024 15:04:52 -0400
Subject: [PATCH] [libc] fix typo due to futex renaming

---
 libc/src/__support/threads/linux/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/src/__support/threads/linux/CMakeLists.txt b/libc/src/__support/threads/linux/CMakeLists.txt
index b277c2a37f2d0..9bee30206f1b9 100644
--- a/libc/src/__support/threads/linux/CMakeLists.txt
+++ b/libc/src/__support/threads/linux/CMakeLists.txt
@@ -27,7 +27,7 @@ add_header_library(
   HDRS
     mutex.h
   DEPENDS
-    .futex
+    .futex_utils
     libc.src.__support.threads.mutex_common
 )
 



More information about the libc-commits mailing list