2014-02-13 09:26:10 +08:00
|
|
|
# Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
# file at the top-level directory of this distribution and at
|
|
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
# option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
# Basic support for producing installation images.
|
|
|
|
#
|
|
|
|
# The 'prepare' build target copies all release artifacts from the build
|
|
|
|
# directory to some other location, placing all binaries, libraries, and
|
|
|
|
# docs in their final locations relative to each other.
|
|
|
|
#
|
|
|
|
# It requires the following variables to be set:
|
|
|
|
#
|
2014-02-22 02:55:30 +08:00
|
|
|
# PREPARE_HOST - the host triple
|
2014-02-13 09:26:10 +08:00
|
|
|
# PREPARE_TARGETS - the target triples, space separated
|
|
|
|
# PREPARE_DEST_DIR - the directory to put the image
|
|
|
|
|
|
|
|
prepare: PREPARE_STAGE=2
|
|
|
|
prepare: PREPARE_DIR_CMD=$(DEFAULT_PREPARE_DIR_CMD)
|
|
|
|
prepare: PREPARE_BIN_CMD=$(DEFAULT_PREPARE_BIN_CMD)
|
|
|
|
prepare: PREPARE_LIB_CMD=$(DEFAULT_PREPARE_LIB_CMD)
|
|
|
|
prepare: PREPARE_MAN_CMD=$(DEFAULT_PREPARE_MAN_CMD)
|
|
|
|
prepare: prepare-base
|
|
|
|
|
|
|
|
prepare-base: PREPARE_SOURCE_DIR=$(PREPARE_HOST)/stage$(PREPARE_STAGE)
|
|
|
|
prepare-base: PREPARE_SOURCE_BIN_DIR=$(PREPARE_SOURCE_DIR)/bin
|
|
|
|
prepare-base: PREPARE_SOURCE_LIB_DIR=$(PREPARE_SOURCE_DIR)/$(CFG_LIBDIR_RELATIVE)
|
|
|
|
prepare-base: PREPARE_SOURCE_MAN_DIR=$(S)/man
|
|
|
|
prepare-base: PREPARE_DEST_BIN_DIR=$(PREPARE_DEST_DIR)/bin
|
|
|
|
prepare-base: PREPARE_DEST_LIB_DIR=$(PREPARE_DEST_DIR)/$(CFG_LIBDIR_RELATIVE)
|
2014-03-02 13:39:36 +08:00
|
|
|
prepare-base: PREPARE_DEST_MAN_DIR=$(PREPARE_DEST_DIR)/man/man1
|
2014-02-13 09:26:10 +08:00
|
|
|
prepare-base: prepare-host prepare-targets
|
|
|
|
|
2014-02-13 15:53:36 +08:00
|
|
|
prepare-everything: prepare-host prepare-targets
|
|
|
|
|
2014-02-13 09:26:10 +08:00
|
|
|
DEFAULT_PREPARE_DIR_CMD = umask 022 && mkdir -p
|
|
|
|
DEFAULT_PREPARE_BIN_CMD = install -m755
|
|
|
|
DEFAULT_PREPARE_LIB_CMD = install -m644
|
2014-03-10 05:12:11 +08:00
|
|
|
DEFAULT_PREPARE_MAN_CMD = install -m644
|
2014-02-13 09:26:10 +08:00
|
|
|
|
|
|
|
# On windows we install from stage3, but on unix only stage2
|
|
|
|
# Because of the way these rules are organized, preparing from any
|
|
|
|
# stage requires all these stages to be built
|
|
|
|
ifdef CFG_WINDOWSY_$(CFG_BUILD)
|
2014-02-16 13:47:28 +08:00
|
|
|
PREPARE_STAGES=3
|
2014-02-13 09:26:10 +08:00
|
|
|
else
|
2014-02-16 13:47:28 +08:00
|
|
|
PREPARE_STAGES=2
|
2014-02-13 09:26:10 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Create a directory
|
|
|
|
# $(1) is the directory
|
|
|
|
define PREPARE_DIR
|
2014-03-10 05:13:48 +08:00
|
|
|
@$(Q)$(call E, prepare: $(1))
|
2014-02-13 09:26:10 +08:00
|
|
|
$(Q)$(PREPARE_DIR_CMD) $(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
# Copy an executable
|
|
|
|
# $(1) is the filename/libname-glob
|
|
|
|
define PREPARE_BIN
|
2014-03-10 05:13:48 +08:00
|
|
|
@$(call E, prepare: $(PREPARE_DEST_BIN_DIR)/$(1))
|
2014-02-13 09:26:10 +08:00
|
|
|
$(Q)$(PREPARE_BIN_CMD) $(PREPARE_SOURCE_BIN_DIR)/$(1) $(PREPARE_DEST_BIN_DIR)/$(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
# Copy a dylib or rlib
|
|
|
|
# $(1) is the filename/libname-glob
|
|
|
|
#
|
|
|
|
# XXX: Don't remove the $(nop) command below!
|
|
|
|
# Yeah, that's right, it's voodoo. Something in the way this macro is being expanded
|
|
|
|
# causes it to parse incorrectly. Throwing in that empty command seems to fix the
|
|
|
|
# problem. I'm sorry, just don't remove the $(nop), alright?
|
|
|
|
define PREPARE_LIB
|
|
|
|
$(nop)
|
2014-03-10 05:13:48 +08:00
|
|
|
@$(call E, prepare: $(PREPARE_WORKING_DEST_LIB_DIR)/$(1))
|
2014-02-13 09:26:10 +08:00
|
|
|
$(Q)LIB_NAME="$(notdir $(lastword $(wildcard $(PREPARE_WORKING_SOURCE_LIB_DIR)/$(1))))"; \
|
|
|
|
MATCHES="$(filter-out %$(notdir $(lastword $(wildcard $(PREPARE_WORKING_SOURCE_LIB_DIR)/$(1)))),\
|
|
|
|
$(wildcard $(PREPARE_WORKING_DEST_LIB_DIR)/$(1)))"; \
|
|
|
|
if [ -n "$$MATCHES" ]; then \
|
|
|
|
echo "warning: one or libraries matching Rust library '$(1)'" && \
|
|
|
|
echo " (other than '$$LIB_NAME' itself) already present" && \
|
|
|
|
echo " at destination $(PREPARE_WORKING_DEST_LIB_DIR):" && \
|
|
|
|
echo $$MATCHES ; \
|
|
|
|
fi
|
|
|
|
$(Q)$(PREPARE_LIB_CMD) `ls -drt1 $(PREPARE_WORKING_SOURCE_LIB_DIR)/$(1) | tail -1` $(PREPARE_WORKING_DEST_LIB_DIR)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
# Copy a man page
|
|
|
|
# $(1) - source dir
|
|
|
|
define PREPARE_MAN
|
2014-03-10 05:13:48 +08:00
|
|
|
@$(call E, prepare: $(PREPARE_DEST_MAN_DIR)/$(1))
|
2014-02-13 09:26:10 +08:00
|
|
|
$(Q)$(PREPARE_MAN_CMD) $(PREPARE_SOURCE_MAN_DIR)/$(1) $(PREPARE_DEST_MAN_DIR)/$(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
PREPARE_TOOLS = $(filter-out compiletest, $(TOOLS))
|
|
|
|
|
2014-02-16 13:47:28 +08:00
|
|
|
prepare-host: prepare-host-tools
|
2014-02-13 09:26:10 +08:00
|
|
|
|
2014-02-16 13:47:28 +08:00
|
|
|
prepare-host-tools: \
|
2014-02-13 09:26:10 +08:00
|
|
|
$(foreach tool, $(PREPARE_TOOLS),\
|
|
|
|
$(foreach stage,$(PREPARE_STAGES),\
|
|
|
|
$(foreach host,$(CFG_HOST),\
|
|
|
|
prepare-host-tool-$(tool)-$(stage)-$(host))))
|
|
|
|
|
2014-03-02 13:39:55 +08:00
|
|
|
prepare-host-dirs: prepare-maybe-clean
|
2014-02-16 13:47:28 +08:00
|
|
|
$(call PREPARE_DIR,$(PREPARE_DEST_BIN_DIR))
|
|
|
|
$(call PREPARE_DIR,$(PREPARE_DEST_LIB_DIR))
|
|
|
|
$(call PREPARE_DIR,$(PREPARE_DEST_MAN_DIR))
|
|
|
|
|
2014-02-13 09:26:10 +08:00
|
|
|
# $(1) is tool
|
|
|
|
# $(2) is stage
|
|
|
|
# $(3) is host
|
|
|
|
define DEF_PREPARE_HOST_TOOL
|
2014-03-02 13:39:55 +08:00
|
|
|
prepare-host-tool-$(1)-$(2)-$(3): prepare-maybe-clean \
|
|
|
|
$$(foreach dep,$$(TOOL_DEPS_$(1)),prepare-host-lib-$$(dep)-$(2)-$(3)) \
|
2014-02-16 13:47:28 +08:00
|
|
|
$$(HBIN$(2)_H_$(3))/$(1)$$(X_$(3)) \
|
|
|
|
prepare-host-dirs
|
2014-02-13 09:26:10 +08:00
|
|
|
$$(if $$(findstring $(2), $$(PREPARE_STAGE)),\
|
|
|
|
$$(if $$(findstring $(3), $$(PREPARE_HOST)),\
|
|
|
|
$$(call PREPARE_BIN,$(1)$$(X_$$(PREPARE_HOST))),),)
|
|
|
|
$$(if $$(findstring $(2), $$(PREPARE_STAGE)),\
|
|
|
|
$$(if $$(findstring $(3), $$(PREPARE_HOST)),\
|
|
|
|
$$(call PREPARE_MAN,$(1).1),),)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach tool,$(PREPARE_TOOLS),\
|
|
|
|
$(foreach stage,$(PREPARE_STAGES),\
|
|
|
|
$(foreach host,$(CFG_HOST),\
|
|
|
|
$(eval $(call DEF_PREPARE_HOST_TOOL,$(tool),$(stage),$(host))))))
|
|
|
|
|
2014-02-16 13:47:28 +08:00
|
|
|
# For host libraries only install dylibs, not rlibs since the host libs are only
|
|
|
|
# used to support rustc and rustc uses dynamic linking
|
|
|
|
#
|
2014-02-13 09:26:10 +08:00
|
|
|
# $(1) is tool
|
|
|
|
# $(2) is stage
|
|
|
|
# $(3) is host
|
|
|
|
define DEF_PREPARE_HOST_LIB
|
|
|
|
prepare-host-lib-$(1)-$(2)-$(3): PREPARE_WORKING_SOURCE_LIB_DIR=$$(PREPARE_SOURCE_LIB_DIR)
|
|
|
|
prepare-host-lib-$(1)-$(2)-$(3): PREPARE_WORKING_DEST_LIB_DIR=$$(PREPARE_DEST_LIB_DIR)
|
2014-03-02 13:39:55 +08:00
|
|
|
prepare-host-lib-$(1)-$(2)-$(3): prepare-maybe-clean \
|
|
|
|
$$(foreach dep,$$(RUST_DEPS_$(1)),prepare-host-lib-$$(dep)-$(2)-$(3))\
|
2014-02-16 13:47:28 +08:00
|
|
|
$$(HLIB$(2)_H_$(3))/stamp.$(1) \
|
|
|
|
prepare-host-dirs
|
2014-02-13 09:26:10 +08:00
|
|
|
$$(if $$(findstring $(2), $$(PREPARE_STAGE)),\
|
|
|
|
$$(if $$(findstring $(3), $$(PREPARE_HOST)),\
|
|
|
|
$$(call PREPARE_LIB,$$(call CFG_LIB_GLOB_$$(PREPARE_HOST),$(1))),),)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach lib,$(CRATES),\
|
|
|
|
$(foreach stage,$(PREPARE_STAGES),\
|
|
|
|
$(foreach host,$(CFG_HOST),\
|
|
|
|
$(eval $(call DEF_PREPARE_HOST_LIB,$(lib),$(stage),$(host))))))
|
|
|
|
|
|
|
|
prepare-targets:\
|
|
|
|
$(foreach host,$(CFG_HOST),\
|
|
|
|
$(foreach target,$(CFG_TARGET),\
|
|
|
|
$(foreach stage,$(PREPARE_STAGES),\
|
|
|
|
prepare-target-$(target)-host-$(host)-$(stage))))
|
|
|
|
|
2014-02-16 13:47:28 +08:00
|
|
|
# $(1) is stage
|
|
|
|
# $(2) is target
|
|
|
|
# $(3) is host
|
2014-02-13 09:26:10 +08:00
|
|
|
define DEF_PREPARE_TARGET_N
|
|
|
|
# Rebind PREPARE_*_LIB_DIR to point to rustlib, then install the libs for the targets
|
2014-02-16 13:47:28 +08:00
|
|
|
prepare-target-$(2)-host-$(3)-$(1): PREPARE_WORKING_SOURCE_LIB_DIR=$$(PREPARE_SOURCE_LIB_DIR)/$$(CFG_RUSTLIBDIR)/$(2)/lib
|
|
|
|
prepare-target-$(2)-host-$(3)-$(1): PREPARE_WORKING_DEST_LIB_DIR=$$(PREPARE_DEST_LIB_DIR)/$$(CFG_RUSTLIBDIR)/$(2)/lib
|
2014-03-02 13:39:55 +08:00
|
|
|
prepare-target-$(2)-host-$(3)-$(1): prepare-maybe-clean \
|
2014-02-13 09:26:10 +08:00
|
|
|
$$(foreach crate,$$(TARGET_CRATES), \
|
2014-02-16 13:47:28 +08:00
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(crate)) \
|
|
|
|
$$(if $$(findstring $(2),$$(CFG_HOST)), \
|
|
|
|
$$(foreach crate,$$(HOST_CRATES), \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/stamp.$$(crate)),)
|
2014-02-22 02:55:30 +08:00
|
|
|
# Only install if this host and target combo is being prepared. Also be sure to
|
|
|
|
# *not* install the rlibs for host crates because there's no need to statically
|
|
|
|
# link against most of them. They just produce a large amount of extra size
|
|
|
|
# bloat.
|
2014-02-16 13:47:28 +08:00
|
|
|
$$(if $$(findstring $(1), $$(PREPARE_STAGE)),\
|
|
|
|
$$(if $$(findstring $(2), $$(PREPARE_TARGETS)),\
|
|
|
|
$$(if $$(findstring $(3), $$(PREPARE_HOST)),\
|
2014-02-13 09:26:10 +08:00
|
|
|
$$(call PREPARE_DIR,$$(PREPARE_WORKING_DEST_LIB_DIR))\
|
|
|
|
$$(foreach crate,$$(TARGET_CRATES),\
|
2014-02-16 13:47:28 +08:00
|
|
|
$$(call PREPARE_LIB,$$(call CFG_LIB_GLOB_$(2),$$(crate)))\
|
2014-02-13 09:26:10 +08:00
|
|
|
$$(call PREPARE_LIB,$$(call CFG_RLIB_GLOB,$$(crate))))\
|
2014-02-16 13:47:28 +08:00
|
|
|
$$(if $$(findstring $(2),$$(CFG_HOST)),\
|
|
|
|
$$(foreach crate,$$(HOST_CRATES),\
|
2014-02-22 02:55:30 +08:00
|
|
|
$$(call PREPARE_LIB,$$(call CFG_LIB_GLOB_$(2),$$(crate)))),)\
|
2014-02-16 13:47:28 +08:00
|
|
|
$$(call PREPARE_LIB,libmorestack.a) \
|
2014-02-13 09:26:10 +08:00
|
|
|
$$(call PREPARE_LIB,libcompiler-rt.a),),),)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach host,$(CFG_HOST),\
|
|
|
|
$(foreach target,$(CFG_TARGET), \
|
|
|
|
$(foreach stage,$(PREPARE_STAGES),\
|
2014-02-16 13:47:28 +08:00
|
|
|
$(eval $(call DEF_PREPARE_TARGET_N,$(stage),$(target),$(host))))))
|
2014-03-02 13:39:55 +08:00
|
|
|
|
|
|
|
prepare-maybe-clean:
|
|
|
|
$(if $(findstring true,$(PREPARE_CLEAN)),\
|
|
|
|
@$(call E, cleaning destination $@),)
|
|
|
|
$(if $(findstring true,$(PREPARE_CLEAN)),\
|
|
|
|
$(Q)rm -r $(PREPARE_DEST_DIR),)
|