rt: Build the stage0 runtime for non-hosts from the working dir

This commit is contained in:
Brian Anderson 2012-01-09 13:34:01 -08:00
parent 7e8974305c
commit d4ae1cae60
1 changed files with 5 additions and 0 deletions

View File

@ -103,3 +103,8 @@ $(foreach source,$(CFG_TARGET_TRIPLES), \
$(eval $(call TARGET_RT_FROM_WD,1,$(target),$(source))) \
$(eval $(call TARGET_RT_FROM_WD,2,$(target),$(source))) \
$(eval $(call TARGET_RT_FROM_WD,3,$(target),$(source)))))
# Non-host triples build the stage0 runtime from the working directory
$(foreach source,$(CFG_TARGET_TRIPLES), \
$(foreach target,$(NON_HOST_TRIPLES), \
$(eval $(call TARGET_RT_FROM_WD,0,$(target),$(source)))))