* cygwin/GNUmakefile: remove unnecessary '--drive-name=$(CC)'

for ccache.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-08-09 15:36:23 +00:00
parent df71dae11f
commit e1a019a65a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Sun Aug 10 00:34:16 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* cygwin/GNUmakefile: remove unnecessary '--drive-name=$(CC)'
for ccache.
Sat Aug 9 10:36:21 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* marshal.c (w_object): do not dump generic instance variable when

View File

@ -60,6 +60,6 @@ ifeq (@target_os@,cygwin)
cygwin-$(RUBY_INSTALL_NAME)$(MAJOR)$(MINOR).dll: $(LIBRUBY_A)
@NM@ --extern --defined $(LIBRUBY_A) | \
$(MINIRUBY) -ne 'BEGIN{puts "EXPORTS"}; puts $$1+"=cyg$(RUBY_INSTALL_NAME)$(MAJOR)$(MINOR)."+$$1 if / [CDT] _(.*)$$/' >rubydll.def
@DLLWRAP@ --driver-name=$(CC) -s --def=rubydll.def -o $@
@DLLWRAP@ -s --def=rubydll.def -o $@
@rm -f rubydll.def
endif