Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
06a16079
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看板
提交
06a16079
编写于
3月 18, 2011
作者:
L
lana
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
618567c9
d672a43f
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
26 addition
and
5 deletion
+26
-5
.hgtags
.hgtags
+1
-0
make/common/Demo.gmk
make/common/Demo.gmk
+17
-3
make/common/shared/Compiler-msvc.gmk
make/common/shared/Compiler-msvc.gmk
+3
-0
make/common/shared/Platform.gmk
make/common/shared/Platform.gmk
+1
-1
make/mkdemo/jfc/SwingSet2/Makefile
make/mkdemo/jfc/SwingSet2/Makefile
+1
-0
make/mkdemo/jpda/Makefile
make/mkdemo/jpda/Makefile
+2
-0
make/tools/manifest.mf
make/tools/manifest.mf
+1
-1
未找到文件。
.hgtags
浏览文件 @
06a16079
...
...
@@ -108,3 +108,4 @@ bdc069d3f9101f89ec3f81c2950ee2d68fa846d3 jdk7-b130
8ac52c85f9e91336dc00b52ef90b42eecf3230b3 jdk7-b131
6bbc7a4734952ae7604578f270e1566639fa8752 jdk7-b132
5e5f68a01d12a4432172f384d5201f3a05254493 jdk7-b133
554adcfb615e63e62af530b1c10fcf7813a75b26 jdk7-b134
make/common/Demo.gmk
浏览文件 @
06a16079
...
...
@@ -118,8 +118,11 @@ DEMO_ALL_NATIVE_SOURCES += $(filter %.h,$(DEMO_ALL_FILES))
DEMO_ALL_NATIVE_SOURCES += $(filter %.hpp,$(DEMO_ALL_FILES))
# If we have java sources, then define the jar file we will create
ifndef DEMO_JAR_NAME
DEMO_JAR_NAME = $(DEMONAME).jar
endif
ifneq ($(strip $(DEMO_JAVA_SOURCES)),)
DEMO_JAR = $(DEMO_DESTDIR)/$(DEMO
NAME).jar
DEMO_JAR = $(DEMO_DESTDIR)/$(DEMO
_JAR_NAME)
endif
# If we have native sources, define the native library we will create
...
...
@@ -252,6 +255,17 @@ $(DEMO_JAR): \
$(MKDIR) -p $(DEMO_JAR_IMAGE)
$(JAVAC_CMD) -d $(DEMO_JAR_IMAGE) -sourcepath $(DEMO_BUILD_SRCDIR) \
@$(DEMO_JAVAC_INPUT)
ifeq ($(DEMO_INCL_SRC),true)
$(CP) $(DEMO_JAVA_SOURCES:%=$(DEMO_BUILD_SRCDIR)/%) $(DEMO_JAR_IMAGE)
endif
ifeq ($(DEMO_ONLY_SRC),true)
$(RM) -r $(DEMO_JAR_IMAGE)
$(MKDIR) -p $(DEMO_JAR_IMAGE)
$(CP) -r $(DEMO_BUILD_SRCDIR)/* $(DEMO_JAR_IMAGE)
ifneq ($(DEMO_TOPFILES),)
$(CP) $(DEMO_ROOT)/$(DEMO_TOPFILES) $(DEMO_JAR_IMAGE)
endif
endif
$(BOOT_JAR_CMD) -cfm $@ $(DEMO_MANIFEST) \
-C $(DEMO_JAR_IMAGE) . \
$(BOOT_JAR_JFLAGS)
...
...
@@ -324,9 +338,9 @@ bundles: $(DEMO_BUILD_SRCZIP)
ifdef DEMO_IS_APPLET
@$(ECHO) "Expanding jar file into demos area at $(DEMO_DESTDIR)"
( $(CD) $(DEMO_DESTDIR) && \
$(BOOT_JAR_CMD) -xfv $(DEMO
NAME).jar
\
$(BOOT_JAR_CMD) -xfv $(DEMO
_JAR_NAME)
\
$(BOOT_JAR_JFLAGS) && \
$(RM) -r META-INF $(DEMO
NAME).jar
&& \
$(RM) -r META-INF $(DEMO
_JAR_NAME)
&& \
$(java-vm-cleanup) )
@( $(CD) $(DEMO_DESTDIR) && $(java-vm-cleanup) )
@$(ECHO) "Expanding source into demos area at $(DEMO_DESTDIR)"
...
...
make/common/shared/Compiler-msvc.gmk
浏览文件 @
06a16079
...
...
@@ -153,6 +153,9 @@ ifeq ($(PLATFORM), windows)
ifndef COMPILER_VERSION
COMPILER_VERSION := $(error COMPILER_VERSION cannot be empty here)
endif
ifneq ($(COMPILER_VERSION),VS2010)
COMPILER_VERSION := $(error COMPILER_VERSION must be VS2010)
endif
# Shared library generation flag
SHARED_LIBRARY_FLAG = -LD
...
...
make/common/shared/Platform.gmk
浏览文件 @
06a16079
...
...
@@ -148,7 +148,7 @@ ifeq ($(SYSTEM_UNAME), SunOS)
# Suffix for file bundles used in previous release
BUNDLE_FILE_SUFFIX=.tar
# How much RAM does this machine have:
MB_OF_MEMORY=$(shell /
etc
/prtconf | fgrep 'Memory size:' | expand | cut -d' ' -f3)
MB_OF_MEMORY=$(shell /
usr/sbin
/prtconf | fgrep 'Memory size:' | expand | cut -d' ' -f3)
endif
# Platform settings specific to Linux
...
...
make/mkdemo/jfc/SwingSet2/Makefile
浏览文件 @
06a16079
...
...
@@ -37,6 +37,7 @@ DEMO_TOPFILES = ./README.txt
DEMO_MAINCLASS
=
$(DEMONAME)
DEMO_MANIFEST_ATTR
=
SplashScreen-Image: resources/images/splash.png
DEMO_DESTDIR
=
$(DEMODIR)
/jfc/
$(DEMONAME)
DEMO_INCL_SRC
=
true
#
# Demo jar building rules.
...
...
make/mkdemo/jpda/Makefile
浏览文件 @
06a16079
...
...
@@ -32,6 +32,8 @@ DEMO_ROOT = $(SHARE_SRC)/classes
DEMO_PKGDIR
=
com/sun/tools/example
DEMO_TOPFILES
=
./com/sun/tools/example/README
DEMO_DESTDIR
=
$(DEMODIR)
/jpda
DEMO_JAR_NAME
=
examples.jar
DEMO_ONLY_SRC
=
true
#
# Demo jar building rules.
...
...
make/tools/manifest.mf
浏览文件 @
06a16079
Manifest-Version: 1.0
Specification-Title: Java Platform API Specification
Specification-Version: 1.
6
Specification-Version: 1.
7
Specification-Vendor: Oracle
Implementation-Title: Java Runtime Environment
Implementation-Version: @@RELEASE@@
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录