From a7aecbfcaa0e1586da9cf8175bd8d1c4383acd8c Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 23 Jan 2022 09:44:53 -0800 Subject: [PATCH] Remove an old mingw workaround --- CMakeLists.txt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 20ffaf81..44195abd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -248,13 +248,6 @@ if (HAVE_STRTOD_L) target_compile_definitions(fmt PUBLIC FMT_LOCALE) endif () -if (MINGW) - check_cxx_compiler_flag("-Wa,-mbig-obj" FMT_HAS_MBIG_OBJ) - if (${FMT_HAS_MBIG_OBJ}) - target_compile_options(fmt PRIVATE "-Wa,-mbig-obj") - endif() -endif () - if (FMT_WERROR) target_compile_options(fmt PRIVATE ${WERROR_FLAG}) endif ()