Skip to content

Commit 367e850

Browse files
committed
---
yaml --- r: 148835 b: refs/heads/try2 c: 91882a4 h: refs/heads/master i: 148833: 70e2a94 148831: cad0acb v: v3
1 parent d095f52 commit 367e850

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 864b434bfa3fd5b3ea9e38958652ed1abdc24f1d
8+
refs/heads/try2: 91882a4c56f16500e63f589390a170ed469edf06
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/Makefile.in

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,6 @@ endef
206206
$(foreach target,$(CFG_TARGET),\
207207
$(eval $(call DEF_X,$(target))))
208208

209-
# Look in doc and src dirs.
210-
VPATH := $(S)doc $(S)src
211-
212209
# "Source" files we generate in builddir along the way.
213210
GENERATED :=
214211

branches/try2/mk/rt.mk

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,21 +67,23 @@ NATIVE_DEPS_morestack_$(1) := arch/$$(HOST_$(1))/morestack.S
6767

6868
RT_OUTPUT_DIR_$(1) := $(1)/rt
6969

70-
$$(RT_OUTPUT_DIR_$(1))/%.o: rt/%.ll $$(MKFILE_DEPS) $$(LLVM_CONFIG_$$(CFG_BUILD))
70+
$$(RT_OUTPUT_DIR_$(1))/%.o: $(S)src/rt/%.ll $$(MKFILE_DEPS) \
71+
$$(LLVM_CONFIG_$$(CFG_BUILD))
7172
@mkdir -p $$(@D)
7273
@$$(call E, compile: $$@)
7374
$$(Q)$$(LLC_$$(CFG_BUILD)) $$(CFG_LLC_FLAGS_$(1)) \
7475
-filetype=obj -mtriple=$(1) -relocation-model=pic -o $$@ $$<
7576

76-
$$(RT_OUTPUT_DIR_$(1))/%.o: rt/%.c $$(MKFILE_DEPS)
77+
$$(RT_OUTPUT_DIR_$(1))/%.o: $(S)src/rt/%.c $$(MKFILE_DEPS)
7778
@mkdir -p $$(@D)
7879
@$$(call E, compile: $$@)
7980
$$(Q)$$(call CFG_COMPILE_C_$(1), $$@, \
8081
-I $$(S)src/rt/sundown/src -I $$(S)src/rt/sundown/html \
8182
-I $$(S)src/libuv/include -I $$(S)src/rt \
8283
$$(RUNTIME_CFLAGS_$(1))) $$<
8384

84-
$$(RT_OUTPUT_DIR_$(1))/%.o: rt/%.S $$(MKFILE_DEPS) $$(LLVM_CONFIG_$$(CFG_BUILD))
85+
$$(RT_OUTPUT_DIR_$(1))/%.o: $(S)src/rt/%.S $$(MKFILE_DEPS) \
86+
$$(LLVM_CONFIG_$$(CFG_BUILD))
8587
@mkdir -p $$(@D)
8688
@$$(call E, compile: $$@)
8789
$$(Q)$$(call CFG_ASSEMBLE_$(1),$$@,$$<)

branches/try2/mk/rustllvm.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $$(RT_OUTPUT_DIR_$(1))/$$(call CFG_STATIC_LIB_NAME_$(1),rustllvm): \
3737
@$$(call E, link: $$@)
3838
$$(Q)$$(AR_$(1)) rcs $$@ $$(RUSTLLVM_OBJS_OBJS_$(1))
3939

40-
$(1)/rustllvm/%.o: rustllvm/%.cpp $$(MKFILE_DEPS) $$(LLVM_CONFIG_$(1))
40+
$(1)/rustllvm/%.o: $(S)src/rustllvm/%.cpp $$(MKFILE_DEPS) $$(LLVM_CONFIG_$(1))
4141
@$$(call E, compile: $$@)
4242
$$(Q)$$(call CFG_COMPILE_CXX_$(1), $$@, $$(LLVM_CXXFLAGS_$(1)) $$(RUSTLLVM_INCS_$(1))) $$<
4343
endef

0 commit comments

Comments
 (0)