blob: 09493042f1ce4883587d273439918d64d888e05c [file] [log] [blame]
Reid Spencerb15e69a2004-09-07 06:56:14 +00001#
2# Determine if the system can handle the -R option being passed to the linker.
3#
4# This macro is specific to LLVM.
5#
6AC_DEFUN([AC_LINK_USE_R],
7[
8 AC_MSG_CHECKING([for compiler -Wl,-R<path> option])
Reid Spencer70eca352004-09-19 22:31:49 +00009 AC_LANG_PUSH([C])
Reid Spencerb15e69a2004-09-07 06:56:14 +000010 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"
Reid Spencer70eca352004-09-19 22:31:49 +000014 AC_LANG_POP([C])
Reid Spencerb15e69a2004-09-07 06:56:14 +000015 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