Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2014-11-05 17:11:35 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
760c37ae8244551dccaf114c14dec69f560acf62
760c37ae
2 parents
f3c7e354
55bd1dd9
Merge branch 'srs.master'
显示空白字符变更
内嵌
并排对比
正在显示
8 个修改的文件
包含
0 行增加
和
45 行删除
trunk/research/st/common.h
trunk/research/st/io.c
trunk/research/st/md.S
trunk/research/st/osguess.sh
trunk/research/st/public.h
trunk/research/st/sched.c
trunk/research/st/stk.c
trunk/research/st/sync.c
trunk/research/st/common.h
查看文件 @
760c37a
trunk/research/st/io.c
查看文件 @
760c37a
trunk/research/st/md.S
查看文件 @
760c37a
trunk/research/st/osguess.sh
已删除
100755 → 0
查看文件 @
f3c7e35
#
# This script can be used to automatically guess target OS.
# It requires the config.guess utility which is a part of GNU Autoconf.
# GNU Autoconf can be downloaded from ftp://ftp.gnu.org/gnu/autoconf/
#
# Use "default" as a make target for automatic builds.
#
# Specify path to the config.guess utility (unless set via environment)
#CONFIG_GUESS_PATH=
if
[
x
"
$CONFIG_GUESS_PATH
"
=
x
]
;
then
echo
"Error: CONFIG_GUESS_PATH variable is not set"
exit
1
fi
if
[
! -f
"
$CONFIG_GUESS_PATH
/config.guess"
]
;
then
echo
"Can't find
$CONFIG_GUESS_PATH
/config.guess utility. Wrong path?"
exit
1
fi
sys_info
=
`
/bin/sh
$CONFIG_GUESS_PATH
/config.guess
`
echo
"Building for
$sys_info
"
case
"
$sys_info
"
in
*
-ibm-aix4
*
)
OS
=
AIX
;;
*
-freebsd
*
)
OS
=
FREEBSD
;;
hppa
*
-hp-hpux11
*
)
OS
=
HPUX
;;
*
-sgi-irix6
*
)
OS
=
IRIX
;;
*
-linux
*
)
OS
=
LINUX
;;
*
-netbsd
*
)
OS
=
NETBSD
;;
*
-openbsd
*
)
OS
=
OPENBSD
;;
*
-dec-osf
*
)
OS
=
OSF1
;;
*
-solaris2
*
)
OS
=
SOLARIS
;;
*
-darwin
*
)
OS
=
DARWIN
;;
*
)
OS
=
echo
"Sorry, unsupported OS"
exit
1
;;
esac
echo
"Making with OS=
$OS
"
trunk/research/st/public.h
查看文件 @
760c37a
trunk/research/st/sched.c
查看文件 @
760c37a
trunk/research/st/stk.c
查看文件 @
760c37a
trunk/research/st/sync.c
查看文件 @
760c37a
请
注册
或
登录
后发表评论