From 004dae6abd5733beda47b54c0e2d3e883de558a6 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 8 Jan 2014 08:16:48 -0800 Subject: [PATCH] Fix the snapshot and cross compilation If we bootstrap a cross compile from a stage1 compiler, then the stage1 compiler already knows about the rustc => rustlib change, so we need to not add the extra flag if it's a stage0 version of a target from a stage1 of another target. --- mk/target.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mk/target.mk b/mk/target.mk index 59882e63bfdb6..02c5d028e2cdc 100644 --- a/mk/target.mk +++ b/mk/target.mk @@ -56,7 +56,11 @@ $$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_RUNTIME_$(2)): \ # SNAP a5fa1d9 remove this after the stage0 snapshot from rules below ifeq ($(1),0) +ifeq ($(3),$$(findstring $(3),$$(NON_BUILD_HOST))) +LFLAGS_$(1)_$(2)_$(3) := +else LFLAGS_$(1)_$(2)_$(3) := -L $$(TLIB$(1)_T_$(2)_H_$(3)) +endif else LFLAGS_$(1)_$(2)_$(3) := endif