[libc][obvious] disable fabsf128 on aarch64 (#78511)

It's not working on the buildbot, so I've disabled it until we fix it.
This commit is contained in:
michaelrj-google 2024-01-17 14:22:50 -08:00 committed by GitHub
parent 58b77b8581
commit 47d5967023
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -357,7 +357,8 @@ set(TARGET_LIBM_ENTRYPOINTS
if(LIBC_COMPILER_HAS_FLOAT128)
list(APPEND TARGET_LIBM_ENTRYPOINTS
# math.h C23 _Float128 entrypoints
libc.src.math.fabsf128
# Temporarily disabled since float128 isn't working on the aarch64 buildbot
# libc.src.math.fabsf128
)
endif()