未验证 提交 c7c8c1e0 编写于 作者: K Kevin Heifner 提交者: GitHub

Merge pull request #3665 from pacificcode/eosio_build_ubuntu

Build Ubuntu: moved opt/boost_1_67_0 to opt/boost
......@@ -161,7 +161,7 @@
C_COMPILER=clang-4.0
MONGOD_CONF=${HOME}/opt/mongodb/mongod.conf
export PATH=${HOME}/opt/mongodb/bin:$PATH
export BOOST_ROOT="${HOME}/opt/boost_1_67_0"
export BOOST_ROOT="${HOME}/opt/boost"
;;
"Fedora")
FILE="${PWD}/scripts/eosio_build_fedora.sh"
......@@ -177,7 +177,7 @@
C_COMPILER=clang-4.0
MONGOD_CONF=${HOME}/opt/mongodb/mongod.conf
export PATH=${HOME}/opt/mongodb/bin:$PATH
export BOOST_ROOT="${HOME}/opt/boost_1_67_0"
export BOOST_ROOT="${HOME}/opt/boost"
;;
"Ubuntu")
FILE="${PWD}/scripts/eosio_build_ubuntu.sh"
......@@ -185,7 +185,7 @@
C_COMPILER=clang-4.0
MONGOD_CONF=${HOME}/opt/mongodb/mongod.conf
export PATH=${HOME}/opt/mongodb/bin:$PATH
export BOOST_ROOT="${HOME}/opt/boost_1_67_0"
export BOOST_ROOT="${HOME}/opt/boost"
;;
*)
printf "\\n\\tUnsupported Linux Distribution. Exiting now.\\n\\n"
......
......@@ -214,7 +214,7 @@
if [ -d "${HOME}/opt/boost_1_67_0" ]; then
if ! mv "${HOME}/opt/boost_1_67_0" "$BOOST_ROOT"
then
printf "\\n\\tUnable to move directory ${HOME}/opt/boost_1_67_0 to ${BOOST_ROOT}.\\n"
printf "\\n\\tUnable to move directory %s/opt/boost_1_67_0 to %s.\\n" "${HOME}" "${BOOST_ROOT}"
printf "\\n\\tExiting now.\\n"
exit 1
fi
......@@ -299,7 +299,7 @@
fi
printf "\\tBoost successfully installed @ %s.\\n" "${BOOST_ROOT}"
else
printf "\\tBoost 1.67.0 found at %s.\\n" "${BOOST_ROOT}"
printf "\\tBoost found at %s.\\n" "${BOOST_ROOT}"
fi
printf "\\n\\tChecking MongoDB installation.\\n"
......
......@@ -106,6 +106,23 @@
printf "\\n\\tNo required dpkg dependencies to install.\\n"
fi
if [ -d "${HOME}/opt/boost_1_67_0" ]; then
if ! mv "${HOME}/opt/boost_1_67_0" "$BOOST_ROOT"
then
printf "\\n\\tUnable to move directory %s/opt/boost_1_67_0 to %s.\\n" "${HOME}" "${BOOST_ROOT}"
printf "\\n\\tExiting now.\\n"
exit 1
fi
if [ -d "$BUILD_DIR" ]; then
if ! rm -rf "$BUILD_DIR"
then
printf "\\tUnable to remove directory %s. Please remove this directory and run this script %s again. 0\\n" "$BUILD_DIR" "${BASH_SOURCE[0]}"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
fi
fi
printf "\\n\\tChecking boost library installation.\\n"
BVERSION=$( grep BOOST_LIB_VERSION "${BOOST_ROOT}/include/boost/version.hpp" 2>/dev/null \
| tail -1 | tr -s ' ' | cut -d\ -f3 | sed 's/[^0-9\._]//gI')
......@@ -174,9 +191,9 @@
exit 1;
fi
fi
printf "\\tBoost 1.67.0 successfully installed @ %s/opt/boost_1_67_0.\\n" "${HOME}"
printf "\\tBoost successfully installed @ %s.\\n" "${BOOST_ROOT}"
else
printf "\\tBoost 1.67.0 found at %s/opt/boost_1_67_0.\\n\\n" "${HOME}"
printf "\\tBoost found at %s.\\n" "${BOOST_ROOT}"
fi
printf "\\n\\tChecking MongoDB installation.\\n"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册