Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
f32e52c6
D
dragonwell8_hotspot
项目概览
openanolis
/
dragonwell8_hotspot
通知
2
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_hotspot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f32e52c6
编写于
8月 24, 2012
作者:
D
dcubed
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
9e00ee75
3cbf1ff8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
25 addition
and
13 deletion
+25
-13
src/os/posix/launcher/launcher.script
src/os/posix/launcher/launcher.script
+25
-13
未找到文件。
src/os/posix/launcher/launcher.script
浏览文件 @
f32e52c6
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
# inside Emacs".
# inside Emacs".
#
#
# If the first parameter is "-dbx", HotSpot will be launched inside dbx.
# If the first parameter is "-dbx", HotSpot will be launched inside dbx.
#
#
# If the first parameter is "-valgrind", HotSpot will be launched
# If the first parameter is "-valgrind", HotSpot will be launched
# inside Valgrind (http://valgrind.kde.org) using the Memcheck skin,
# inside Valgrind (http://valgrind.kde.org) using the Memcheck skin,
# and with memory leak detection enabled. This currently (2005jan19)
# and with memory leak detection enabled. This currently (2005jan19)
...
@@ -45,19 +45,19 @@
...
@@ -45,19 +45,19 @@
# This is the name of the gdb binary to use
# This is the name of the gdb binary to use
if
[
!
"
$GDB
"
]
if
[
!
"
$GDB
"
]
then
then
GDB
=
gdb
GDB
=
gdb
fi
fi
# This is the name of the gdb binary to use
# This is the name of the gdb binary to use
if
[
!
"
$DBX
"
]
if
[
!
"
$DBX
"
]
then
then
DBX
=
dbx
DBX
=
dbx
fi
fi
# This is the name of the Valgrind binary to use
# This is the name of the Valgrind binary to use
if
[
!
"
$VALGRIND
"
]
if
[
!
"
$VALGRIND
"
]
then
then
VALGRIND
=
valgrind
VALGRIND
=
valgrind
fi
fi
...
@@ -98,7 +98,7 @@ esac
...
@@ -98,7 +98,7 @@ esac
JDK
=
JDK
=
if
[
"
${
ALT_JAVA_HOME
}
"
=
""
]
;
then
if
[
"
${
ALT_JAVA_HOME
}
"
=
""
]
;
then
.
${
MYDIR
}
/jdkpath.sh
.
${
MYDIR
}
/jdkpath.sh
else
else
JDK
=
${
ALT_JAVA_HOME
%%/jre
}
;
JDK
=
${
ALT_JAVA_HOME
%%/jre
}
;
fi
fi
...
@@ -114,22 +114,34 @@ fi
...
@@ -114,22 +114,34 @@ fi
# any.
# any.
JRE
=
$JDK
/jre
JRE
=
$JDK
/jre
JAVA_HOME
=
$JDK
JAVA_HOME
=
$JDK
ARCH
=
@@LIBARCH@@
export
JAVA_HOME
ARCH
=
@@LIBARCH@@
SBP
=
${
MYDIR
}
:
${
JRE
}
/lib/
${
ARCH
}
SBP
=
${
MYDIR
}
:
${
JRE
}
/lib/
${
ARCH
}
# Set up a suitable LD_LIBRARY_PATH
if
[
-z
"
$LD_LIBRARY_PATH
"
]
# Set up a suitable LD_LIBRARY_PATH or DYLD_LIBRARY_PATH
OS
=
`
uname
-s
`
if
[
"
${
OS
}
"
=
"Darwin"
]
then
then
LD_LIBRARY_PATH
=
"
$SBP
"
if
[
-z
"
$DYLD_LIBRARY_PATH
"
]
then
DYLD_LIBRARY_PATH
=
"
$SBP
"
else
DYLD_LIBRARY_PATH
=
"
$SBP
:
$DYLD_LIBRARY_PATH
"
fi
export
DYLD_LIBRARY_PATH
else
else
LD_LIBRARY_PATH
=
"
$SBP
:
$LD_LIBRARY_PATH
"
# not 'Darwin'
if
[
-z
"
$LD_LIBRARY_PATH
"
]
then
LD_LIBRARY_PATH
=
"
$SBP
"
else
LD_LIBRARY_PATH
=
"
$SBP
:
$LD_LIBRARY_PATH
"
fi
export
LD_LIBRARY_PATH
fi
fi
export
LD_LIBRARY_PATH
export
JAVA_HOME
JPARMS
=
"
$@
$JAVA_ARGS
"
;
JPARMS
=
"
$@
$JAVA_ARGS
"
;
# Locate the gamma development launcher
# Locate the gamma development launcher
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录