blob: 9bd648fabbe65566725a37551fcce6e1f03013fc [file] [log] [blame]
Reid Spencer491f6812004-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 Spencer12de17d2004-09-19 22:31:49 +00009 AC_LANG_PUSH([C])
Reid Spencer491f6812004-09-07 06:56:14 +000010 oldcflags="$CFLAGS"
11 CFLAGS="$CFLAGS -Wl,-R."
Reid Spencera42b5252004-09-20 04:08:22 +000012 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[int main() { return 0; }]])],[ac_cv_link_use_r=yes],[ac_cv_link_use_r=no])
Reid Spencer491f6812004-09-07 06:56:14 +000013 CFLAGS="$oldcflags"
Reid Spencer12de17d2004-09-19 22:31:49 +000014 AC_LANG_POP([C])
Reid Spencer491f6812004-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])