mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
8027480: Build Windows x64 fastdebug builds using /homeparams
Windows x64 fastdebug builds now uses the /homeparams compiler flag Reviewed-by: dcubed, zgu, lfoltan
This commit is contained in:
parent
655556a4bf
commit
6f75087c92
5 changed files with 12 additions and 5 deletions
|
@ -357,7 +357,7 @@ class CompilerInterfaceVC10 extends CompilerInterface {
|
|||
}
|
||||
|
||||
@Override
|
||||
Vector getDebugCompilerFlags(String opt) {
|
||||
Vector getDebugCompilerFlags(String opt, String platformName) {
|
||||
Vector rv = new Vector();
|
||||
|
||||
// Set /On option
|
||||
|
@ -369,6 +369,10 @@ class CompilerInterfaceVC10 extends CompilerInterface {
|
|||
addAttr(rv, "RuntimeLibrary", "MultiThreadedDLL");
|
||||
// Set /Oy- option
|
||||
addAttr(rv, "OmitFramePointers", "false");
|
||||
// Set /homeparams for x64 debug builds
|
||||
if(platformName.equals("x64")) {
|
||||
addAttr(rv, "AdditionalOptions", "/homeparams");
|
||||
}
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue