Commit 4dc66e8a authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Merge branch 'quectel' of https://gitlab.eurecom.fr/oai/cn5g/oai-cn5g-amf into quectel

parents e1e33d43 5d0fea32
......@@ -285,7 +285,7 @@ check_install_amf_deps(){
automake \
bison \
build-essential \
cmake \
$CMAKE \
daemon \
doxygen \
flex \
......
......@@ -49,6 +49,7 @@ install_fb_folly_from_source(){
then
if [[ "$OS_BASEDISTRO" == "fedora" ]]; then
$SUDO $INSTALLER install $OPTION \
$CMAKE \
boost-devel \
libevent-devel \
double-conversion-devel \
......@@ -63,6 +64,7 @@ install_fb_folly_from_source(){
ret=$?;[[ $ret -ne 0 ]] && return $ret
elif [[ $OS_DISTRO == "ubuntu" ]]; then
$SUDO $INSTALLER install $OPTION \
$CMAKE \
g++ \
libevent-dev \
libdouble-conversion-dev \
......@@ -126,11 +128,7 @@ install_fb_folly_from_source(){
git checkout -f v2019.11.11.00
fi
mkdir _build && cd _build
if [[ "$OS_BASEDISTRO" == "fedora" ]]; then
cmake3 ..
else
cmake ..
fi
$CMAKE ..
ret=$?;[[ $ret -ne 0 ]] && popd && return $ret
make -j $(nproc)
ret=$?;[[ $ret -ne 0 ]] && popd && return $ret
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment