Browse Source

configure: use HOSTCC_C/O in check_host_cc

Signed-off-by: Mans Rullgard <mans@mansr.com>
tags/n1.0
Mans Rullgard 12 years ago
parent
commit
ae43c4c0c0
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      configure

+ 5
- 1
configure View File

@@ -906,11 +906,15 @@ require_pkg_config(){
add_extralibs $(get_safe ${pkg}_libs)
}

hostcc_o(){
eval printf '%s\\n' $HOSTCC_O
}

check_host_cc(){
log check_host_cc "$@"
cat > $TMPC
log_file $TMPC
check_cmd $host_cc $host_cflags "$@" -c -o $TMPO $TMPC
check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
}

check_host_cflags(){


Loading…
Cancel
Save