Bring the script out of the dark ages and into modern autoconfness.
[oota-llvm.git] / autoconf / m4 / link_use_r.m4
1 #
2 # Determine if the system can handle the -R option being passed to the linker.
3 #
4 # This macro is specific to LLVM.
5 #
6 AC_DEFUN([AC_LINK_USE_R],
7 [
8   AC_MSG_CHECKING([for compiler -Wl,-R<path> option])
9   AC_LANG_PUSH([C])
10   oldcflags="$CFLAGS"
11   CFLAGS="$CFLAGS -Wl,-R."
12   AC_LINK_IFELSE([int main() { return 0; }],[ac_cv_link_use_r=yes],[ac_cv_link_use_r=no])
13   CFLAGS="$oldcflags"
14   AC_LANG_POP([C])
15   AC_MSG_RESULT($ac_cv_link_use_r)
16   if test "$ac_cv_link_use_r" = yes
17   then
18     AC_DEFINE([HAVE_LINK_R],[1],[Define if you can use -Wl,-R. to pass -R. to the linker, in order to add the current directory to the dynamic linker search path.])
19   fi
20 ])
21
22