mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
static-linked-ext: all linked ruby
* ext/extmk.rb (command_output): ENCOBJS is needed for all linked ruby, if --disable-shared and --with-static-linked-ext. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e990086711
commit
15bf3182c6
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
Sat May 19 14:57:31 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Sat May 19 19:04:38 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/extmk.rb (command_output): ENCOBJS is needed for all linked
|
||||
ruby, if --disable-shared and --with-static-linked-ext.
|
||||
|
||||
* ext/extmk.rb (command_output): dmyext is needed as DLDOBJS if no
|
||||
static lined extensions.
|
||||
|
|
|
@ -666,7 +666,7 @@ if $configure_only and $command_output
|
|||
mf.print %[DLDOBJS="$(EXTOBJS)" SOLIBS="$(ENCOBJS) $(EXTLIBS)" ]
|
||||
mf.print 'LIBRUBY_SO_UPDATE=$(LIBRUBY_EXTS) '
|
||||
else
|
||||
mf.print %[EXTOBJS="$(EXTOBJS)" EXTLIBS="$(EXTLIBS)" ]
|
||||
mf.print %[EXTOBJS="$(EXTOBJS) $(ENCOBJS)" EXTLIBS="$(EXTLIBS)" ]
|
||||
end
|
||||
mf.puts 'EXTLDFLAGS="$(EXTLDFLAGS)" $@'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue