Commit ae43c4c0 authored by Mans Rullgard's avatar Mans Rullgard

configure: use HOSTCC_C/O in check_host_cc

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent df0d6341
......@@ -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(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment