[libc-commits] [libc] 80aba2b - [libc] Add `errno_h` as a dependency to `sigaddset` and `sigemptyset`.

Siva Chandra Reddy via libc-commits libc-commits at lists.llvm.org
Mon Mar 2 23:49:39 PST 2020


Author: Siva Chandra Reddy
Date: 2020-03-02T23:46:30-08:00
New Revision: 80aba2b262456799eede5fa1647b1f7eddeb709d

URL: https://github.com/llvm/llvm-project/commit/80aba2b262456799eede5fa1647b1f7eddeb709d
DIFF: https://github.com/llvm/llvm-project/commit/80aba2b262456799eede5fa1647b1f7eddeb709d.diff

LOG: [libc] Add `errno_h` as a dependency to `sigaddset` and `sigemptyset`.

Summary: The bots are catching this missing dependency.

Reviewers: PaulkaToast, abrachet

Subscribers: mgorny, MaskRay, tschuett, libc-commits

Tags: #libc-project

Differential Revision: https://reviews.llvm.org/D75502

Added: 
    

Modified: 
    libc/src/signal/linux/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/src/signal/linux/CMakeLists.txt b/libc/src/signal/linux/CMakeLists.txt
index 53bf5fc0f56b..022f41b5a0eb 100644
--- a/libc/src/signal/linux/CMakeLists.txt
+++ b/libc/src/signal/linux/CMakeLists.txt
@@ -35,6 +35,7 @@ add_entrypoint_object(
     ../sigemptyset.h
   DEPENDS
     __errno_location
+    errno_h
     signal_h
 )
 
@@ -47,5 +48,6 @@ add_entrypoint_object(
     ../sigaddset.h
   DEPENDS
     __errno_location
+    errno_h
     signal_h
 )


        


More information about the libc-commits mailing list