3 Star 1 Fork 0

Gitee 极速下载/stellar-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/stellar/stellar-core
克隆/下载
autogen.sh 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh -e
# Public domain
case "$0" in
*/*)
cd $(dirname $0)
;;
esac
case "$1" in
--skip-submodules|-s)
skip_submodules=yes
;;
"")
;;
*)
echo usage: $0 [--skip-submodules] >&2
exit 1
;;
esac
# NB: the DO_NOT_UPDATE_CONFIG_SCRIPTS variable is here to inform libsodium not
# to download a fresh config.sub and config.guess from git.savannah.gnu.org
# (which is sometimes offline).
#
# This variable was how you disable the update in libsodium up to version
# 1.0.18; but in master they have changed this, so on the next libsodium
# submodule bump we'll want to change the code here to the new interface
# (running `autogen.sh -b` in the libsodium directory)
case "${skip_submodules}" in
0|no|false|"")
git submodule update --init
git submodule foreach '
autogen=$(find . -name autogen.sh)
if [ -x "$autogen" ]; then
cd $(dirname "$autogen")
DO_NOT_UPDATE_CONFIG_SCRIPTS=1 ./autogen.sh
fi
'
;;
esac
./make-mks
autoreconf -i
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/stellar-core.git
git@gitee.com:mirrors/stellar-core.git
mirrors
stellar-core
stellar-core
master

搜索帮助