summaryrefslogtreecommitdiff
path: root/tool/m4/ruby_prog_gnu_ld.m4
blob: 8d484f9440119a934c69a9f5e5be660ec1d4b2bc (plain)
1
2
3
4
5
6
7
8
9
10
# -*- 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