You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by ju...@apache.org on 2015/10/21 21:41:47 UTC

incubator-reef git commit: [REEF-859]:Debug c++ builds should target retail CRT.

Repository: incubator-reef
Updated Branches:
  refs/heads/master 59fc35c7a -> f9f0e63b3


[REEF-859]:Debug c++ builds should target retail CRT.

This addressed the issue by changing the build file to target
retail CRT even for debug builds

JIRA: [REEF-859](https://issues.apache.org/jira/browse/REEF-859)

This closes #581


Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/f9f0e63b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/f9f0e63b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/f9f0e63b

Branch: refs/heads/master
Commit: f9f0e63b3bfce9ad03ebc86f780fea81f16b7e7d
Parents: 59fc35c
Author: Beysim Sezgin <be...@hotmail.com>
Authored: Tue Oct 20 13:41:50 2015 -0700
Committer: Julia Wang <ju...@microsoft.com>
Committed: Wed Oct 21 12:39:09 2015 -0700

----------------------------------------------------------------------
 lang/cs/Org.Apache.REEF.Bridge/Org.Apache.REEF.Bridge.vcxproj | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/f9f0e63b/lang/cs/Org.Apache.REEF.Bridge/Org.Apache.REEF.Bridge.vcxproj
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.Bridge/Org.Apache.REEF.Bridge.vcxproj b/lang/cs/Org.Apache.REEF.Bridge/Org.Apache.REEF.Bridge.vcxproj
index 961fb1b..66871f8 100644
--- a/lang/cs/Org.Apache.REEF.Bridge/Org.Apache.REEF.Bridge.vcxproj
+++ b/lang/cs/Org.Apache.REEF.Bridge/Org.Apache.REEF.Bridge.vcxproj
@@ -48,7 +48,7 @@ under the License.
     <CLRSupport>true</CLRSupport>
     <CharacterSet>Unicode</CharacterSet>
   </PropertyGroup>
-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">    
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
     <UseDebugLibraries>false</UseDebugLibraries>
     <PlatformToolset>v120</PlatformToolset>
     <CLRSupport>true</CLRSupport>
@@ -82,6 +82,7 @@ under the License.
       <PreprocessorDefinitions>WIN32;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
       <PrecompiledHeader>NotUsing</PrecompiledHeader>
       <AdditionalIncludeDirectories>..\..\java\reef-bridge-java\target\classes;$(JAVA_HOME)\include;$(JAVA_HOME)\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
     </ClCompile>
     <Link>
       <GenerateDebugInformation>true</GenerateDebugInformation>