Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
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
Michael Black
OpenXG-RAN
Commits
20242b75
Commit
20242b75
authored
Feb 17, 2023
by
Jaroslava Fiedlerova
Committed by
Robert Schmidt
Feb 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add repo for ubuntu 18 to install cmake >= 3.12
parent
43d8ee58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
cmake_targets/tools/build_helper
cmake_targets/tools/build_helper
+10
-0
No files found.
cmake_targets/tools/build_helper
View file @
20242b75
...
@@ -523,7 +523,16 @@ check_install_soapy () {
...
@@ -523,7 +523,16 @@ check_install_soapy () {
install_soapy_from_source
install_soapy_from_source
#fi
#fi
install_soapy_iris_from_source
install_soapy_iris_from_source
}
# for ubuntu 18 we need a special repository (https://apt.kitware.com/) to install cmake >= 3.12
add_cmake_repo () {
$SUDO $INSTALLER -y install wget
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | $SUDO tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null
echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ bionic main' | $SUDO tee /etc/apt/sources.list.d/kitware.list >/dev/null
$SUDO $INSTALLER -y update
$SUDO rm /usr/share/keyrings/kitware-archive-keyring.gpg
$SUDO $INSTALLER -y install kitware-archive-keyring
}
}
check_install_additional_tools (){
check_install_additional_tools (){
...
@@ -578,6 +587,7 @@ check_install_oai_software() {
...
@@ -578,6 +587,7 @@ check_install_oai_software() {
$SUDO apt install -y software-properties-common
$SUDO apt install -y software-properties-common
case "$(get_distribution_release)" in
case "$(get_distribution_release)" in
"ubuntu18.04")
"ubuntu18.04")
add_cmake_repo
specific_packages="libgcrypt11-dev guile-2.0-dev"
specific_packages="libgcrypt11-dev guile-2.0-dev"
;;
;;
"ubuntu20.04")
"ubuntu20.04")
...
...
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