From 4c5ad9452b171acb15e8b8a2277cceb1c363db47 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 29 Jan 2016 19:08:55 -0600 Subject: Issue #25934: Default to /fp:strict for ICC builds --- PCbuild/pyproject.props | 3 +++ PCbuild/python.props | 16 +++++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index 25cdfcc..f32b1bf 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -50,6 +50,9 @@ false MultiThreadedDebugDLL + + Strict + $(OutDir);%(AdditionalLibraryDirectories) true diff --git a/PCbuild/python.props b/PCbuild/python.props index 862f041..4d8f603 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -7,12 +7,18 @@ Use the latest available version of Visual Studio to build. To override this and build with an earlier version, pass "/p:PlatformToolset=v100" (for example) when building. + + We set BasePlatformToolset for ICC's benefit, it's otherwise ignored. --> - v140 - v120 - v110 - v100 - + v140 + v120 + v110 + v100 + + $(BasePlatformToolset) + false + true +