Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
etersoft-build-utils
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
korinf
etersoft-build-utils
Commits
6b6e0cd7
Commit
6b6e0cd7
authored
Jul 13, 2009
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: add check for will always overflow destination buffer in the log
parent
4b1151e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
build
share/eterbuild/functions/build
+9
-4
No files found.
share/eterbuild/functions/build
View file @
6b6e0cd7
...
...
@@ -175,12 +175,17 @@ check_log()
echo
"-------------------------------------------------------"
echog
"Check log for..."
LOGFILE
=
$1
grep
'ld: warning: libstdc++\.so\.5, needed by [^ ]\+, may conflict with libstdc++\.so\.6'
$LOGFILE
RES
=
$?
if
[
$RES
=
0
]
;
then
echog
"Error: libstdc++.so.5/6 conflicts"
if
grep
-q
'ld: warning: libstdc++\.so\.5, needed by [^ ]\+, may conflict with libstdc++\.so\.6'
$LOGFILE
;
then
echog
"Error found: libstdc++.so.5/6 conflicts. Check the log."
return
1
fi
if
grep
-q
'will always overflow destination buffer'
$LOGFILE
;
then
echog
"Error found: will always overflow destination buffer. Check the log."
return
1
fi
grep
'python-strict'
$LOGFILE
&&
warning
"python-strict used!!!"
NC1
=
"command not found"
NC2
=
"-march=athlon -mtune=athlon-xp"
...
...
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