Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
c8e9f801
Commit
c8e9f801
authored
Jun 17, 2006
by
Måns Rullgård
Browse files
improved logging tests
Originally committed as revision 5491 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
407ddb4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
configure
configure
+11
-1
No files found.
configure
View file @
c8e9f801
...
...
@@ -101,7 +101,14 @@ log(){
echo
"
$@
"
>>
$logfile
}
logfile
(){
log BEGIN
$1
cat
-n
$1
>>
$logfile
log END
$1
}
die
(){
log
"
$@
"
echo
"
$@
"
rm
-f
$TMPC
$TMPO
$TMPE
$TMPS
$TMPH
exit
1
...
...
@@ -168,6 +175,7 @@ add_extralibs(){
check_cc
(){
log check_cc
"
$@
"
cat
>
$TMPC
logfile
$TMPC
log
$cc
$CFLAGS
"
$@
"
-c
-o
$TMPO
$TMPC
$cc
$CFLAGS
"
$@
"
-c
-o
$TMPO
$TMPC
>>
$logfile
2>&1
}
...
...
@@ -175,6 +183,7 @@ check_cc(){
check_cpp
(){
log check_cpp
"
$@
"
cat
>
$TMPC
logfile
$TMPC
log
$cc
$CFLAGS
"
$@
"
-E
-o
$TMPO
$TMPC
$cc
$CFLAGS
"
$@
"
-E
-o
$TMPO
$TMPC
>>
$logfile
2>&1
}
...
...
@@ -182,8 +191,9 @@ check_cpp(){
check_ld
(){
log check_ld
"
$@
"
cat
>
$TMPC
logfile
$TMPC
log
$cc
$CFLAGS
$LDFLAGS
"
$@
"
-o
$TMPE
$TMPC
$extralibs
$cc
$CFLAGS
$LDFLAGS
"
$@
"
-o
$TMPE
$TMPC
$extralibs
>>
/dev/null
2>&1
$cc
$CFLAGS
$LDFLAGS
"
$@
"
-o
$TMPE
$TMPC
$extralibs
>>
$logfile
2>&1
}
check_cflags
(){
...
...
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