aboutsummaryrefslogtreecommitdiff
path: root/src/share/tools
diff options
context:
space:
mode:
authorcoleenp <none@none>2011-04-12 14:18:53 -0700
committercoleenp <none@none>2011-04-12 14:18:53 -0700
commit7953a624dee3a6d15b2fc2a76d53cb619523d594 (patch)
treed721e0560e8bdb35008c220c8f4cc5e7cc676f91 /src/share/tools
parent9cb19d1fc1d745726c71906c73eda0f03a25e1c8 (diff)
parentd2abd1db4ae31eed07a304dd3118545d819e37f1 (diff)
downloadjdk8u_hotspot-7953a624dee3a6d15b2fc2a76d53cb619523d594.tar.gz
Merge
Diffstat (limited to 'src/share/tools')
-rw-r--r--src/share/tools/ProjectCreator/WinGammaPlatformVC10.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/share/tools/ProjectCreator/WinGammaPlatformVC10.java b/src/share/tools/ProjectCreator/WinGammaPlatformVC10.java
index 4096beac8..21c951d92 100644
--- a/src/share/tools/ProjectCreator/WinGammaPlatformVC10.java
+++ b/src/share/tools/ProjectCreator/WinGammaPlatformVC10.java
@@ -497,6 +497,9 @@ class CompilerInterfaceVC10 extends CompilerInterface {
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 @@ class CompilerInterfaceVC10 extends CompilerInterface {
Vector getDebugLinkerFlags() {
Vector rv = new Vector();
- // /DEBUG option
- addAttr(rv, "GenerateDebugInformation", "true");
+ // Empty now that /DEBUG option is used by all configs
return rv;
}