projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5200f1
)
Pass sysroot argument to gcc
author
Måns Rullgård
<mans@mansr.com>
Sat, 21 Feb 2009 21:07:37 +0000
(21:07 +0000)
committer
Måns Rullgård
<mans@mansr.com>
Sat, 21 Feb 2009 21:07:37 +0000
(21:07 +0000)
Originally committed as revision 17500 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index 780154455a431025695953f636555c17aaf3e24d..8de7aa4aad0d51751e4eb2d15fb76184f9f9f6d4 100755
(executable)
--- a/
configure
+++ b/
configure
@@
-1366,6
+1366,15
@@
fi
test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc"
+if test -n "$sysroot"; then
+ case "$cc_type" in
+ gcc)
+ add_cflags --sysroot="$sysroot"
+ add_ldflags --sysroot="$sysroot"
+ ;;
+ esac
+fi
+
# compiler sanity check
check_exec <<EOF
int main(void){ return 0; }