From 2e588454fe160b39bd8134a2fb9cbac4fba39e2a Mon Sep 17 00:00:00 2001 From: James Peach Date: Mon, 2 Apr 2007 17:23:23 +0000 Subject: r22035: Introduce HOSTLD which is needed to link the asn1 compiler when cross compiling. (This used to be commit 976343821b99b04725c9fddee42dbcd0261c2d51) --- source4/build/m4/check_ld.m4 | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'source4/build/m4/check_ld.m4') diff --git a/source4/build/m4/check_ld.m4 b/source4/build/m4/check_ld.m4 index f7202b63eb..60b59bd653 100644 --- a/source4/build/m4/check_ld.m4 +++ b/source4/build/m4/check_ld.m4 @@ -36,6 +36,17 @@ SHLIBEXT="so" SONAMEFLAG="" PICFLAG="" +# allow for --with-hostld=gcc +AC_ARG_WITH(hostld,[ --with-hostld=linker choose host linker], +[HOSTLD=$withval], +[ +if test z"$cross_compiling" = "yes"; then + HOSTLD='$(HOSTCC)' +else + HOSTLD='$(LD)' +fi +]) + AC_MSG_CHECKING([ability to build shared libraries]) # and these are for particular systems @@ -144,6 +155,8 @@ AC_MSG_RESULT([$LD]) AC_MSG_CHECKING([LDFLAGS]) AC_MSG_RESULT([$LDFLAGS]) +AC_SUBST(HOSTLD) + AC_MSG_CHECKING([STLD]) AC_MSG_RESULT([$STLD]) AC_MSG_CHECKING([STLD_FLAGS]) -- cgit