mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (RPATHFLAG): set to -Wl,-R like NetBSD on Interix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
06a45a663c
commit
35d62eb6a5
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Jan 31 02:28:15 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* configure.in (RPATHFLAG): set to -Wl,-R like NetBSD on Interix.
|
||||
|
||||
Sat Jan 31 01:09:41 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
|
||||
|
||||
* lib/logger.rb: leading 0 padding of timestamp usec part.
|
||||
|
|
|
@ -855,6 +855,8 @@ if test "$with_dln_a_out" != yes; then
|
|||
rb_cv_dlopen=yes ;;
|
||||
interix*) : ${LDSHARED="$CC -shared"}
|
||||
XLDFLAGS="$XLDFLAGS -Wl,-E"
|
||||
LIBPATHFLAG=" -L'%1\$-s'"
|
||||
RPATHFLAG=" -Wl,-R'%1\$-s'"
|
||||
rb_cv_dlopen=yes ;;
|
||||
gnu*) : ${LDSHARED="$CC -shared"}
|
||||
rb_cv_dlopen=yes
|
||||
|
@ -1211,6 +1213,9 @@ if test "$enable_shared" = 'yes'; then
|
|||
LIBRUBY_DLDFLAGS='-Wl,-soname,lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR)'
|
||||
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) lib$(RUBY_SO_NAME).so'
|
||||
;;
|
||||
interix*)
|
||||
LIBRUBYARG_SHARED='-Wl,-R -Wl,${libdir} -L${libdir} -L. -l$(RUBY_SO_NAME)'
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue