OSDN Git Service

configure: probe_cc: use separate variable for linker output flag
authorMans Rullgard <mans@mansr.com>
Tue, 28 Aug 2012 11:50:09 +0000 (12:50 +0100)
committerMans Rullgard <mans@mansr.com>
Tue, 28 Aug 2012 22:40:30 +0000 (23:40 +0100)
Some tools use different command line syntax for specifying output
when compiling and linking.  To accomodate these, separate variables
must be used.  No currently supported compilers/linkers are affected
by the change.

Signed-off-by: Mans Rullgard <mans@mansr.com>
configure

index 8ba2c3c..6177943 100755 (executable)
--- a/configure
+++ b/configure
@@ -2129,7 +2129,7 @@ probe_cc(){
     pfx=$1
     _cc=$2
 
-    unset _type _ident _cc_c _cc_e _cc_o _flags _cflags _ldflags
+    unset _type _ident _cc_c _cc_e _cc_o _ld_o _flags _cflags _ldflags
     unset _depflags _DEPCMD _DEPFLAGS
     _flags_filter=echo
 
@@ -2291,7 +2291,7 @@ probe_cc ld "$ld"
 ldflags_filter=$_flags_filter
 add_ldflags $_flags $_ldflags
 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
-LD_O=${_cc_o-$LD_O}
+LD_O=${_ld_o-$LD_O}
 
 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
     probe_cc depcc "$dep_cc"