From 976b5c1f86d3b1db9bea56cbf4be33b68e1fd96e Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Wed, 3 Oct 2007 14:35:31 +0000 Subject: * no-executables.m4 (GCC_TRY_COMPILE_OR_LINK): New function. --- config/no-executables.m4 | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'config/no-executables.m4') diff --git a/config/no-executables.m4 b/config/no-executables.m4 index 54e5a024288..c4d0b70c375 100644 --- a/config/no-executables.m4 +++ b/config/no-executables.m4 @@ -59,3 +59,11 @@ fi) m4_divert_pop()dnl ])# GCC_NO_EXECUTABLES + +# Use the strongest available test out of AC_TRY_COMPILE and AC_TRY_LINK. +AC_DEFUN([GCC_TRY_COMPILE_OR_LINK], +[if test x$gcc_no_link = xyes; then + AC_TRY_COMPILE([$1], [$2], [$3], [$4]) +else + AC_TRY_LINK([$1], [$2], [$3], [$4]) +fi]) -- cgit v1.2.1