[libc-commits] [libc] [libc] implement sigsetjmp/siglongjmp for x86-64 (PR #136072)

via libc-commits libc-commits at lists.llvm.org
Wed Apr 16 23:55:17 PDT 2025


================
@@ -10,6 +10,21 @@ add_entrypoint_object(
     ${libc_opt_high_flag}
 )
 
+add_entrypoint_object(
+  sigsetjmp
+  SRCS
+    sigsetjmp.cpp
+  HDRS
+    ../sigsetjmp.h
+  DEPENDS
+    libc.hdr.types.jmp_buf
+    libc.hdr.types.sigset_t
+    libc.src.setjmp.sigsetjmp_epilogue
+    libc.src.setjmp.setjmp
+  COMPILE_OPTIONS
----------------
lntue wrote:

Move `COMPILE_OPTIONS` above `DEPENDS`.

https://github.com/llvm/llvm-project/pull/136072


More information about the libc-commits mailing list