zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 33889e1974137a54d1a88b87f57462de2a7cc145 (tree)
parent 590880158a03fa97056b30a3379aab5328ccc977
Author: J.C. Moyer <jcmoyer32@gmail.com>
Date:   Tue, 28 Sep 2021 08:26:33 -0400

mingw-w64: add missing file frexp.c to mingwex.lib

Fixes a frexp() segfault on Windows.

Diffstat:
Msrc/mingw.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/mingw.zig b/src/mingw.zig @@ -702,6 +702,7 @@ const mingwex_generic_src = [_][]const u8{ "math" ++ path.sep_str ++ "fpclassify.c", "math" ++ path.sep_str ++ "fpclassifyf.c", "math" ++ path.sep_str ++ "fpclassifyl.c", + "math" ++ path.sep_str ++ "frexp.c", "math" ++ path.sep_str ++ "frexpf.c", "math" ++ path.sep_str ++ "frexpl.c", "math" ++ path.sep_str ++ "hypot.c",