[libc-commits] [libc] 4e86c09 - [libc][Obvious] Add a missing dep and fix an incorrect dep.

Siva Chandra Reddy via libc-commits libc-commits at lists.llvm.org
Fri Mar 31 12:37:25 PDT 2023


Author: Siva Chandra Reddy
Date: 2023-03-31T19:36:18Z
New Revision: 4e86c090ca1583f614a84b68c0a509049ff92071

URL: https://github.com/llvm/llvm-project/commit/4e86c090ca1583f614a84b68c0a509049ff92071
DIFF: https://github.com/llvm/llvm-project/commit/4e86c090ca1583f614a84b68c0a509049ff92071.diff

LOG: [libc][Obvious] Add a missing dep and fix an incorrect dep.

Added: 
    

Modified: 
    libc/src/__support/CMakeLists.txt
    libc/src/pthread/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/src/__support/CMakeLists.txt b/libc/src/__support/CMakeLists.txt
index 51230c638cdcf..29d5b980ad3e8 100644
--- a/libc/src/__support/CMakeLists.txt
+++ b/libc/src/__support/CMakeLists.txt
@@ -121,6 +121,7 @@ add_header_library(
     .uint128
     libc.src.__support.CPP.optional
     libc.src.__support.CPP.limits
+    libc.src.__support.FPUtil.fenv_impl
     libc.src.__support.FPUtil.fp_bits
     libc.src.__support.builtin_wrappers
     libc.src.__support.common

diff  --git a/libc/src/pthread/CMakeLists.txt b/libc/src/pthread/CMakeLists.txt
index 210de837189e8..b9d9ff0d5e7ee 100644
--- a/libc/src/pthread/CMakeLists.txt
+++ b/libc/src/pthread/CMakeLists.txt
@@ -299,7 +299,7 @@ add_entrypoint_object(
   HDRS
     pthread_exit.h
   DEPENDS
-    libc.include.threads
+    libc.include.pthread
     libc.src.__support.threads.thread
 )
 


        


More information about the libc-commits mailing list