Stricter check for math.h functions

GCC is sometimes able to optimise constant calls to these functions,
incorrectly indicating that they exist.  Unoptimised calls will then
fail to link.

Originally committed as revision 21749 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Måns Rullgård 15 years ago
parent 6b73c0aedc
commit 33bd38dbd3
  1. 3
      configure

3
configure vendored

@ -675,7 +675,8 @@ check_mathfunc(){
disable $func disable $func
check_ld "$@" <<EOF && enable $func check_ld "$@" <<EOF && enable $func
#include <math.h> #include <math.h>
int main(void){ $func(0); return 0; } float foo(float f) { return $func(f); }
int main(void){ return 0; }
EOF EOF
} }

Loading…
Cancel
Save