[libc-commits] [libc] 27114e4 - [libc][NFC] disable localtime on aarch64/baremetal (#156776)
via libc-commits
libc-commits at lists.llvm.org
Wed Sep 3 16:53:16 PDT 2025
Author: Michael Jones
Date: 2025-09-03T16:53:12-07:00
New Revision: 27114e4f302cb8724eec758077a430dd7fb300ef
URL: https://github.com/llvm/llvm-project/commit/27114e4f302cb8724eec758077a430dd7fb300ef
DIFF: https://github.com/llvm/llvm-project/commit/27114e4f302cb8724eec758077a430dd7fb300ef.diff
LOG: [libc][NFC] disable localtime on aarch64/baremetal (#156776)
The fuchsia builder was broken by
https://github.com/llvm/llvm-project/pull/110363
This patch disables localtime for aarch64 baremetal, which is the
failing target.
Context: https://lab.llvm.org/buildbot/#/builders/11/builds/23186
Added:
Modified:
libc/config/baremetal/aarch64/entrypoints.txt
Removed:
################################################################################
diff --git a/libc/config/baremetal/aarch64/entrypoints.txt b/libc/config/baremetal/aarch64/entrypoints.txt
index 04bf636863d75..cacecf08042e0 100644
--- a/libc/config/baremetal/aarch64/entrypoints.txt
+++ b/libc/config/baremetal/aarch64/entrypoints.txt
@@ -269,8 +269,9 @@ set(TARGET_LIBC_ENTRYPOINTS
libc.src.time.
diff time
libc.src.time.gmtime
libc.src.time.gmtime_r
- libc.src.time.localtime
- libc.src.time.localtime_r
+ # TODO: Re-enable these when tests aren't broken.
+ # libc.src.time.localtime
+ # libc.src.time.localtime_r
libc.src.time.mktime
libc.src.time.strftime
libc.src.time.strftime_l
More information about the libc-commits
mailing list