mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
static-linked-ext: into libruby
* ext/extmk.rb (command_output): dmyext is needed as DLDOBJS if no static lined extensions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
08b1523553
commit
a99bf256ff
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
Sat May 19 11:37:18 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Sat May 19 14:57:31 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/extmk.rb (command_output): dmyext is needed as DLDOBJS if no
|
||||
static lined extensions.
|
||||
|
||||
* Makefile.in, common.mk (PROGRAM): no extension libraries.
|
||||
|
||||
|
|
|
@ -644,7 +644,7 @@ if $configure_only and $command_output
|
|||
end
|
||||
|
||||
mf.macro "extensions", exts
|
||||
mf.macro "EXTOBJS", $extlist.empty? ? [] : ["ext/extinit.#{$OBJEXT}", *$extobjs]
|
||||
mf.macro "EXTOBJS", $extlist.empty? ? ["dmyext.#{$OBJEXT}"] : ["ext/extinit.#{$OBJEXT}", *$extobjs]
|
||||
mf.macro "EXTLIBS", $extlibs
|
||||
mf.macro "EXTLDFLAGS", $extflags.split
|
||||
mf.puts
|
||||
|
|
Loading…
Add table
Reference in a new issue