From 3647784d05ad6535875435c3268abe2316aa4f79 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 22 Jan 2021 23:34:53 -0700 Subject: [PATCH] stage2: add missing frexpl.c to mingw c source file list --- src/mingw.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mingw.zig b/src/mingw.zig index 0a7669f995..ca887dd940 100644 --- a/src/mingw.zig +++ b/src/mingw.zig @@ -707,6 +707,7 @@ const mingwex_generic_src = [_][]const u8{ "math" ++ path.sep_str ++ "fpclassifyf.c", "math" ++ path.sep_str ++ "fpclassifyl.c", "math" ++ path.sep_str ++ "frexpf.c", + "math" ++ path.sep_str ++ "frexpl.c", "math" ++ path.sep_str ++ "hypot.c", "math" ++ path.sep_str ++ "hypotf.c", "math" ++ path.sep_str ++ "hypotl.c",