Skip to content

Commit

Permalink
Fix /bigobj option on Windows (it is case sensitive).
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Jun 24, 2021
1 parent 3ba5f8d commit c8fa5ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion options_win.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
if (build_win64)
target_compile_options(common_options
INTERFACE
/BIGOBJ # scheme.cpp has too many sections.
/bigobj # scheme.cpp has too many sections.
)
else()
target_link_options(common_options
Expand Down

0 comments on commit c8fa5ef

Please sign in to comment.