HDFS-6979. hdfs.dll not produce .pdb files. Contributed by Chris Nauroth.

Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2cd5b4f2
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2cd5b4f2
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2cd5b4f2

Branch: refs/heads/HDFS-6581
Commit: 2cd5b4f20dd0435066bf66281613ca2d9920282a
Parents: 54767d3
Author: cnauroth <cnaur...@apache.org>
Authored: Fri Sep 5 11:03:58 2014 -0700
Committer: Jing Zhao <ji...@apache.org>
Committed: Fri Sep 5 13:50:42 2014 -0700

----------------------------------------------------------------------
 hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 2 ++
 hadoop-hdfs-project/hadoop-hdfs/pom.xml     | 6 +++---
 2 files changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/2cd5b4f2/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt 
b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
index 615e9a7..8a553aa 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
+++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
@@ -628,6 +628,8 @@ Release 2.6.0 - UNRELEASED
     HDFS-6831. Inconsistency between 'hdfs dfsadmin' and 'hdfs dfsadmin -help'.
     (Xiaoyu Yao via Arpit Agarwal)
 
+    HDFS-6979. hdfs.dll not produce .pdb files. (cnauroth)
+
     BREAKDOWN OF HDFS-6134 AND HADOOP-10150 SUBTASKS AND RELATED JIRAS
   
       HDFS-6387. HDFS CLI admin tool for creating & deleting an

http://git-wip-us.apache.org/repos/asf/hadoop/blob/2cd5b4f2/hadoop-hdfs-project/hadoop-hdfs/pom.xml
----------------------------------------------------------------------
diff --git a/hadoop-hdfs-project/hadoop-hdfs/pom.xml 
b/hadoop-hdfs-project/hadoop-hdfs/pom.xml
index 2c4ddf6..ecdd1ae 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/pom.xml
+++ b/hadoop-hdfs-project/hadoop-hdfs/pom.xml
@@ -415,11 +415,11 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd";>
                     </exec>
                     <exec executable="msbuild" 
dir="${project.build.directory}/native"
                         failonerror="true">
-                      <arg line="ALL_BUILD.vcxproj /nologo 
/p:Configuration=Release"/>
+                      <arg line="ALL_BUILD.vcxproj /nologo 
/p:Configuration=RelWithDebInfo /p:LinkIncremental=false"/>
                     </exec>
                     <!-- Copy for inclusion in distribution. -->
                     <copy todir="${project.build.directory}/bin">
-                      <fileset 
dir="${project.build.directory}/native/target/bin/Release"/>
+                      <fileset 
dir="${project.build.directory}/native/target/bin/RelWithDebInfo"/>
                     </copy>
                   </target>
                 </configuration>
@@ -437,7 +437,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd";>
                       <attribute name="test"/>
                       <sequential>
                         <echo message="Running @{test}"/>
-                        <exec 
executable="${project.build.directory}/native/Release/@{test}" 
failonerror="true" dir="${project.build.directory}/native/">
+                        <exec 
executable="${project.build.directory}/native/RelWithDebInfo/@{test}" 
failonerror="true" dir="${project.build.directory}/native/">
                           <env key="CLASSPATH" 
value="${test_classpath}:${compile_classpath}"/>
                           <!-- HADOOP_HOME required to find winutils. -->
                           <env key="HADOOP_HOME" 
value="${hadoop.common.build.dir}"/>

Reply via email to