mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-12 11:28:35 +00:00
8067254: No debug symbols in JPRT Windows builds
Reviewed-by: tbell
This commit is contained in:
parent
bf6938cb8c
commit
b479361747
@ -227,10 +227,12 @@ public class ModuleArchive implements Archive {
|
||||
|
||||
private static String nativeDir(String filename) {
|
||||
if (System.getProperty("os.name").startsWith("Windows")) {
|
||||
if (filename.endsWith(".dll"))
|
||||
if (filename.endsWith(".dll") || filename.endsWith(".diz")
|
||||
|| filename.endsWith(".pdb") || filename.endsWith(".map")) {
|
||||
return "bin";
|
||||
else
|
||||
} else {
|
||||
return "lib";
|
||||
}
|
||||
} else {
|
||||
return "lib";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user