authorgravatar for jcmoyer32@gmail.comJ.C. Moyer <jcmoyer32@gmail.com> 2021-09-28 08:26:33-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-11-15 17:28:49-05:00
log33889e1974137a54d1a88b87f57462de2a7cc145
treea5cd3eb16dce25063a658deb1bc0cb28e4232460
parent590880158a03fa97056b30a3379aab5328ccc977

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

Fixes a frexp() segfault on Windows.

1 files changed, 1 insertions(+), 0 deletions(-)

src/mingw.zig+1
......@@ -702,6 +702,7 @@ const mingwex_generic_src = [_][]const u8{
702702 "math" ++ path.sep_str ++ "fpclassify.c",
703703 "math" ++ path.sep_str ++ "fpclassifyf.c",
704704 "math" ++ path.sep_str ++ "fpclassifyl.c",
705 "math" ++ path.sep_str ++ "frexp.c",
705706 "math" ++ path.sep_str ++ "frexpf.c",
706707 "math" ++ path.sep_str ++ "frexpl.c",
707708 "math" ++ path.sep_str ++ "hypot.c",