Lines Matching defs:echo
56 tr '\n' ' ' <<EOF | grep '^[-[:alnum:]_=,./:]* $' >/dev/null 2>&1 && { echo "$1" ; return 0 ; }
61 echo () { printf "%s\n" "$*" ; }
62 fail () { echo "$*" ; exit 1 ; }
73 echo "typedef int x;" > "$tmpc"
74 echo "#if $1" >> "$tmpc"
75 echo "#error yes" >> "$tmpc"
76 echo "#endif" >> "$tmpc"
88 echo "typedef int x;" > "$tmpc"
102 echo "typedef int x;" > "$tmpc"
179 -* ) echo "$0: unknown option $arg" ;;
245 test -n "$CC" || { echo "$0: cannot find a C compiler" ; exit 1 ; }
248 echo "typedef int x;" > "$tmpc"
277 echo "$cc_family"
283 echo "#include <stdlib.h>" > "$tmpc"
284 echo "#if ! __GLIBC__" >> "$tmpc"
285 echo "#error no" >> "$tmpc"
286 echo "#endif" >> "$tmpc"
289 echo "none"
292 echo "gcc"
295 echo "clang"
297 echo "none"
661 echo 'float f(float x) { __asm__("":"+t"(x)); return x; }' > "$tmpc"
680 echo "__asm__(\"movfcsr2gr \$t0,\$fcsr0\");" > "$tmpc"
712 echo 'double f(double x) { __asm__ ("fabs %0, %1" : "=d"(x) : "d"(x)); return x; }' > "$tmpc"
744 echo 'typedef char dblcheck[(int)sizeof(double)-5];' > "$tmpc"
771 echo '#include <float.h>' > "$tmpc"
772 echo '#define C(m,s) (m==LDBL_MANT_DIG && s==sizeof(long double))' >> "$tmpc"
773 echo 'typedef char ldcheck[(C(53,8)||C(64,12)||C(64,16)||C(113,16))*2-1];' >> "$tmpc"
834 test "x$static" = xno && echo "STATIC_LIBS ="
835 test "x$shared" = xno && echo "SHARED_LIBS ="
836 test "x$cc_family" = xgcc && echo 'WRAPCC_GCC = $(CC)'
837 test "x$cc_family" = xclang && echo 'WRAPCC_CLANG = $(CC)'
838 test "x$pic_default" = xyes && echo 'AOBJS = $(LOBJS)'