Message ID | 20160607095102.GB2257@work-vm (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/configure b/configure index 6449e65..65e603c 100755 --- a/configure +++ b/configure @@ -1793,8 +1793,8 @@ static void *bar_ifunc(void) {return (void*) bar;} int foo(void *a) __attribute__((ifunc("bar_ifunc"))); int main(int argc, char *argv[]) { return foo(argv[0]);} EOF -if compile_prog "" ; then - if readelf --syms $TMPE |grep "IFUNC.*foo" >/dev/null 2>&1; then +if compile_object "" ; then + if readelf --syms $TMPO |grep "IFUNC.*foo" >/dev/null 2>&1; then avx2_opt="yes" fi fi