File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
libc/config/darwin/aarch64 Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,6 @@ set(TARGET_LIBC_ENTRYPOINTS
2020 # errno.h entrypoints
2121 libc.src.errno.errno
2222
23- # setjmp.h entrypoints
24- libc.src.setjmp.longjmp
25- libc.src.setjmp.setjmp
26- libc.src.setjmp.siglongjmp
27- libc.src.setjmp.sigsetjmp
2823
2924
3025 # string.h entrypoints
@@ -108,6 +103,17 @@ set(TARGET_LIBC_ENTRYPOINTS
108103 libc.src.stdlib.free
109104)
110105
106+ if(LLVM_LIBC_FULL_BUILD)
107+ list(APPEND TARGET_LIBC_ENTRYPOINTS
108+ # setjmp.h entrypoints
109+ libc.src.setjmp.longjmp
110+ libc.src.setjmp.setjmp
111+ libc.src.setjmp.siglongjmp
112+ libc.src.setjmp.sigsetjmp
113+ )
114+ endif()
115+
116+
111117set(TARGET_LIBM_ENTRYPOINTS
112118 # complex.h entrypoints
113119 libc.src.complex.creal
You can’t perform that action at this time.
0 commit comments