diff options
| -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' |
