1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in (solaris): add '-shared' only for GNU ld.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-01-25 09:00:50 +00:00
parent f547c1150c
commit a0bf3b3bb9
3 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Fri Jan 25 17:48:43 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in (solaris): add '-shared' only for GNU ld.
Fri Jan 25 17:16:23 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* class.c (rb_include_module): detect cyclic module inclusion.

View file

@ -586,8 +586,11 @@ if test "$with_dln_a_out" != yes; then
LDFLAGS="-Wl,-E"
rb_cv_dlopen=yes;;
solaris*) if test "$GCC" = yes; then
LDSHARED='$(CC) -Wl,-G -shared'
`$CC --print-prog-name=ld` -v 2>&1 | grep "GNU ld" > /dev/null && LDFLAGS="-Wl,-E"
LDSHARED='$(CC) -Wl,-G'
if `$CC --print-prog-name=ld` -v 2>&1 | grep "GNU ld" > /dev/null; then
LDFLAGS="-Wl,-E"
LDSHARED="$LDSHARED -shared"
fi
else
LDSHARED='ld -G'
fi

View file

@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.2"
#define RUBY_RELEASE_DATE "2002-01-23"
#define RUBY_RELEASE_DATE "2002-01-25"
#define RUBY_VERSION_CODE 172
#define RUBY_RELEASE_CODE 20020123
#define RUBY_RELEASE_CODE 20020125