Skip to content

Commit 6533451

Browse files
author
Siva Chandra Reddy
committed
[libc] Disable fma and fmaf for x86_64.
The version of clang installed on the buildbot workers is not able to compile them. However, the version of gcc installed is able to compile them fine. So, this change disables them until we can find a way to compile them using clang on the buildbot workers.
1 parent 5e9e463 commit 6533451

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

libc/config/linux/x86_64/entrypoints.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,12 @@ set(TARGET_LIBM_ENTRYPOINTS
7777
libc.src.math.floor
7878
libc.src.math.floorf
7979
libc.src.math.floorl
80-
libc.src.math.fma
81-
libc.src.math.fmaf
80+
# Temporarily disable fma as the clang version
81+
# on the bots cannot compile them. Note however
82+
# that the version of gcc on the bots is able to
83+
# compile them.
84+
# libc.src.math.fma
85+
# libc.src.math.fmaf
8286
libc.src.math.fmin
8387
libc.src.math.fminf
8488
libc.src.math.fminl

0 commit comments

Comments
 (0)