зеркало из https://github.com/github/ruby.git
enc/Makefile.in: TARGET_NAME TARGET_ENTRY
* enc/Makefile.in (TARGET_NAME, TARGET_ENTRY): needed for EXTDLDFLAGS on some platforms. [ruby-core:46600] [Bug #6768] * enc/depend: no longer needs tweaking DLDFLAGS for TARGET names. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36502 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
bec666ce78
Коммит
fbee46fe66
|
@ -1,3 +1,10 @@
|
|||
Mon Jul 23 23:58:40 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* enc/Makefile.in (TARGET_NAME, TARGET_ENTRY): needed for EXTDLDFLAGS
|
||||
on some platforms. [ruby-core:46600] [Bug #6768]
|
||||
|
||||
* enc/depend: no longer needs tweaking DLDFLAGS for TARGET names.
|
||||
|
||||
Mon Jul 23 22:48:19 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* lib/open-uri.rb: use respond_to? to test Tempfile.
|
||||
|
|
|
@ -51,9 +51,13 @@ LDFLAGS = @LDFLAGS@
|
|||
LDSHARED = @LDSHARED@
|
||||
ldflags = $(LDFLAGS)
|
||||
dldflags = @DLDFLAGS@
|
||||
extdldflags = @EXTDLDFLAGS@
|
||||
archflag = @ARCH_FLAG@
|
||||
DLDFLAGS = $(ldflags) $(dldflags) $(archflag)
|
||||
DLDFLAGS = $(ldflags) $(dldflags) $(extdldflags) $(archflag)
|
||||
RUBY = $(MINIRUBY)
|
||||
TARGET_NAME_ = $(@F) # BSD make seems unable to deal with @F with substitution
|
||||
TARGET_NAME = $(TARGET_NAME_:.@DLEXT@=)
|
||||
TARGET_ENTRY = @EXPORT_PREFIX@Init_$(TARGET_NAME)
|
||||
|
||||
WORKDIRS = @WORKDIRS@
|
||||
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
% inplace = File.identical?($srcdir, ".")
|
||||
% workdirs = %w"$(ENCSODIR) $(TRANSSODIR) enc enc/trans"
|
||||
% CONFIG["WORKDIRS"] = workdirs.join(' ')
|
||||
% CONFIG["DLDFLAGS"].sub!(/(\A|\s)(-\S+(?:\s*\w*)?\$\(TARGET\)\S*)/, '\1')
|
||||
% dldflags = $2
|
||||
% enable_shared = CONFIG['ENABLE_SHARED'] == 'yes'
|
||||
% deffile = (true if /\$\(DEFFILE\)/ =~ CONFIG["LINK_SO"])
|
||||
% dependencies = ENCS + TRANS
|
||||
|
@ -115,7 +113,6 @@ $(TRANSOBJS): ruby.h intern.h config.h defines.h missing.h encoding.h oniguruma.
|
|||
$(ECHO) linking <%=mesg%> $(@F)
|
||||
% cmd = link_so.sub(/\$\(OBJS\)/) {obj}
|
||||
% base = File.basename(e)
|
||||
% cmd.sub!(/(?=\$\(DLDFLAGS\))/) {dldflags.sub(/\$\(TARGET\)/) {base} + " "} if dldflags
|
||||
% if df
|
||||
$(Q)echo> <%=df%> EXPORTS
|
||||
$(Q)echo>> <%=df%> <%=EXPORT_PREFIX%>Init_<%=base%>
|
||||
|
|
|
@ -777,6 +777,7 @@ s,@OBJEXT@,$(OBJEXT),;t t
|
|||
s,@XCFLAGS@,$(XCFLAGS),;t t
|
||||
s,@XLDFLAGS@,$(XLDFLAGS),;t t
|
||||
s,@DLDFLAGS@,$(DLDFLAGS) $$(LIBPATH),;t t
|
||||
s,@EXTDLDFLAGS@,$(EXTDLDFLAGS),;t t
|
||||
s,@ARCH_FLAG@,$(ARCH_FLAG),;t t
|
||||
s,@STATIC@,$(STATIC),;t t
|
||||
s,@CCDLFLAGS@,,;t t
|
||||
|
|
Загрузка…
Ссылка в новой задаче