[libc][NFC] Disable double precision cos, sin and tan on Windows.

The current x86_64 implementations do not build on the windows bot
machine. We will enable them back after fixing the problem.
This commit is contained in:
Siva Chandra Reddy 2021-08-17 16:42:34 +00:00
parent 339aa76526
commit 9a56d71f61
1 changed files with 3 additions and 3 deletions

View File

@ -60,13 +60,15 @@ set(TARGET_LIBM_ENTRYPOINTS
libc.src.fenv.feupdateenv
# math.h entrypoints
# TODO: Add double precision sin, cos and tan to this list.
# They are currently disabled because of a problem with the
# bot hardware.
libc.src.math.copysign
libc.src.math.copysignf
libc.src.math.copysignl
libc.src.math.ceil
libc.src.math.ceilf
libc.src.math.ceill
libc.src.math.cos
libc.src.math.cosf
libc.src.math.expf
libc.src.math.exp2f
@ -129,13 +131,11 @@ set(TARGET_LIBM_ENTRYPOINTS
libc.src.math.round
libc.src.math.roundf
libc.src.math.roundl
libc.src.math.sin
libc.src.math.sincosf
libc.src.math.sinf
libc.src.math.sqrt
libc.src.math.sqrtf
libc.src.math.sqrtl
libc.src.math.tan
libc.src.math.trunc
libc.src.math.truncf
libc.src.math.truncl