From 9a4708cb7192eec20926722ad7487a7549c7b00a Mon Sep 17 00:00:00 2001 From: trompetin17 Date: Tue, 3 Jun 2025 06:28:54 -0500 Subject: [PATCH] Remove ignore LNK4098 --- build/premake/premake5.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/build/premake/premake5.lua b/build/premake/premake5.lua index e3aa6d8109..6f9cbe8c90 100644 --- a/build/premake/premake5.lua +++ b/build/premake/premake5.lua @@ -443,13 +443,6 @@ function project_create(project_name, target_type) linkoptions "/ignore:4221" filter {} - if arch == "amd64" then - filter { "Debug", "action:vs*" } - -- FIXME: disable LNK4098, some of the prebuilt libs for 64bit debug build have non matching options. - linkoptions "/ignore:4098" - filter {} - end - project_set_target(project_name) project_set_build_flags() end