Skip to content

Commit

Permalink
Do not use static boost runtime (facebook#792)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#792

As title. This seems no longer supported. The binary still looks mostly-static (just regular MS dlls).

Reviewed By: wsanville

Differential Revision: D46959547

fbshipit-source-id: d240d1dd227632d33746ed0d8133877cf7837d79
  • Loading branch information
agampe authored and facebook-github-bot committed Jun 23, 2023
1 parent 2247e77 commit df508a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake_modules/Commons.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ macro(add_dependent_packages_for_redex)

if(ENABLE_STATIC)
set(Boost_USE_STATIC_LIBS ON)
if(NOT APPLE)
if((NOT APPLE) AND (NOT MINGW))
set(Boost_USE_STATIC_RUNTIME ON)
endif()
set(Boost_USE_MULTITHREADED ON)
Expand Down

0 comments on commit df508a7

Please sign in to comment.