diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-07 08:15:25 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-05-07 08:15:25 +0000 |
| commit | 2bf62016226ce59d9e8ea5a7a4e30330d0e4d960 (patch) | |
| tree | c2282fee4a51c2a84de95b9aabe1a9cb1427daa1 | |
| parent | 1c83965c2de8833e940aff525c9dd00367498a79 (diff) | |
| download | ruby-2bf62016226ce59d9e8ea5a7a4e30330d0e4d960.tar.gz ruby-2bf62016226ce59d9e8ea5a7a4e30330d0e4d960.tar.xz ruby-2bf62016226ce59d9e8ea5a7a4e30330d0e4d960.zip | |
* configure.in: forgot to add -Wl, to the gcc option on Cygwin/MinGW.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue May 7 17:13:40 2002 WATANABE Hirofumi <eban@ruby-lang.org> + + * configure.in: forgot to add '-Wl,' to the gcc option on Cygwin/MinGW. + Tue May 7 15:41:33 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net> * ext/iconv/iconv.c (iconv_try): should initialize exceptions diff --git a/configure.in b/configure.in index 3c6a7c4df..6215f6785 100644 --- a/configure.in +++ b/configure.in @@ -1041,10 +1041,10 @@ case "$target_os" in RUBY_SO_NAME=$target_os-'$(RUBY_INSTALL_NAME)'${MAJOR}${MINOR} if test x"$enable_shared" = xyes; then LIBRUBY_SO='$(RUBY_SO_NAME)'.dll - LIBRUBY_DLDFLAGS='--out-implib=$(LIBRUBY) $(RUBYDEF)' + LIBRUBY_DLDFLAGS='-Wl,--out-implib=$(LIBRUBY) $(RUBYDEF)' else LIBRUBY_SO=dummy - LIBRUBY_DLDFLAGS='-Wl,--output-exp=$(RUBY_INSTALL_NAME).exp --out-implib=$(LIBRUBY) $(RUBYDEF)' + LIBRUBY_DLDFLAGS='-Wl,--output-exp=$(RUBY_INSTALL_NAME).exp,--out-implib=$(LIBRUBY) $(RUBYDEF)' fi LIBRUBY_ALIASES='' LIBRUBY_A='lib$(RUBY_INSTALL_NAME)s.a' |
