Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
78c3e205
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
9
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
78c3e205
编写于
10月 21, 2012
作者:
A
Andy Polyakov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
linux-pcc: make it more robust and recognize KERNEL_BITS variable.
上级
0c832ec5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
6 deletion
+20
-6
config
config
+13
-6
crypto/ppccap.c
crypto/ppccap.c
+7
-0
未找到文件。
config
浏览文件 @
78c3e205
...
@@ -587,13 +587,20 @@ case "$GUESSOS" in
...
@@ -587,13 +587,20 @@ case "$GUESSOS" in
fi
fi
;;
;;
ppc64-
*
-linux2
)
ppc64-
*
-linux2
)
echo
"WARNING! If you wish to build 64-bit library, then you have to"
if
[
-z
"
$KERNEL_BITS
"
]
;
then
echo
" invoke './Configure linux-ppc64' *manually*."
echo
"WARNING! If you wish to build 64-bit library, then you have to"
if
[
"
$TEST
"
=
"false"
-a
-t
1
]
;
then
echo
" invoke './Configure linux-ppc64' *manually*."
echo
" You have about 5 seconds to press Ctrl-C to abort."
if
[
"
$TEST
"
=
"false"
-a
-t
1
]
;
then
(
trap
"stty
`
stty
-g
`
"
2 0
;
stty
-icanon
min 0
time
50
;
read
waste
)
<&1
echo
" You have about 5 seconds to press Ctrl-C to abort."
(
trap
"stty
`
stty
-g
`
"
2 0
;
stty
-icanon
min 0
time
50
;
read
waste
)
<&1
fi
fi
if
[
"
$KERNEL_BITS
"
=
"64"
]
;
then
OUT
=
"linux-ppc64"
else
OUT
=
"linux-ppc"
(
echo
"__LP64__"
| gcc
-E
-x
c - 2>/dev/null |
grep
"^__LP64__"
2>&1
>
/dev/null
)
||
options
=
"
$options
-m32"
fi
fi
OUT
=
"linux-ppc"
;;
;;
ppc-
*
-linux2
)
OUT
=
"linux-ppc"
;;
ppc-
*
-linux2
)
OUT
=
"linux-ppc"
;;
mips64
*
-
*
-linux2
)
mips64
*
-
*
-linux2
)
...
...
crypto/ppccap.c
浏览文件 @
78c3e205
...
@@ -4,6 +4,9 @@
...
@@ -4,6 +4,9 @@
#include <setjmp.h>
#include <setjmp.h>
#include <signal.h>
#include <signal.h>
#include <unistd.h>
#include <unistd.h>
#ifdef __linux
#include <sys/utsname.h>
#endif
#include <crypto.h>
#include <crypto.h>
#include <openssl/bn.h>
#include <openssl/bn.h>
...
@@ -102,6 +105,10 @@ void OPENSSL_cpuid_setup(void)
...
@@ -102,6 +105,10 @@ void OPENSSL_cpuid_setup(void)
if
(
sizeof
(
size_t
)
==
4
)
if
(
sizeof
(
size_t
)
==
4
)
{
{
#ifdef __linux
struct
utsname
uts
;
if
(
uname
(
&
uts
)
==
0
&&
strcmp
(
uts
.
machine
,
"ppc64"
)
==
0
)
#endif
if
(
sigsetjmp
(
ill_jmp
,
1
)
==
0
)
if
(
sigsetjmp
(
ill_jmp
,
1
)
==
0
)
{
{
OPENSSL_ppc64_probe
();
OPENSSL_ppc64_probe
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录