[libc-commits] [PATCH] D75502: [libc] Add `errno_h` as a dependency to `sigaddset` and `sigemptyset`.

Siva Chandra via Phabricator via libc-commits libc-commits at lists.llvm.org
Mon Mar 2 23:36:29 PST 2020


sivachandra created this revision.
sivachandra added reviewers: PaulkaToast, abrachet.
Herald added subscribers: libc-commits, tschuett, MaskRay, mgorny.
Herald added a project: libc-project.

The bots are catching this missing dependency.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D75502

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


Index: libc/src/signal/linux/CMakeLists.txt
===================================================================
--- libc/src/signal/linux/CMakeLists.txt
+++ libc/src/signal/linux/CMakeLists.txt
@@ -35,6 +35,7 @@
     ../sigemptyset.h
   DEPENDS
     __errno_location
+    errno_h
     signal_h
 )
 
@@ -47,5 +48,6 @@
     ../sigaddset.h
   DEPENDS
     __errno_location
+    errno_h
     signal_h
 )


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75502.247801.patch
Type: text/x-patch
Size: 400 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20200303/163ca71f/attachment.bin>


More information about the libc-commits mailing list