From d5bc343a0c7971b1657968a9303fd317a0d38c49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Fri, 21 Oct 2022 14:32:02 -0700 Subject: [PATCH] Disable fast-math for bimg_encode library. --- scripts/bimg_encode.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/bimg_encode.lua b/scripts/bimg_encode.lua index f888489..3559d54 100644 --- a/scripts/bimg_encode.lua +++ b/scripts/bimg_encode.lua @@ -6,6 +6,10 @@ project "bimg_encode" kind "StaticLib" + removeflags { + "FloatFast", -- astc-encoder doesn't work with it. + } + includedirs { path.join(BIMG_DIR, "include"), path.join(BIMG_DIR, "3rdparty"),