summaryrefslogtreecommitdiff
path: root/tool/m4/ruby_prog_gnu_ld.m4
blob: b38fb3d527ff644703f6cce7920e91648ba72bc9 (plain)
1
2
3
4
5
6
7
8
9
10
dnl -*- Autoconf -*-
AC_DEFUN([RUBY_PROG_GNU_LD],
[AC_CACHE_CHECK(whether the linker is GNU ld, rb_cv_prog_gnu_ld,
[AS_IF([`$CC $CFLAGS $CPPFLAGS $LDFLAGS --print-prog-name=ld 2>&1` -v 2>&1 | grep "GNU ld" > /dev/null], [
  rb_cv_prog_gnu_ld=yes
], [
  rb_cv_prog_gnu_ld=no
])])
GNU_LD=$rb_cv_prog_gnu_ld
AC_SUBST(GNU_LD)])dnl