Commit 62fb14dc authored by Chad Austin's avatar Chad Austin Committed by Facebook GitHub Bot

fix windows builds

Summary:
The new boost has an MSVC detection algorithm that 1) I don't
understand and 2) does not even seem deterministic. Since our internal
builds are pinned to vc142, force that in the manifest.

Reviewed By: fanzeyi

Differential Revision: D34085081

fbshipit-source-id: d8ce4d8e28aad14f6fa60f9227dafb546ce321e5
parent 3a360d04
......@@ -486,6 +486,14 @@ if __name__ == "__main__":
self.defines = defines or {}
if extra_cmake_defines:
self.defines.update(extra_cmake_defines)
try:
from .facebook.vcvarsall import extra_vc_cmake_defines
except ImportError:
pass
else:
self.defines.update(extra_vc_cmake_defines)
self.loader = loader
if build_opts.shared_libs:
self.defines["BUILD_SHARED_LIBS"] = "ON"
......
......@@ -103,3 +103,6 @@ pch=off
[b2.args.os=darwin]
toolset=clang
[b2.args.all(os=windows,fb=on)]
toolset=msvc-14.2
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment