Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
eb7f035a
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看板
提交
eb7f035a
编写于
3月 25, 2010
作者:
D
dcubed
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
a0a91d47
43200d91
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
19 addition
and
4 deletion
+19
-4
make/windows/build.bat
make/windows/build.bat
+5
-2
make/windows/build.make
make/windows/build.make
+3
-0
make/windows/create.bat
make/windows/create.bat
+3
-0
make/windows/get_msc_ver.sh
make/windows/get_msc_ver.sh
+8
-2
未找到文件。
make/windows/build.bat
浏览文件 @
eb7f035a
...
...
@@ -28,6 +28,9 @@ REM
REM Since we don't have uname and we could be cross-compiling,
REM Use the compiler to determine which ARCH we are building
REM
REM Note: Running this batch file from the Windows command shell requires
REM that "grep" be accessible on the PATH. An MKS install does this.
REM
cl
2
>&
1
|
grep
"IA-64"
>
NUL
if
%errorlevel%
==
0
goto
isia64
cl
2
>&
1
|
grep
"AMD64"
>
NUL
...
...
@@ -109,7 +112,7 @@ echo workspace is source directory without trailing slash,
echo
bootstrap_dir
is
a
full
path
to
a
JDK
in
which
bin
/java
echo
and
bin
/javac
are
present
and
working
,
and
build_id
is
an
echo
optional
build
identifier
displayed
by
java
-version
exit
1
exit
/b
1
:end
exit
%errorlevel%
exit
/b
%errorlevel%
make/windows/build.make
浏览文件 @
eb7f035a
...
...
@@ -27,6 +27,9 @@
# environment variables (Variant, WorkSpace, BootStrapDir, BuildUser, HOTSPOT_BUILD_VERSION)
# are passed in as command line arguments.
# Note: Running nmake or build.bat from the Windows command shell requires
# that "sh" be accessible on the PATH. An MKS install does this.
# SA components are built if BUILD_WIN_SA=1 is specified.
# See notes in README. This produces files:
# 1. sa-jdi.jar - This is built before building jvm.dll
...
...
make/windows/create.bat
浏览文件 @
eb7f035a
...
...
@@ -36,6 +36,9 @@ REM
REM Since we don't have uname and we could be cross-compiling,
REM Use the compiler to determine which ARCH we are building
REM
REM Note: Running this batch file from the Windows command shell requires
REM that "grep" be accessible on the PATH. An MKS install does this.
REM
cl
2
>&
1
|
grep
"IA-64"
>
NUL
if
%errorlevel%
==
0
goto
isia64
cl
2
>&
1
|
grep
"AMD64"
>
NUL
...
...
make/windows/get_msc_ver.sh
浏览文件 @
eb7f035a
...
...
@@ -48,6 +48,7 @@ else
TOOL_DIR
=
`
dirname
"
$SH
"
`
fi
DIRNAME
=
"
$TOOL_DIR
/dirname"
HEAD
=
"
$TOOL_DIR
/head"
ECHO
=
"
$TOOL_DIR
/echo"
EXPR
=
"
$TOOL_DIR
/expr"
...
...
@@ -76,8 +77,13 @@ if [ "x$FORCE_LINK_VER" != "x" ]; then
else
# use the "link" command that is co-located with the "cl" command
cl_cmd
=
`
which cl
`
cl_dir
=
`
dirname
$cl_cmd
`
LINK_VER_RAW
=
`
$cl_dir
/link 2>&1 |
"
$HEAD
"
-n
1 |
"
$SED
"
's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'
`
if
[
"x
$cl_cmd
"
!=
"x"
]
;
then
link_cmd
=
`
$DIRNAME
"
$cl_cmd
"
`
/link
else
# which can't find "cl" so just use which ever "link" we find
link_cmd
=
"link"
fi
LINK_VER_RAW
=
`
"
$link_cmd
"
2>&1 |
"
$HEAD
"
-n
1 |
"
$SED
"
's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'
`
LINK_VER_MAJOR
=
`
"
$ECHO
"
$LINK_VER_RAW
|
"
$CUT
"
-d
'.'
-f1
`
LINK_VER_MINOR
=
`
"
$ECHO
"
$LINK_VER_RAW
|
"
$CUT
"
-d
'.'
-f2
`
LINK_VER_MICRO
=
`
"
$ECHO
"
$LINK_VER_RAW
|
"
$CUT
"
-d
'.'
-f3
`
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录