Skip to content

Commit b024fd2

Browse files
[libc] disable strfroml entrypoint on aarch64 (#101854)
Disable `strfroml` entrypoint on aarch64 to please clang-11 buildbots. Detailed in #101846. This is not a fix for #101846 so I will keep the issue open until our buildbot is updated or other mitigation is applied.
1 parent 899055f commit b024fd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/config/linux/aarch64/entrypoints.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ set(TARGET_LIBC_ENTRYPOINTS
189189
libc.src.stdlib.srand
190190
libc.src.stdlib.strfromd
191191
libc.src.stdlib.strfromf
192-
libc.src.stdlib.strfroml
192+
# TODO: long double support is buggy with clang-11. Re-enable when buildbots are upgraded.
193+
# libc.src.stdlib.strfroml
193194
libc.src.stdlib.strtod
194195
libc.src.stdlib.strtof
195196
libc.src.stdlib.strtol

0 commit comments

Comments
 (0)