Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shweta Shrivastava
openairinterface5G
Commits
7f1bef9b
Commit
7f1bef9b
authored
8 years ago
by
Rohit Gupta
Browse files
Options
Downloads
Patches
Plain Diff
minor fix to Google Protobuf logging in installation
parent
045c9470
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake_targets/tools/build_helper
+11
-2
11 additions, 2 deletions
cmake_targets/tools/build_helper
with
11 additions
and
2 deletions
cmake_targets/tools/build_helper
+
11
−
2
View file @
7f1bef9b
...
@@ -164,6 +164,9 @@ compilations() {
...
@@ -164,6 +164,9 @@ compilations() {
############################################
############################################
install_protobuf_from_source(){
install_protobuf_from_source(){
protobuf_install_log=$OPENAIR_DIR/cmake_targets/log/protobuf_install_log.txt
echo_info "\nInstalling Google Protobuf from sources. The log file for Protobuf installation is here: $protobuf_install_log "
(
cd /tmp
cd /tmp
echo "Downloading protobuf"
echo "Downloading protobuf"
rm -rf /tmp/protobuf-2.6.1.tar.gz* /tmp/protobuf-2.6.1
rm -rf /tmp/protobuf-2.6.1.tar.gz* /tmp/protobuf-2.6.1
...
@@ -174,11 +177,14 @@ install_protobuf_from_source(){
...
@@ -174,11 +177,14 @@ install_protobuf_from_source(){
echo "Compiling protobuf"
echo "Compiling protobuf"
make -j`nproc`
make -j`nproc`
$SUDO make install
$SUDO make install
rm -rf /tmp/protobuf-2.6.1.tar.gz /tmp/protobuf-2.6.1
$SUDO ldconfig
$SUDO ldconfig
) >& $protobuf_install_log
}
}
install_protobuf_c_from_source(){
install_protobuf_c_from_source(){
protobuf_c_install_log=$OPENAIR_DIR/cmake_targets/log/protobuf_c_install_log.txt
echo_info "\nInstalling Google Protobuf_C from sources. The log file for Protobuf_C installation is here: $protobuf_c_install_log "
(
cd /tmp
cd /tmp
echo "Downloading protobuf-c"
echo "Downloading protobuf-c"
rm -rf /tmp/protobuf-c
rm -rf /tmp/protobuf-c
...
@@ -189,8 +195,8 @@ install_protobuf_c_from_source(){
...
@@ -189,8 +195,8 @@ install_protobuf_c_from_source(){
echo "Compiling protobuf-c"
echo "Compiling protobuf-c"
make -j`nproc`
make -j`nproc`
$SUDO make install
$SUDO make install
rm -rf /tmp/protobuf-c
$SUDO ldconfig
$SUDO ldconfig
) >& $protobuf_c_install_log
}
}
check_install_usrp_uhd_driver(){
check_install_usrp_uhd_driver(){
...
@@ -396,6 +402,7 @@ remove_nettle_from_source() {
...
@@ -396,6 +402,7 @@ remove_nettle_from_source() {
cd nettle-2.5/
cd nettle-2.5/
./configure --disable-openssl --enable-shared --prefix=/usr
./configure --disable-openssl --enable-shared --prefix=/usr
$SUDO make uninstall || true
$SUDO make uninstall || true
$SUDO ldconfig
) >& $nettle_uninstall_log
) >& $nettle_uninstall_log
}
}
...
@@ -419,6 +426,7 @@ remove_gnutls_from_source(){
...
@@ -419,6 +426,7 @@ remove_gnutls_from_source(){
cd gnutls-3.1.23/
cd gnutls-3.1.23/
./configure --prefix=/usr
./configure --prefix=/usr
$SUDO make uninstall || true
$SUDO make uninstall || true
$SUDO ldconfig
)>& $gnutls_uninstall_log
)>& $gnutls_uninstall_log
}
}
...
@@ -433,6 +441,7 @@ install_asn1c_from_source(){
...
@@ -433,6 +441,7 @@ install_asn1c_from_source(){
make -j`nproc`
make -j`nproc`
$SUDO make install
$SUDO make install
cd -
cd -
$SUDO ldconfig
) > $asn1_install_log 2>&1
) > $asn1_install_log 2>&1
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment