Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
edcb25ab
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看板
提交
edcb25ab
编写于
7月 09, 2010
作者:
K
ksrini
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6930056: (launcher) Need to remove or build as part of test these liblibrary.so files
Reviewed-by: ohair, darcy
上级
efa64dfd
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
0 addition
and
75 deletion
+0
-75
test/tools/launcher/Makefile.SolarisRunpath
test/tools/launcher/Makefile.SolarisRunpath
+0
-75
test/tools/launcher/lib/i386/lib32/lib32/liblibrary.so
test/tools/launcher/lib/i386/lib32/lib32/liblibrary.so
+0
-0
test/tools/launcher/lib/i386/lib32/liblibrary.so
test/tools/launcher/lib/i386/lib32/liblibrary.so
+0
-0
test/tools/launcher/lib/sparc/lib32/lib32/liblibrary.so
test/tools/launcher/lib/sparc/lib32/lib32/liblibrary.so
+0
-0
test/tools/launcher/lib/sparc/lib32/liblibrary.so
test/tools/launcher/lib/sparc/lib32/liblibrary.so
+0
-0
test/tools/launcher/lib/sparc/lib64/lib64/liblibrary.so
test/tools/launcher/lib/sparc/lib64/lib64/liblibrary.so
+0
-0
test/tools/launcher/lib/sparc/lib64/liblibrary.so
test/tools/launcher/lib/sparc/lib64/liblibrary.so
+0
-0
未找到文件。
test/tools/launcher/Makefile.SolarisRunpath
已删除
100644 → 0
浏览文件 @
efa64dfd
# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# This is a not quite automated Makefile to generate the Solaris
# binaries used for the SolarisRunpath.sh test. First,
# libraryCaller.java program must be compiled. Next, javah is called
# on the class file to generate the needed header file for the jni
# code. Then, 2 Solaris executables are generated in separate
# directories, a default one meant to be pointed to by LD_LIBRARY_PATH
# (this function returns 0) and another one for the data model
# specific LD_LIBRARY_PATH (this function returns the size of integers
# in the data model, 32 or 64). A better makefile would run, say
# isainfo -v, and generated binaries for all supported data models.
# To do this a mapping would be needed from data models to
# architecture dependent compiler options; e.g. 64 bit on sparc =>
# -xarch=v9. Also, the settings for JINCLUDE, JAVAC, and JAVAH should
# come from the current build. The C compiler should be the one
# approved for the build. To be extra safe, the binaries should be
# generated on the oldest Solaris release supported by the current
# Java build.
# Include directory in JRE or JDK install; e.g.
JINCLUDE
=
/java/re/jdk/1.4.1/latest/binaries/solaris-sparc/include
# Path to javac executable; e.g.
JAVAC
=
/java/re/jdk/1.4.1/promoted/fcs/b21/binaries/solaris-sparc/bin/javac
# Path to javah executable; e.g.
JAVAH
=
/java/re/jdk/1.4.1/promoted/fcs/b21/binaries/solaris-sparc/bin/javah
# Path to C compiler; e.g.
CC
=
/java/devtools/sparc/SUNWspro/SC6.1/bin/cc
ARCH
=
`
uname
-p
`
# 32-bit Solaris Options
DM
=
32
# Default architecture is fine for both sparc and x86 32-bit builds
OPTIONS
=
# 64-bit Solaris Options
#DM=64
#OPTIONS=-xarch=v9
all
:
libraryCaller.java libraryCaller.c
$(JAVAC)
libraryCaller.java
;
\
$(JAVAH)
libraryCaller
;
\
$(CC)
-G
-I
$(JINCLUDE)
-I
$(JINCLUDE)
/solaris
-DRETURN_VALUE
=
0
\
$(OPTIONS)
libraryCaller.c
\
-o
lib/
$(ARCH)
/lib
$(DM)
/liblibrary.so
;
\
$(CC)
-G
-I
$(JINCLUDE)
-I
$(JINCLUDE)
/solaris
-DRETURN_VALUE
=
$(DM)
\
$(OPTIONS)
libraryCaller.c
\
-o
lib/
$(ARCH)
/lib
$(DM)
/lib
$(DM)
/liblibrary.so
;
test/tools/launcher/lib/i386/lib32/lib32/liblibrary.so
已删除
100644 → 0
浏览文件 @
efa64dfd
文件已删除
test/tools/launcher/lib/i386/lib32/liblibrary.so
已删除
100644 → 0
浏览文件 @
efa64dfd
文件已删除
test/tools/launcher/lib/sparc/lib32/lib32/liblibrary.so
已删除
100644 → 0
浏览文件 @
efa64dfd
文件已删除
test/tools/launcher/lib/sparc/lib32/liblibrary.so
已删除
100644 → 0
浏览文件 @
efa64dfd
文件已删除
test/tools/launcher/lib/sparc/lib64/lib64/liblibrary.so
已删除
100644 → 0
浏览文件 @
efa64dfd
文件已删除
test/tools/launcher/lib/sparc/lib64/liblibrary.so
已删除
100644 → 0
浏览文件 @
efa64dfd
文件已删除
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录