Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
f923da55
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f923da55
编写于
2月 22, 2013
作者:
J
jlaskey
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
489096ab
273fd530
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
27 addition
and
12 deletion
+27
-12
THIRD_PARTY_README
THIRD_PARTY_README
+12
-12
make/launchers/Makefile
make/launchers/Makefile
+1
-0
makefiles/CompileLaunchers.gmk
makefiles/CompileLaunchers.gmk
+5
-0
makefiles/CreateJars.gmk
makefiles/CreateJars.gmk
+8
-0
test/tools/launcher/VersionCheck.java
test/tools/launcher/VersionCheck.java
+1
-0
未找到文件。
THIRD_PARTY_README
浏览文件 @
f923da55
...
...
@@ -6,7 +6,7 @@ Framework v4.0, which is included with JRE 8, and JDK 8.
--- begin of LICENSE ---
Copyright (c) 2000-2011 France T
élé
com
Copyright (c) 2000-2011 France T
ÈlÈco
m
All rights reserved.
Redistribution and use in source and binary forms, with or without
...
...
@@ -741,7 +741,7 @@ Linux and Solaris.
--- begin of LICENSE ---
Copyright © 2001,2003 Keith Packard
Copyright ¬¨¬
© 20
01,2003 Keith Packard
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that the
...
...
@@ -1955,16 +1955,16 @@ v1.9, which is included with JRE 7, JDK 7, and OpenJDK 7.
Unicode Terms of Use
For the general privacy policy governing access to this site, see the Unicode
Privacy Policy. For trademark usage, see the UnicodeÂ
®
Consortium Name and
Privacy Policy. For trademark usage, see the Unicode¬
Æ C
onsortium Name and
Trademark Usage Policy.
A. Unicode Copyright.
1. Copyright © 1991-2011 Unicode, Inc. All rights reserved.
1. Copyright ¬
©
1991-2011 Unicode, Inc. All rights reserved.
2. Certain documents and files on this website contain a legend indicating
that "Modification is permitted." Any person is hereby authorized,
without fee, to modify such documents and files to create derivative
works conforming to the UnicodeÂ
®
Standard, subject to Terms and
works conforming to the Unicode¬
Æ S
tandard, subject to Terms and
Conditions herein.
3. Any person is hereby authorized, without fee, to view, use, reproduce,
...
...
@@ -2030,14 +2030,14 @@ D. Waiver of Damages. In no event shall Unicode or its licensors be liable for
E.Trademarks & Logos.
1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode,
Inc. â
The Unicode Consortiumâ and âUnicode, Inc.â
are trade names of
Inc. ‚Ä
úThe Unicode Consortium‚Äù and ‚ÄúUnicode, Inc.‚Äù are trade names
of
Unicode, Inc. Use of the information and materials found on this
website indicates your acknowledgement of Unicode, Inc.â
s exclusive
website indicates your acknowledgement of Unicode, Inc.‚Ä
ôs ex
clusive
worldwide rights in the Unicode Word Mark, the Unicode Logo, and the
Unicode trade names.
2. The Unicode Consortium Name and Trademark Usage Policy (â
Trademark
Policyâ) are incorporated herein by reference and you agree to abide by
2. The Unicode Consortium Name and Trademark Usage Policy (‚Ä
úTrad
emark
Policy‚Ä
ù) ar
e incorporated herein by reference and you agree to abide by
the provisions of the Trademark Policy, which may be changed from time
to time in the sole discretion of Unicode, Inc.
...
...
@@ -2060,12 +2060,12 @@ Miscellaneous.
2. Modification by Unicode. Unicode shall have the right to modify this
Agreement at any time by posting it to this site. The user may not
assign any part of this Agreement without Unicodeâ
s prior written
assign any part of this Agreement without Unicode‚Ä
ôs pr
ior written
consent.
3. Taxes. The user agrees to pay any taxes arising from access to this
website or use of the information herein, except for those based on
Unicodeâ
s net income.
Unicode‚Ä
ôs ne
t income.
4. Severability. If any provision of this Agreement is declared invalid or
unenforceable, the remaining provisions of this Agreement shall remain
...
...
@@ -2094,7 +2094,7 @@ SOFTWARE.
COPYRIGHT AND PERMISSION NOTICE
Copyright © 1991-2011 Unicode, Inc. All rights reserved. Distributed under the
Copyright ¬
©
1991-2011 Unicode, Inc. All rights reserved. Distributed under the
Terms of Use in http://www.unicode.org/copyright.html.
Permission is hereby granted, free of charge, to any person obtaining a copy
...
...
make/launchers/Makefile
浏览文件 @
f923da55
...
...
@@ -77,6 +77,7 @@ $(call make-launcher, jmap, sun.tools.jmap.JMap, \
-J-Dsun.jvm.hotspot.debugger.useWindbgDebugger,
)
$(call
make-launcher,
jps,
sun.tools.jps.Jps,
,
)
$(call
make-launcher,
jrunscript,
com.sun.tools.script.shell.Main,
,
)
$(call
make-launcher,
jjs,
jdk.nashorn.tools.Shell,
,
)
$(call
make-launcher,
jsadebugd,
sun.jvm.hotspot.jdi.SADebugServer,
,
)
$(call
make-launcher,
jstack,
sun.tools.jstack.JStack,
\
-J-Dsun.jvm.hotspot.debugger.useProcDebugger
\
...
...
makefiles/CompileLaunchers.gmk
浏览文件 @
f923da55
...
...
@@ -311,6 +311,11 @@ $(eval $(call SetupLauncher,jps,\
$(eval $(call SetupLauncher,jrunscript,\
-DJAVA_ARGS='{ "-J-ms8m"$(COMMA) "com.sun.tools.script.shell.Main"$(COMMA) }'))
$(eval $(call SetupLauncher,jjs,\
-DJAVA_ARGS='{ "-J-XX:-TieredCompilation"$(COMMA) \
"-J-Xms2G"$(COMMA) "-J-Xmx2G"$(COMMA) \
"jdk.nashorn.tools.Shell"$(COMMA) }'))
$(eval $(call SetupLauncher,jsadebugd,\
-DJAVA_ARGS='{ "-J-ms8m"$(COMMA) "sun.jvm.hotspot.jdi.SADebugServer"$(COMMA) }' \
-DAPP_CLASSPATH='{ "/lib/tools.jar"$(COMMA) "/lib/sa-jdi.jar"$(COMMA) "/classes" }' \
...
...
makefiles/CreateJars.gmk
浏览文件 @
f923da55
...
...
@@ -1119,6 +1119,14 @@ endif
##########################################################################################
# Import nashorn.jar from nashorn dist dir.
$(IMAGES_OUTPUTDIR)/lib/ext/nashorn.jar: $(NASHORN_DIST)/nashorn.jar
$(install-file)
JARS += $(IMAGES_OUTPUTDIR)/lib/ext/nashorn.jar
##########################################################################################
-include $(CUSTOM_MAKE_DIR)/CreateJars.gmk
##########################################################################################
...
...
test/tools/launcher/VersionCheck.java
浏览文件 @
f923da55
...
...
@@ -74,6 +74,7 @@ public class VersionCheck extends TestHelper {
"jmap"
,
"jps"
,
"jrunscript"
,
"jjs"
,
"jsadebugd"
,
"jstack"
,
"jstat"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录