From 55cae8834019d9112e31cad097ecb3beff5e244c Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 2 Dec 2011 06:18:21 +0000 Subject: [PATCH] * configure.in: use $linker_flag for LDFLAGS option which is not limited to particular platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e84e28a8e3..65e523c1ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Dec 2 15:18:18 2011 Nobuyoshi Nakada + + * configure.in: use $linker_flag for LDFLAGS option which is not + limited to particular platforms. + Thu Dec 1 23:21:58 2011 CHIKANAGA Tomoyuki * thread_pthread.c (thread_timer): call prctl(PR_SET_NAME) only if diff --git a/configure.in b/configure.in index e685913c33..5678e6da00 100644 --- a/configure.in +++ b/configure.in @@ -2346,9 +2346,9 @@ AS_CASE("$enable_shared", [yes], [ [freebsd*|dragonfly*], [], [ if test "$GCC" = yes; then - RUBY_TRY_LDFLAGS([-Wl,--no-undefined], [no_undefined=yes], [no_undefined=no]) + RUBY_TRY_LDFLAGS([${linker_flag}--no-undefined], [no_undefined=yes], [no_undefined=no]) if test "no_undefined" = yes; then - RUBY_APPEND_OPTION(EXTLDFLAGS, [-Wl,--no-undefined]) + RUBY_APPEND_OPTION(EXTLDFLAGS, [${linker_flag}--no-undefined]) fi fi ])