diff options
| author | Koki Ueha <jeamsblue@gmail.com> | 2025-06-01 11:25:51 +0000 |
|---|---|---|
| committer | Koki Ueha <jeamsblue@gmail.com> | 2025-06-01 11:25:51 +0000 |
| commit | 71ff3830df5bb175e94a73d5187cea93d87fa5bc (patch) | |
| tree | 1d9d81d28da51f17a3351ea70b06175f51dda0b2 /src/libs | |
| parent | 21d9e03758d40c690488abce12bb82e063ff15e9 (diff) | |
| download | zig-71ff3830df5bb175e94a73d5187cea93d87fa5bc.tar.gz zig-71ff3830df5bb175e94a73d5187cea93d87fa5bc.zip | |
libc: replace MinGW's trigonometric functions with compiler_rt's
- sinf
- cosf
- sincos
- sincosf
- tanf
Diffstat (limited to 'src/libs')
| -rw-r--r-- | src/libs/mingw.zig | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libs/mingw.zig b/src/libs/mingw.zig index 3b6404516a..8b5197a43b 100644 --- a/src/libs/mingw.zig +++ b/src/libs/mingw.zig @@ -916,7 +916,6 @@ const mingw32_x86_src = [_][]const u8{ "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "copysignl.S", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "cosl.c", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "cosl_internal.S", - "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "cossin.c", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "cossinl.c", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "exp2l.S", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "expl.c", @@ -965,11 +964,8 @@ const mingw32_x86_32_src = [_][]const u8{ "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "atan2f.c", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "atanf.c", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "ceilf.S", - "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "cosf.c", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "floorf.S", "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "fmodf.c", - "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "sinf.c", - "math" ++ path.sep_str ++ "x86" ++ path.sep_str ++ "tanf.c", }; const mingw32_arm_src = [_][]const u8{ @@ -983,7 +979,6 @@ const mingw32_arm32_src = [_][]const u8{ "math" ++ path.sep_str ++ "arm" ++ path.sep_str ++ "s_rint.c", "math" ++ path.sep_str ++ "arm" ++ path.sep_str ++ "s_rintf.c", "math" ++ path.sep_str ++ "arm" ++ path.sep_str ++ "sincos.S", - "math" ++ path.sep_str ++ "arm" ++ path.sep_str ++ "sincosf.S", }; const mingw32_arm64_src = [_][]const u8{ @@ -992,7 +987,6 @@ const mingw32_arm64_src = [_][]const u8{ "math" ++ path.sep_str ++ "arm64" ++ path.sep_str ++ "rint.c", "math" ++ path.sep_str ++ "arm64" ++ path.sep_str ++ "rintf.c", "math" ++ path.sep_str ++ "arm64" ++ path.sep_str ++ "sincos.S", - "math" ++ path.sep_str ++ "arm64" ++ path.sep_str ++ "sincosf.S", }; const mingw32_winpthreads_src = [_][]const u8{ |
