Skip to content

Commit f0ac60e

Browse files
committed
Add logging
1 parent af59a3c commit f0ac60e

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

libc/config/linux/aarch64/exclude.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
include(CheckSymbolExists)
22
check_symbol_exists(SYS_faccessat2 "sys/syscall.h" HAVE_SYS_FACCESSAT2)
33
if(NOT HAVE_SYS_FACCESSAT2)
4+
message(VERBOSE "unistd.faccessat excluded from build, faccessat2 syscall is not available on the system")
45
list(APPEND TARGET_LLVMLIBC_REMOVED_ENTRYPOINTS
56
libc.src.unistd.faccessat
67
)

libc/config/linux/riscv/exclude.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
include(CheckSymbolExists)
22
check_symbol_exists(SYS_faccessat2 "sys/syscall.h" HAVE_SYS_FACCESSAT2)
33
if(NOT HAVE_SYS_FACCESSAT2)
4+
message(VERBOSE "unistd.faccessat excluded from build, faccessat2 syscall is not available on the system")
45
list(APPEND TARGET_LLVMLIBC_REMOVED_ENTRYPOINTS
56
libc.src.unistd.faccessat
67
)

libc/config/linux/x86_64/exclude.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ endif()
2323
include(CheckSymbolExists)
2424
check_symbol_exists(SYS_faccessat2 "sys/syscall.h" HAVE_SYS_FACCESSAT2)
2525
if(NOT HAVE_SYS_FACCESSAT2)
26+
message(VERBOSE "unistd.faccessat excluded from build, faccessat2 syscall is not available on the system")
2627
list(APPEND TARGET_LLVMLIBC_REMOVED_ENTRYPOINTS
2728
libc.src.unistd.faccessat
2829
)

0 commit comments

Comments
 (0)