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
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
zhangtu
openairinterface5G
Commits
9624232f
Commit
9624232f
authored
8 years ago
by
FredericLeroy
Browse files
Options
Downloads
Patches
Plain Diff
build_helper: show "compilation failed" error message
parent
a3d26040
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
+3
-0
3 additions, 0 deletions
cmake_targets/tools/build_helper
with
3 additions
and
0 deletions
cmake_targets/tools/build_helper
+
3
−
0
View file @
9624232f
...
@@ -148,6 +148,7 @@ clean_all_files() {
...
@@ -148,6 +148,7 @@ clean_all_files() {
compilations() {
compilations() {
cd $OPENAIR_DIR/cmake_targets/$1/build
cd $OPENAIR_DIR/cmake_targets/$1/build
echo_info "Log file for compilation written in: $dlog/$2.$REL.txt"
echo_info "Log file for compilation written in: $dlog/$2.$REL.txt"
set +e
{
{
rm -f $3
rm -f $3
if [ "$VERBOSE_COMPILE" == "1" ]; then
if [ "$VERBOSE_COMPILE" == "1" ]; then
...
@@ -157,12 +158,14 @@ compilations() {
...
@@ -157,12 +158,14 @@ compilations() {
fi
fi
} > $dlog/$2.$REL.txt 2>&1
} > $dlog/$2.$REL.txt 2>&1
set -e
echo_info "Log file for compilation has been written to: $dlog/$2.$REL.txt"
echo_info "Log file for compilation has been written to: $dlog/$2.$REL.txt"
if [ -s $3 ] ; then
if [ -s $3 ] ; then
cp $3 $4
cp $3 $4
echo_success "$2 compiled"
echo_success "$2 compiled"
else
else
echo_error "$2 compilation failed"
echo_error "$2 compilation failed"
exit 1
fi
fi
}
}
...
...
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