Make coroutine object directory for each arch

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-11-20 12:02:29 +00:00
Родитель f3ba295ae7
Коммит 91e6ac3d96
3 изменённых файлов: 11 добавлений и 9 удалений

Просмотреть файл

@ -143,6 +143,8 @@ XRUBY_RUBYLIBDIR = @XRUBY_RUBYLIBDIR@
XRUBY_RUBYHDRDIR = @XRUBY_RUBYHDRDIR@
BOOTSTRAPRUBY = @BOOTSTRAPRUBY@
COROUTINE_H = @X_FIBER_COROUTINE_H@
#### End of system configuration section. ####
MAJOR= @MAJOR@
@ -241,7 +243,7 @@ DESTDIR = @DESTDIR@
configure_args = @configure_args@
#### End of variables
.SUFFIXES: .inc .h .c .y .i .$(DTRACE_EXT)
.SUFFIXES: .inc .h .c .y .i .$(ASMEXT) .$(DTRACE_EXT)
all:
@ -406,7 +408,6 @@ $(srcdir)/enc/jis/props.h: enc/jis/props.kwd
.s.@OBJEXT@:
@$(ECHO) assembling $<
$(Q) $(MAKEDIRS) $(@D)
$(Q) $(CC) $(ASFLAGS) -o $@ -c $<
.c.S:
@ -517,7 +518,7 @@ ext/extinit.$(OBJEXT): ext/extinit.c $(SETUP)
enc/encinit.$(OBJEXT): enc/encinit.c $(SETUP)
cont.$(OBJEXT): @X_FIBER_COROUTINE_H@
cont.$(OBJEXT): $(COROUTINE_H)
test-bundled-gems-run:
$(Q) set -e; while read gem _; do \

Просмотреть файл

@ -2,7 +2,7 @@ bin: $(PROGRAM) $(WPROGRAM)
lib: $(LIBRUBY)
dll: $(LIBRUBY_SO)
.SUFFIXES: .inc .h .c .y .i .$(DTRACE_EXT)
.SUFFIXES: .inc .h .c .y .i .$(ASMEXT) .$(DTRACE_EXT)
# V=0 quiet, V=1 verbose. other values don't work.
V = 0
@ -895,9 +895,9 @@ strstr.$(OBJEXT): {$(VPATH)}strstr.c
nt.$(OBJEXT): {$(VPATH)}nt.c
ia64.$(OBJEXT): {$(VPATH)}ia64.s
$(CC) $(CFLAGS) -c $<
coroutine/amd64/Context.$(OBJEXT): {$(VPATH)}coroutine/amd64/Context.$(ASMEXT)
coroutine/amd64/Context.$(OBJEXT): coroutine/amd64/.time
coroutine/amd64/.time:
$(COROUTINE_H:.h=).$(OBJEXT): {$(VPATH)}$(COROUTINE_H:.h=).$(ASMEXT)
$(COROUTINE_H:.h=).$(OBJEXT): $(COROUTINE_H:Context.h=.time)
$(COROUTINE_H:Context.h=.time):
$(Q) $(MAKEDIRS) $(@D)
@exit > $@

Просмотреть файл

@ -290,12 +290,13 @@ MISSING = $(MISSING) explicit_bzero.obj
!endif
DLNOBJ = dln.obj
!if "$(ARCH)" == "x64"
MISSING = $(MISSING) coroutine/Win64/Context.obj
COROUTINE_H = coroutine/Win64/Context.h
!elseif "$(ARCH)" == "i386"
MISSING = $(MISSING) coroutine/Win32/Context.obj
COROUTINE_H = coroutine/Win32/Context.h
!endif
!if defined(COROUTINE_H)
MISSING = $(MISSING) $(COROUTINE_H:.h=.obj)
!endif
ARFLAGS = -machine:$(MACHINE) -out:
LD = $(CC)