mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
breakgen for 64-bit
This commit is contained in:
@@ -39,7 +39,12 @@ public class AppMain {
|
||||
final String osName = System.getProperty("os.name").toLowerCase();
|
||||
String libPath = null;
|
||||
if (osName.startsWith("windows")) {
|
||||
libPath = binPath + "breakgen.dll";
|
||||
if (System.getProperty("os.arch").equals("amd64")) {
|
||||
libPath = binPath + "breakgen64.dll";
|
||||
}
|
||||
else {
|
||||
libPath = binPath + "breakgen.dll";
|
||||
}
|
||||
} else if (osName.startsWith("linux")) {
|
||||
if (System.getProperty("os.name").toLowerCase().equals("amd64")) {
|
||||
libPath = binPath + "libbreakgen64.so";
|
||||
|
||||
Reference in New Issue
Block a user