You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I discovered this when trying to build develutionx with mingw. cmake was telling me it failed on fmt's big object check. I made this locally and it no longer showed a failure for this compiler option.
The text was updated successfully, but these errors were encountered:
in the CMakeLists.txt file, the MINGW check shows this:
check_cxx_compiler_flag("Wa,-mbig-obj" FMT_HAS_MBIG_OBJ)
shouldn't the compiler flag string start with a dash?
check_cxx_compiler_flag("-Wa,-mbig-obj" FMT_HAS_MBIG_OBJ)
I discovered this when trying to build develutionx with mingw. cmake was telling me it failed on fmt's big object check. I made this locally and it no longer showed a failure for this compiler option.
The text was updated successfully, but these errors were encountered: