Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
6e9949dd
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看板
提交
6e9949dd
编写于
6月 29, 2010
作者:
P
prr
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6964882: 32 bit JDK does not build on 64 bit Windows platforms
Reviewed-by: ohair, valeriep
上级
6ff8da37
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
55 addition
and
42 deletion
+55
-42
make/windows/makefiles/defs.make
make/windows/makefiles/defs.make
+55
-42
未找到文件。
make/windows/makefiles/defs.make
浏览文件 @
6e9949dd
...
...
@@ -32,7 +32,7 @@ SLASH_JAVA ?= J:
PATH_SEP
=
;
# Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name
if
neq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) x86),
)
if
eq
($(ARCH_DATA_MODEL),32
)
ARCH_DATA_MODEL
=
32
PLATFORM
=
windows-i586
VM_PLATFORM
=
windows_i486
...
...
@@ -43,55 +43,68 @@ ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) x86),)
MAKE_ARGS
+=
Platform_arch_model
=
x86_32
endif
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) ia64),)
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-ia64
VM_PLATFORM
=
windows_ia64
HS_ARCH
=
ia64
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
ia64
MAKE_ARGS
+=
BUILDARCH
=
ia64
MAKE_ARGS
+=
Platform_arch
=
ia64
MAKE_ARGS
+=
Platform_arch_model
=
ia64
endif
# http://support.microsoft.com/kb/888731 : this can be either
# AMD64 for AMD, or EM64T for Intel chips.
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) AMD64),)
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-amd64
VM_PLATFORM
=
windows_amd64
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) x86),)
ARCH_DATA_MODEL
=
32
PLATFORM
=
windows-i586
VM_PLATFORM
=
windows_i486
HS_ARCH
=
x86
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
x86
MAKE_ARGS
+=
BUILDARCH
=
amd64
MAKE_ARGS
+=
BUILDARCH
=
i486
MAKE_ARGS
+=
Platform_arch
=
x86
MAKE_ARGS
+=
Platform_arch_model
=
x86_
64
MAKE_ARGS
+=
Platform_arch_model
=
x86_
32
endif
ifneq
($(ARCH_DATA_MODEL),32)
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) ia64),)
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-ia64
VM_PLATFORM
=
windows_ia64
HS_ARCH
=
ia64
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
ia64
MAKE_ARGS
+=
BUILDARCH
=
ia64
MAKE_ARGS
+=
Platform_arch
=
ia64
MAKE_ARGS
+=
Platform_arch_model
=
ia64
endif
# http://support.microsoft.com/kb/888731 : this can be either
# AMD64 for AMD, or EM64T for Intel chips.
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) AMD64),)
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-amd64
VM_PLATFORM
=
windows_amd64
HS_ARCH
=
x86
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
x86
MAKE_ARGS
+=
BUILDARCH
=
amd64
MAKE_ARGS
+=
Platform_arch
=
x86
MAKE_ARGS
+=
Platform_arch_model
=
x86_64
endif
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) EM64T),)
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-amd64
VM_PLATFORM
=
windows_amd64
HS_ARCH
=
x86
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
x86
MAKE_ARGS
+=
BUILDARCH
=
amd64
MAKE_ARGS
+=
Platform_arch
=
x86
MAKE_ARGS
+=
Platform_arch_model
=
x86_64
endif
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-amd64
VM_PLATFORM
=
windows_amd64
HS_ARCH
=
x86
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
x86
MAKE_ARGS
+=
BUILDARCH
=
amd64
MAKE_ARGS
+=
Platform_arch
=
x86
MAKE_ARGS
+=
Platform_arch_model
=
x86_64
endif
# NB later OS versions than 2003 may report "Intel64"
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) Intel64),)
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-amd64
VM_PLATFORM
=
windows_amd64
HS_ARCH
=
x86
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
x86
MAKE_ARGS
+=
BUILDARCH
=
amd64
MAKE_ARGS
+=
Platform_arch
=
x86
MAKE_ARGS
+=
Platform_arch_model
=
x86_64
ifneq
($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) Intel64),)
ARCH_DATA_MODEL
=
64
PLATFORM
=
windows-amd64
VM_PLATFORM
=
windows_amd64
HS_ARCH
=
x86
MAKE_ARGS
+=
LP64
=
1
MAKE_ARGS
+=
ARCH
=
x86
MAKE_ARGS
+=
BUILDARCH
=
amd64
MAKE_ARGS
+=
Platform_arch
=
x86
MAKE_ARGS
+=
Platform_arch_model
=
x86_64
endif
endif
JDK_INCLUDE_SUBDIR
=
win32
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录