]> git.sesse.net Git - ffmpeg/commitdiff
configure: require --arch and --target-os when cross-compiling
authorMåns Rullgård <mans@mansr.com>
Thu, 11 Feb 2010 23:57:52 +0000 (23:57 +0000)
committerMåns Rullgård <mans@mansr.com>
Thu, 11 Feb 2010 23:57:52 +0000 (23:57 +0000)
Originally committed as revision 21766 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 203146f2ffd217c9da419b051fa59d9a24a24994..e85f6ee013011743fc6024f185b7d88054a2585c 100755 (executable)
--- a/configure
+++ b/configure
@@ -1427,12 +1427,12 @@ yasmexe="yasm"
 nm_opts='-g'
 
 # machine
-arch=$(uname -m)
+arch_default=$(uname -m)
 cpu="generic"
 
 # OS
-target_os=$(tolower $(uname -s))
-host_os=$target_os
+target_os_default=$(tolower $(uname -s))
+host_os=$target_os_default
 
 # configurable options
 enable avcodec
@@ -1606,6 +1606,13 @@ set >> $logfile
 
 test -n "$cross_prefix" && enable cross_compile
 
+if enabled cross_compile; then
+    test -n "$arch" && test -n "$target_os" ||
+        die "Must specify target arch and OS when cross-compiling"
+fi
+
+set_default arch target_os
+
 ar="${cross_prefix}${ar}"
 cc_default="${cross_prefix}${cc_default}"
 nm_default="${cross_prefix}${nm_default}"