3 # Sets the output variable LdIsGNULd to YES or NO, depending on whether it is
5 AC_DEFUN([FP_PROG_LD_IS_GNU],[
6 AC_CACHE_CHECK([whether ld is GNU ld], [fp_cv_gnu_ld],
9 if "$LD" --version 2> /dev/null | grep "emcc" > /dev/null 2>&1;
13 if "$LD" --version 2> /dev/null | grep "GNU" > /dev/null 2>&1; then
21 AC_SUBST([LdIsGNULd],["$fp_cv_gnu_ld"])