Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8
提交
721e3d61
D
dragonwell8
项目概览
openanolis
/
dragonwell8
通知
5
Star
3
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
721e3d61
编写于
3月 18, 2015
作者:
L
lana
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
41174a02
549d3f51
变更
7
展开全部
隐藏空白更改
内联
并排
Showing
7 changed file
with
1751 addition
and
1655 deletion
+1751
-1655
common/autoconf/build-aux/autoconf-config.sub
common/autoconf/build-aux/autoconf-config.sub
+1684
-0
common/autoconf/build-aux/config.sub
common/autoconf/build-aux/config.sub
+34
-1654
common/autoconf/configure
common/autoconf/configure
+4
-0
common/autoconf/configure.ac
common/autoconf/configure.ac
+2
-0
common/autoconf/generated-configure.sh
common/autoconf/generated-configure.sh
+18
-1
common/autoconf/jdk-options.m4
common/autoconf/jdk-options.m4
+3
-0
common/autoconf/platform.m4
common/autoconf/platform.m4
+6
-0
未找到文件。
common/autoconf/build-aux/autoconf-config.sub
0 → 100644
浏览文件 @
721e3d61
此差异已折叠。
点击以展开。
common/autoconf/build-aux/config.sub
浏览文件 @
721e3d61
此差异已折叠。
点击以展开。
common/autoconf/configure
浏览文件 @
721e3d61
...
...
@@ -28,6 +28,10 @@ if test "x$BASH_VERSION" = x; then
exit
1
fi
# Force autoconf to use bash. This also means we must disable autoconf re-exec.
export
CONFIG_SHELL
=
$BASH
export
_as_can_reexec
=
no
CONFIGURE_COMMAND_LINE
=
"
$@
"
conf_script_dir
=
`
dirname
$0
`
...
...
common/autoconf/configure.ac
浏览文件 @
721e3d61
...
...
@@ -53,6 +53,7 @@ m4_include([toolchain_windows.m4])
AC_DEFUN_ONCE([CUSTOM_EARLY_HOOK])
AC_DEFUN_ONCE([CUSTOM_LATE_HOOK])
AC_DEFUN_ONCE([CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK])
# This line needs to be here, verbatim, after all includes and the dummy hook
# definitions. It is replaced with custom functionality when building
...
...
@@ -237,6 +238,7 @@ CONFIG_STATUS="$OUTPUT_ROOT/config.status"
# Create the actual output files. Now the main work of configure is done.
AC_OUTPUT
CUSTOM_CONFIG_OUTPUT_GENERATED_HOOK
# Try to move the config.log file to the output directory.
if test -e ./config.log; then
...
...
common/autoconf/generated-configure.sh
浏览文件 @
721e3d61
...
...
@@ -3871,13 +3871,14 @@ fi
# This line needs to be here, verbatim, after all includes and the dummy hook
# definitions. It is replaced with custom functionality when building
# custom sources.
#CUSTOM_AUTOCONF_INCLUDE
# Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=142
5379745
DATE_WHEN_GENERATED=142
6098039
###############################################################################
#
...
...
@@ -6827,6 +6828,12 @@ test -n "$target_alias" &&
VAR_CPU_BITS=32
VAR_CPU_ENDIAN=little
;;
aarch64)
VAR_CPU=aarch64
VAR_CPU_ARCH=aarch64
VAR_CPU_BITS=64
VAR_CPU_ENDIAN=little
;;
powerpc)
VAR_CPU=ppc
VAR_CPU_ARCH=ppc
...
...
@@ -6958,6 +6965,12 @@ $as_echo "$OPENJDK_BUILD_OS-$OPENJDK_BUILD_CPU" >&6; }
VAR_CPU_BITS=32
VAR_CPU_ENDIAN=little
;;
aarch64)
VAR_CPU=aarch64
VAR_CPU_ARCH=aarch64
VAR_CPU_BITS=64
VAR_CPU_ENDIAN=little
;;
powerpc)
VAR_CPU=ppc
VAR_CPU_ARCH=ppc
...
...
@@ -7972,6 +7985,9 @@ $as_echo "$with_jvm_variants" >&6; }
if test "x$VAR_CPU" = xppc64 ; then
INCLUDE_SA=false
fi
if test "x$OPENJDK_TARGET_CPU" = xaarch64; then
INCLUDE_SA=false
fi
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
...
...
@@ -37467,6 +37483,7 @@ $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
fi
# Try to move the config.log file to the output directory.
if test -e ./config.log; then
$MV -f ./config.log "$OUTPUT_ROOT/config.log" 2> /dev/null
common/autoconf/jdk-options.m4
浏览文件 @
721e3d61
...
...
@@ -161,6 +161,9 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_JVM_VARIANTS],
if test "x$VAR_CPU" = xppc64 ; then
INCLUDE_SA=false
fi
if test "x$OPENJDK_TARGET_CPU" = xaarch64; then
INCLUDE_SA=false
fi
AC_SUBST(INCLUDE_SA)
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
...
...
common/autoconf/platform.m4
浏览文件 @
721e3d61
...
...
@@ -48,6 +48,12 @@ AC_DEFUN([PLATFORM_EXTRACT_VARS_FROM_CPU],
VAR_CPU_BITS=32
VAR_CPU_ENDIAN=little
;;
aarch64)
VAR_CPU=aarch64
VAR_CPU_ARCH=aarch64
VAR_CPU_BITS=64
VAR_CPU_ENDIAN=little
;;
powerpc)
VAR_CPU=ppc
VAR_CPU_ARCH=ppc
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录