Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-SMF
Commits
7a8cd02a
Commit
7a8cd02a
authored
Feb 04, 2021
by
Mohammed Ismail
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correction to adapt the dockerfile on u18 and rhel8
Signed-off-by:
Mohammed Ismail
<
mohammed.ismail@eurecom.fr
>
parent
5cbcd596
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
12 deletions
+33
-12
build/scripts/build_helper.smf
build/scripts/build_helper.smf
+33
-12
No files found.
build/scripts/build_helper.smf
View file @
7a8cd02a
...
@@ -219,18 +219,39 @@ install_nghttp2_from_git() {
...
@@ -219,18 +219,39 @@ install_nghttp2_from_git() {
if [[ $prompt =~ [yY](es)* ]]
if [[ $prompt =~ [yY](es)* ]]
then
then
$SUDO $INSTALLER install $OPTION \
if [[ $OS_DISTRO == "ubuntu" ]]; then
gcc-c++ \
PACKAGE_LIST="\
binutils-devel \
g++ \
autoconf \
cmake \
automake \
binutils \
libtool \
autoconf \
pkg-config \
automake \
zlib-devel \
autotools-dev \
CUnit-devel \
libtool \
openssl-devel \
pkg-config \
libxml2-devel libev-devel libevent-devel jansson-devel c-ares-devel \
zlib1g-dev \
jemalloc-devel systemd-devel python3-Cython python3-devel python3-setuptools
libcunit1-dev \
libssl-dev \
libxml2-dev libev-dev libevent-dev libjansson-dev libc-ares-dev \
libjemalloc-dev libsystemd-dev cython python3-dev python-setuptools"
elif [[ "$OS_BASEDISTRO" == "fedora" ]]; then
PACKAGE_LIST="\
gcc-c++ \
binutils-devel \
autoconf \
automake \
libtool \
pkg-config \
zlib-devel \
CUnit-devel \
openssl-devel \
libxml2-devel libev-devel libevent-devel jansson-devel c-ares-devel \
jemalloc-devel systemd-devel python3-Cython python3-devel python3-setuptools"
else
echo_fatal "$OS_DISTRO is not a supported distribution."
fi
echo "Install build tools"
$SUDO $INSTALLER install $OPTION $PACKAGE_LIST
ret=$?;[[ $ret -ne 0 ]] && return $ret
ret=$?;[[ $ret -ne 0 ]] && return $ret
GIT_URL=https://github.com/nghttp2/nghttp2.git
GIT_URL=https://github.com/nghttp2/nghttp2.git
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment