diff src/share/tools/ProjectCreator/WinGammaPlatformVC10.java @ 2477:3449f5e02cc4

Merge
author coleenp
date Tue, 12 Apr 2011 14:18:53 -0700
parents c49c3947b98a
children 344264424174 2f27ed2a98fa
line wrap: on
line diff
--- a/src/share/tools/ProjectCreator/WinGammaPlatformVC10.java	Sat Apr 09 21:16:12 2011 -0700
+++ b/src/share/tools/ProjectCreator/WinGammaPlatformVC10.java	Tue Apr 12 14:18:53 2011 -0700
@@ -497,6 +497,9 @@
             addAttr(rv, "TargetMachine", "MachineX64");
         }
 
+        // We always want the /DEBUG option to get full symbol information in the pdb files
+        addAttr(rv, "GenerateDebugInformation", "true");
+
         return rv;
     }
 
@@ -504,8 +507,7 @@
     Vector getDebugLinkerFlags() {
         Vector rv = new Vector();
 
-        // /DEBUG option
-        addAttr(rv, "GenerateDebugInformation", "true");
+        // Empty now that /DEBUG option is used by all configs
 
         return rv;
     }