2011-10-02 03:12:08 +00:00
|
|
|
# An explanation of how the build is structured:
|
|
|
|
#
|
|
|
|
# There are multiple build stages (0-3) needed to verify that the
|
|
|
|
# compiler is properly self-hosting. Each stage is divided between
|
|
|
|
# 'host' artifacts and 'target' artifacts, where the stageN host
|
|
|
|
# compiler builds artifacts for 1 or more stageN target architectures.
|
|
|
|
# Once the stageN target compiler has been built for the host
|
|
|
|
# architecture it is promoted (copied) to a stageN+1 host artifact.
|
|
|
|
#
|
|
|
|
# The stage3 host compiler is a compiler that successfully builds
|
|
|
|
# itself and should (in theory) be bitwise identical to the stage2
|
|
|
|
# host compiler. The process is bootstrapped using a stage0 host
|
|
|
|
# compiler downloaded from a previous snapshot.
|
|
|
|
#
|
|
|
|
# At no time should stageN artifacts be interacting with artifacts
|
|
|
|
# from other stages. For consistency, we use the 'promotion' logic
|
|
|
|
# for all artifacts, even those that don't make sense on non-host
|
|
|
|
# architectures.
|
|
|
|
#
|
|
|
|
# The directory layout for a stage is intended to match the layout
|
|
|
|
# of the installed compiler, and looks like the following:
|
|
|
|
#
|
|
|
|
# stageN - this is the system root, corresponding to, e.g. /usr
|
|
|
|
# bin - binaries compiled for the host
|
|
|
|
# lib - libraries used by the host compiler
|
|
|
|
# rustc - rustc's own place to organize libraries
|
|
|
|
# $(target) - target-specific artifacts
|
|
|
|
# bin - binaries for target architectures
|
|
|
|
# lib - libraries for target architectures
|
|
|
|
#
|
|
|
|
# A note about host libraries:
|
|
|
|
#
|
|
|
|
# The only libraries that get promoted to stageN/lib are those needed
|
2011-11-03 17:53:49 +00:00
|
|
|
# by rustc. In general, rust programs, even those compiled for the
|
2011-10-02 03:12:08 +00:00
|
|
|
# host architecture will use libraries from the target
|
|
|
|
# directories. This gives rust some freedom to experiment with how
|
|
|
|
# libraries are managed and versioned without polluting the common
|
|
|
|
# areas of the filesystem.
|
|
|
|
#
|
|
|
|
# General rust binaries may stil live in the host bin directory; they
|
|
|
|
# will just link against the libraries in the target lib directory.
|
|
|
|
#
|
|
|
|
# Admittedly this is a little convoluted.
|
|
|
|
|
2011-11-21 21:11:40 +00:00
|
|
|
STAGES = 0 1 2 3
|
|
|
|
|
2011-03-16 16:17:32 +00:00
|
|
|
######################################################################
|
|
|
|
# Residual auto-configuration
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
include config.mk
|
|
|
|
|
2011-11-23 23:20:28 +00:00
|
|
|
ifdef IGNORE_MKFILES
|
|
|
|
MKFILE_DEPS :=
|
|
|
|
else
|
2011-11-29 20:42:05 +00:00
|
|
|
OUR_MKFILES := Makefile config.mk $(wildcard $(CFG_SRC_DIR)/mk/*.mk)
|
|
|
|
3RDPARTY_MKFILES := $(CFG_SRC_DIR)/src/libuv/Makefile \
|
|
|
|
$(wildcard $(CFG_SRC_DIR)/src/libuv/*.mk)
|
|
|
|
GEN_MKFILES := $(wildcard $(CFG_SRC_DIR)/mk/libuv/*/*/*) \
|
|
|
|
$(wildcard $(CFG_SRC_DIR)/mk/libuv/mac/src/libuv/*) \
|
|
|
|
$(wildcard $(CFG_SRC_DIR)/mk/libuv/mac/src/libuv/*) \
|
|
|
|
$(wildcard $(CFG_SRC_DIR)/mk/libuv/mac/src/libuv/*)
|
|
|
|
MKFILE_DEPS := $(OUR_MKFILES) $(3RDPARTY_MKFILES) $(GEN_MKFILES)
|
2011-11-23 23:20:28 +00:00
|
|
|
endif
|
|
|
|
|
2011-11-22 21:04:52 +00:00
|
|
|
NON_HOST_TRIPLES = $(filter-out $(CFG_HOST_TRIPLE),$(CFG_TARGET_TRIPLES))
|
|
|
|
|
2011-03-16 16:17:32 +00:00
|
|
|
ifneq ($(MAKE_RESTARTS),)
|
|
|
|
CFG_INFO := $(info cfg: make restarts: $(MAKE_RESTARTS))
|
|
|
|
endif
|
|
|
|
|
2011-09-21 18:24:59 +00:00
|
|
|
CFG_INFO := $(info cfg: shell host triple $(CFG_HOST_TRIPLE))
|
2011-11-22 21:04:52 +00:00
|
|
|
CFG_INFO := $(info cfg: non host triples $(NON_HOST_TRIPLES))
|
2011-03-16 16:17:32 +00:00
|
|
|
|
2011-04-08 22:44:41 +00:00
|
|
|
ifdef CFG_DISABLE_OPTIMIZE
|
2011-04-08 23:29:19 +00:00
|
|
|
$(info cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE))
|
2011-04-29 17:23:07 +00:00
|
|
|
CFG_RUSTC_FLAGS :=
|
2011-04-08 22:44:41 +00:00
|
|
|
else
|
2011-04-29 17:23:07 +00:00
|
|
|
CFG_RUSTC_FLAGS := -O
|
2011-04-08 22:44:41 +00:00
|
|
|
endif
|
2011-03-18 06:51:45 +00:00
|
|
|
|
2011-04-25 21:20:28 +00:00
|
|
|
ifdef SAVE_TEMPS
|
2011-04-26 18:32:08 +00:00
|
|
|
CFG_RUSTC_FLAGS += --save-temps
|
2011-04-25 21:20:28 +00:00
|
|
|
endif
|
2011-04-29 18:55:32 +00:00
|
|
|
ifdef TIME_PASSES
|
|
|
|
CFG_RUSTC_FLAGS += --time-passes
|
|
|
|
endif
|
2011-06-19 00:26:41 +00:00
|
|
|
ifdef TIME_LLVM_PASSES
|
|
|
|
CFG_RUSTC_FLAGS += --time-llvm-passes
|
|
|
|
endif
|
2011-05-11 00:48:49 +00:00
|
|
|
ifdef DEBUG
|
|
|
|
CFG_RUSTC_FLAGS += -g
|
|
|
|
endif
|
2011-04-25 21:20:28 +00:00
|
|
|
|
2011-05-01 20:18:52 +00:00
|
|
|
# platform-specific auto-configuration
|
|
|
|
include $(CFG_SRC_DIR)/mk/platform.mk
|
2011-03-18 06:51:45 +00:00
|
|
|
|
2011-05-14 03:20:34 +00:00
|
|
|
# Run the stage1/2 compilers under valgrind
|
|
|
|
ifdef VALGRIND_COMPILE
|
|
|
|
CFG_VALGRIND_COMPILE :=$(CFG_VALGRIND)
|
|
|
|
else
|
|
|
|
CFG_VALGRIND_COMPILE :=
|
|
|
|
endif
|
|
|
|
|
2011-03-18 06:51:45 +00:00
|
|
|
CFG_RUNTIME :=$(call CFG_LIB_NAME,rustrt)
|
2011-03-22 06:06:42 +00:00
|
|
|
CFG_RUSTLLVM :=$(call CFG_LIB_NAME,rustllvm)
|
2011-12-06 00:46:37 +00:00
|
|
|
CFG_CORELIB :=$(call CFG_LIB_NAME,core)
|
2011-10-30 14:04:32 +00:00
|
|
|
CFG_STDLIB :=$(call CFG_LIB_NAME,ruststd)
|
2011-07-01 06:16:01 +00:00
|
|
|
CFG_LIBRUSTC :=$(call CFG_LIB_NAME,rustc)
|
2011-03-18 06:51:45 +00:00
|
|
|
|
2011-05-06 18:21:51 +00:00
|
|
|
# version-string calculation
|
|
|
|
CFG_GIT_DIR := $(CFG_SRC_DIR).git
|
2011-06-25 19:23:27 +00:00
|
|
|
CFG_VERSION = prerelease
|
2011-06-13 21:45:26 +00:00
|
|
|
ifneq ($(wildcard $(CFG_GIT)),)
|
2011-05-06 18:21:51 +00:00
|
|
|
ifneq ($(wildcard $(CFG_GIT_DIR)),)
|
|
|
|
CFG_VERSION += $(shell git --git-dir=$(CFG_GIT_DIR) log -1 \
|
|
|
|
--pretty=format:'(%h %ci)')
|
|
|
|
endif
|
2011-06-13 21:45:26 +00:00
|
|
|
endif
|
2011-05-06 18:21:51 +00:00
|
|
|
|
2011-03-30 04:45:09 +00:00
|
|
|
ifdef CFG_DISABLE_VALGRIND
|
|
|
|
$(info cfg: disabling valgrind (CFG_DISABLE_VALGRIND))
|
2011-03-18 06:51:45 +00:00
|
|
|
CFG_VALGRIND :=
|
|
|
|
endif
|
2011-05-06 01:11:40 +00:00
|
|
|
ifdef CFG_BAD_VALGRIND
|
|
|
|
$(info cfg: disabling valgrind due to its unreliability on this platform)
|
|
|
|
CFG_VALGRIND :=
|
|
|
|
endif
|
2011-03-18 06:51:45 +00:00
|
|
|
|
2011-03-23 17:37:35 +00:00
|
|
|
DOCS :=
|
|
|
|
ifeq ($(CFG_MAKEINFO),)
|
|
|
|
$(info cfg: no makeinfo found, omitting doc/rust.html)
|
|
|
|
else
|
|
|
|
DOCS += doc/rust.html
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CFG_TEXI2PDF),)
|
|
|
|
$(info cfg: no texi2pdf found, omitting doc/rust.pdf)
|
|
|
|
else
|
2011-03-23 20:31:51 +00:00
|
|
|
ifeq ($(CFG_TEX),)
|
|
|
|
$(info cfg: no tex found, omitting doc/rust.pdf)
|
|
|
|
else
|
|
|
|
DOCS += doc/rust.pdf
|
|
|
|
endif
|
2011-03-23 17:37:35 +00:00
|
|
|
endif
|
|
|
|
|
2011-10-27 21:59:22 +00:00
|
|
|
ifeq ($(CFG_NATURALDOCS),)
|
2011-12-06 00:46:37 +00:00
|
|
|
$(info cfg: no naturaldocs found, omitting library doc build)
|
2011-10-27 21:59:22 +00:00
|
|
|
else
|
2011-12-06 00:46:37 +00:00
|
|
|
DOCS += doc/core/index.html doc/std/index.html
|
2011-10-27 21:59:22 +00:00
|
|
|
endif
|
|
|
|
|
2011-03-30 04:45:09 +00:00
|
|
|
ifdef CFG_DISABLE_DOCS
|
|
|
|
$(info cfg: disabling doc build (CFG_DISABLE_DOCS))
|
|
|
|
DOCS :=
|
|
|
|
endif
|
2011-03-23 17:37:35 +00:00
|
|
|
|
2011-03-18 06:51:45 +00:00
|
|
|
######################################################################
|
|
|
|
# Target-and-rule "utility variables"
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
ifdef VERBOSE
|
|
|
|
Q :=
|
|
|
|
E =
|
|
|
|
else
|
|
|
|
Q := @
|
|
|
|
E = echo $(1)
|
2011-03-16 16:17:32 +00:00
|
|
|
endif
|
|
|
|
|
2011-03-18 06:51:45 +00:00
|
|
|
S := $(CFG_SRC_DIR)
|
|
|
|
X := $(CFG_EXE_SUFFIX)
|
|
|
|
|
|
|
|
# Look in doc and src dirs.
|
|
|
|
VPATH := $(S)doc $(S)src
|
|
|
|
|
|
|
|
# "Source" files we generate in builddir along the way.
|
2011-05-01 20:18:52 +00:00
|
|
|
GENERATED :=
|
2011-03-18 06:51:45 +00:00
|
|
|
|
|
|
|
# Delete the built-in rules.
|
|
|
|
.SUFFIXES:
|
|
|
|
%:: %,v
|
|
|
|
%:: RCS/%,v
|
|
|
|
%:: RCS/%
|
|
|
|
%:: s.%
|
|
|
|
%:: SCCS/s.%
|
2011-03-16 16:17:32 +00:00
|
|
|
|
2011-12-06 00:46:37 +00:00
|
|
|
######################################################################
|
|
|
|
# Core library variables
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
CORELIB_CRATE := $(S)src/libcore/core.rc
|
|
|
|
CORELIB_INPUTS := $(wildcard $(addprefix $(S)src/libcore/, \
|
|
|
|
core.rc *.rs */*.rs))
|
|
|
|
|
2011-03-18 06:51:45 +00:00
|
|
|
######################################################################
|
|
|
|
# Standard library variables
|
|
|
|
######################################################################
|
|
|
|
|
2011-12-06 00:46:37 +00:00
|
|
|
STDLIB_CRATE := $(S)src/libstd/std.rc
|
|
|
|
STDLIB_INPUTS := $(wildcard $(addprefix $(S)src/libstd/, \
|
|
|
|
std.rc *.rs */*.rs))
|
2011-03-16 16:17:32 +00:00
|
|
|
|
|
|
|
######################################################################
|
2011-03-18 06:51:45 +00:00
|
|
|
# rustc crate variables
|
2011-03-16 16:17:32 +00:00
|
|
|
######################################################################
|
|
|
|
|
2011-03-21 20:42:29 +00:00
|
|
|
COMPILER_CRATE := $(S)src/comp/rustc.rc
|
2011-03-19 00:30:06 +00:00
|
|
|
COMPILER_INPUTS := $(wildcard $(addprefix $(S)src/comp/, \
|
2011-05-18 22:34:52 +00:00
|
|
|
rustc.rc *.rs */*.rs */*/*.rs))
|
2011-03-18 06:51:45 +00:00
|
|
|
|
2011-11-02 00:09:44 +00:00
|
|
|
######################################################################
|
|
|
|
# LLVM macros
|
|
|
|
######################################################################
|
|
|
|
|
2011-11-27 06:38:36 +00:00
|
|
|
# FIXME: x86-ism
|
|
|
|
LLVM_COMPONENTS=x86 ipo bitreader bitwriter linker asmparser
|
|
|
|
|
2011-11-02 23:21:17 +00:00
|
|
|
define DEF_LLVM_VARS
|
|
|
|
# The configure script defines these variables with the target triples
|
|
|
|
# separated by Z. This defines new ones with the expected format.
|
|
|
|
CFG_LLVM_BUILD_DIR_$(1):=$$(CFG_LLVM_BUILD_DIR_$(subst -,_,$(1)))
|
|
|
|
CFG_LLVM_INST_DIR_$(1):=$$(CFG_LLVM_INST_DIR_$(subst -,_,$(1)))
|
|
|
|
|
2011-11-02 22:10:19 +00:00
|
|
|
# Any rules that depend on LLVM should depend on LLVM_CONFIG
|
2011-11-02 23:21:17 +00:00
|
|
|
LLVM_CONFIG_$(1):=$$(CFG_LLVM_INST_DIR_$(1))/bin/llvm-config
|
|
|
|
LLVM_VERSION_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --version)
|
|
|
|
LLVM_BINDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --bindir)
|
|
|
|
LLVM_INCDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --includedir)
|
|
|
|
LLVM_LIBDIR_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libdir)
|
2011-11-27 06:38:36 +00:00
|
|
|
LLVM_LIBS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --libs $$(LLVM_COMPONENTS))
|
2011-11-02 23:21:17 +00:00
|
|
|
LLVM_LDFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --ldflags)
|
|
|
|
LLVM_CXXFLAGS_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --cxxflags)
|
|
|
|
LLVM_HOST_TRIPLE_$(1)=$$(shell "$$(LLVM_CONFIG_$(1))" --host-target)
|
|
|
|
|
|
|
|
LLVM_AS_$(1)=$$(LLVM_BINDIR_$(1))/llvm-as$$(X)
|
|
|
|
LLC_$(1)=$$(LLVM_BINDIR_$(1))/llc$$(X)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach target,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(call DEF_LLVM_VARS,$(target))))
|
|
|
|
|
2011-05-03 06:37:52 +00:00
|
|
|
######################################################################
|
|
|
|
# Exports for sub-utilities
|
|
|
|
######################################################################
|
|
|
|
|
2011-10-02 03:12:08 +00:00
|
|
|
# Note that any variable that re-configure should pick up needs to be
|
|
|
|
# exported
|
|
|
|
|
2011-05-03 06:37:52 +00:00
|
|
|
export CFG_SRC_DIR
|
2011-07-23 19:26:47 +00:00
|
|
|
export CFG_BUILD_DIR
|
2011-05-06 18:21:51 +00:00
|
|
|
export CFG_VERSION
|
2011-09-29 19:21:58 +00:00
|
|
|
export CFG_HOST_TRIPLE
|
2011-05-18 19:00:26 +00:00
|
|
|
export CFG_LLVM_ROOT
|
2011-06-28 18:18:25 +00:00
|
|
|
export CFG_ENABLE_MINGW_CROSS
|
2011-10-02 03:12:08 +00:00
|
|
|
export CFG_PREFIX
|
2011-05-03 06:37:52 +00:00
|
|
|
|
2011-05-05 01:28:30 +00:00
|
|
|
######################################################################
|
|
|
|
# Subprograms
|
|
|
|
######################################################################
|
|
|
|
|
2011-03-18 06:51:45 +00:00
|
|
|
######################################################################
|
2011-07-15 23:12:41 +00:00
|
|
|
# Per-stage targets and runner
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
define SREQ
|
2011-11-21 21:11:40 +00:00
|
|
|
# $(1) is the stage number
|
|
|
|
# $(2) is the target triple
|
2011-11-30 03:28:15 +00:00
|
|
|
# $(3) is the host triple
|
2011-09-30 19:08:51 +00:00
|
|
|
|
2011-09-30 19:24:28 +00:00
|
|
|
# Destinations of artifacts for the host compiler
|
2011-11-21 21:11:40 +00:00
|
|
|
HROOT$(1)_H_$(3) = $(3)/stage$(1)
|
|
|
|
HBIN$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/bin
|
|
|
|
HLIB$(1)_H_$(3) = $$(HROOT$(1)_H_$(3))/lib
|
2011-09-30 19:24:28 +00:00
|
|
|
|
2011-10-01 02:00:19 +00:00
|
|
|
# Destinations of artifacts for target architectures
|
2011-11-21 21:11:40 +00:00
|
|
|
TROOT$(1)_T_$(2)_H_$(3) = $$(HLIB$(1)_H_$(3))/rustc/$(2)
|
|
|
|
TBIN$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/bin
|
|
|
|
TLIB$(1)_T_$(2)_H_$(3) = $$(TROOT$(1)_T_$(2)_H_$(3))/lib
|
2011-09-30 19:08:51 +00:00
|
|
|
|
2011-12-06 00:46:37 +00:00
|
|
|
# The name of the core and standard libraries used by rustc
|
2011-09-30 23:11:47 +00:00
|
|
|
ifdef CFG_DISABLE_SHAREDSTD
|
2011-12-06 00:46:37 +00:00
|
|
|
HCORELIB_DEFAULT$(1)_H_$(3) = \
|
|
|
|
$$(HLIB$(1)_H_$(3))/libcore.rlib
|
|
|
|
TCORELIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/libcore.rlib
|
2011-11-21 21:11:40 +00:00
|
|
|
HSTDLIB_DEFAULT$(1)_H_$(3) = \
|
|
|
|
$$(HLIB$(1)_H_$(3))/libstd.rlib
|
|
|
|
TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/libstd.rlib
|
2011-09-30 23:11:47 +00:00
|
|
|
else
|
2011-12-06 00:46:37 +00:00
|
|
|
HCORELIB_DEFAULT$(1)_H_$(3) = \
|
|
|
|
$$(HLIB$(1)_H_$(3))/$(CFG_CORELIB)
|
|
|
|
TCORELIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_CORELIB)
|
2011-11-21 21:11:40 +00:00
|
|
|
HSTDLIB_DEFAULT$(1)_H_$(3) = \
|
|
|
|
$$(HLIB$(1)_H_$(3))/$(CFG_STDLIB)
|
|
|
|
TSTDLIB_DEFAULT$(1)_T_$(2)_H_$(3) = \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/$(CFG_STDLIB)
|
2011-09-30 23:11:47 +00:00
|
|
|
endif
|
|
|
|
|
2011-10-02 03:12:08 +00:00
|
|
|
# Preqrequisites for using the stageN compiler
|
2011-11-21 21:11:40 +00:00
|
|
|
HSREQ$(1)_H_$(3) = \
|
|
|
|
$$(HBIN$(1)_H_$(3))/rustc$$(X) \
|
|
|
|
$$(HLIB$(1)_H_$(3))/$$(CFG_RUNTIME) \
|
|
|
|
$$(HLIB$(1)_H_$(3))/$$(CFG_RUSTLLVM) \
|
2011-12-06 00:46:37 +00:00
|
|
|
$$(HCORELIB_DEFAULT$(1)_H_$(3)) \
|
2011-11-21 21:11:40 +00:00
|
|
|
$$(HSTDLIB_DEFAULT$(1)_H_$(3)) \
|
2011-11-29 20:42:05 +00:00
|
|
|
$$(MKFILE_DEPS)
|
2011-10-02 03:12:08 +00:00
|
|
|
|
|
|
|
# Prerequisites for using the stageN compiler to build target artifacts
|
2011-11-21 21:11:40 +00:00
|
|
|
TSREQ$(1)_T_$(2)_H_$(3) = \
|
|
|
|
$$(HSREQ$(1)_H_$(3)) \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_RUNTIME) \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/intrinsics.bc \
|
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/libmorestack.a
|
2011-10-02 03:12:08 +00:00
|
|
|
|
|
|
|
# Prerequisites for complete stageN targets
|
2011-11-21 21:11:40 +00:00
|
|
|
SREQ$(1)_T_$(2)_H_$(3) = \
|
|
|
|
$$(TSREQ$(1)_T_$(2)_H_$(3)) \
|
2011-12-06 00:46:37 +00:00
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_CORELIB) \
|
2011-11-21 21:11:40 +00:00
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_STDLIB)
|
2011-07-15 23:12:41 +00:00
|
|
|
|
2011-08-26 18:11:49 +00:00
|
|
|
ifeq ($(1),0)
|
|
|
|
# Don't run the the stage0 compiler under valgrind - that ship has sailed
|
|
|
|
CFG_VALGRIND_COMPILE$(1) =
|
|
|
|
else
|
|
|
|
CFG_VALGRIND_COMPILE$(1) = $$(CFG_VALGRIND_COMPILE)
|
|
|
|
endif
|
|
|
|
|
2011-11-21 21:11:40 +00:00
|
|
|
STAGE$(1)_T_$(2)_H_$(3) := \
|
|
|
|
$$(Q)$$(call CFG_RUN_TARG,$(1), \
|
|
|
|
$$(CFG_VALGRIND_COMPILE$(1)) \
|
|
|
|
$$(HBIN$(1)_H_$(3))/rustc$$(X) \
|
|
|
|
$$(CFG_RUSTC_FLAGS) --target=$(2))
|
2011-09-29 19:06:37 +00:00
|
|
|
|
2011-11-21 21:11:40 +00:00
|
|
|
PERF_STAGE$(1)_T_$(2)_H_$(3) := \
|
|
|
|
$$(Q)$$(call CFG_RUN_TARG,$(1), \
|
|
|
|
$$(CFG_PERF_TOOL) \
|
|
|
|
$$(HBIN$(1)_H_$(3))/rustc$$(X) \
|
|
|
|
$$(CFG_RUSTC_FLAGS) --target=$(2))
|
2011-09-29 19:06:37 +00:00
|
|
|
|
2011-07-15 23:12:41 +00:00
|
|
|
endef
|
|
|
|
|
2011-11-21 21:11:40 +00:00
|
|
|
$(foreach build,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(foreach target,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(foreach stage,$(STAGES), \
|
|
|
|
$(eval $(call SREQ,$(stage),$(target),$(build))))))))
|
2011-07-15 23:12:41 +00:00
|
|
|
|
2011-12-03 00:04:27 +00:00
|
|
|
######################################################################
|
|
|
|
# rustc-H-targets
|
|
|
|
#
|
|
|
|
# Builds a functional Rustc for the given host.
|
|
|
|
######################################################################
|
|
|
|
|
2011-12-06 22:02:03 +00:00
|
|
|
define DEF_RUSTC_STAGE_TARGET
|
2011-12-03 00:04:27 +00:00
|
|
|
# $(1) == architecture
|
2011-12-06 22:02:03 +00:00
|
|
|
# $(2) == stage
|
2011-12-03 00:04:27 +00:00
|
|
|
|
2011-12-06 22:02:03 +00:00
|
|
|
rustc-stage$(2)-H-$(1): \
|
2011-12-03 00:04:27 +00:00
|
|
|
$$(foreach target,$$(CFG_TARGET_TRIPLES), \
|
2011-12-06 22:02:03 +00:00
|
|
|
$$(SREQ$(2)_T_$$(target)_H_$(1)))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach host,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(foreach stage,1 2 3, \
|
|
|
|
$(eval $(call DEF_RUSTC_STAGE_TARGET,$(host),$(stage))))))
|
|
|
|
|
|
|
|
define DEF_RUSTC_TARGET
|
|
|
|
# $(1) == architecture
|
|
|
|
|
|
|
|
rustc-H-$(1): rustc-stage3-H-$(1)
|
2011-12-03 00:04:27 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach host,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(call DEF_RUSTC_TARGET,$(host))))
|
|
|
|
|
2011-12-03 00:11:35 +00:00
|
|
|
rustc-H-all: $(foreach host,$(CFG_TARGET_TRIPLES),rustc-H-$(host))
|
2011-12-03 00:04:27 +00:00
|
|
|
|
2011-07-15 23:12:41 +00:00
|
|
|
######################################################################
|
|
|
|
# Entrypoint rule
|
2011-03-18 06:51:45 +00:00
|
|
|
######################################################################
|
2011-03-16 16:17:32 +00:00
|
|
|
|
2011-05-14 00:00:43 +00:00
|
|
|
ifneq ($(CFG_IN_TRANSITION),)
|
|
|
|
|
2011-05-16 22:14:58 +00:00
|
|
|
CFG_INFO := $(info cfg:)
|
2011-05-14 00:00:43 +00:00
|
|
|
CFG_INFO := $(info cfg: *** compiler is in snapshot transition ***)
|
|
|
|
CFG_INFO := $(info cfg: *** stage2 and later will not be built ***)
|
2011-05-16 22:14:58 +00:00
|
|
|
CFG_INFO := $(info cfg:)
|
2011-05-14 00:00:43 +00:00
|
|
|
|
2011-10-02 03:12:08 +00:00
|
|
|
all: $(SREQ1$(CFG_HOST_TRIPLE)) $(GENERATED) $(DOCS)
|
2011-09-30 23:15:02 +00:00
|
|
|
|
2011-05-14 00:00:43 +00:00
|
|
|
else
|
2011-09-30 03:27:28 +00:00
|
|
|
|
2011-11-21 21:11:40 +00:00
|
|
|
TSREQS := \
|
|
|
|
$(foreach target,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(SREQ3_T_$(target)_H_$(CFG_HOST_TRIPLE)))
|
|
|
|
FUZZ := $(HBIN3_H_$(CFG_HOST_TRIPLE))/fuzzer$(X)
|
2011-12-01 19:31:29 +00:00
|
|
|
CARGO := $(HBIN3_H_$(CFG_HOST_TRIPLE))/cargo$(X)
|
2011-10-02 03:12:08 +00:00
|
|
|
|
2011-12-03 00:04:27 +00:00
|
|
|
all: rustc-H-$(CFG_HOST_TRIPLE) $(GENERATED) $(DOCS) $(FUZZ) $(CARGO)
|
2011-09-30 03:27:28 +00:00
|
|
|
|
2011-05-14 00:00:43 +00:00
|
|
|
endif
|
|
|
|
|
2011-03-25 17:29:45 +00:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Re-configuration
|
|
|
|
######################################################################
|
|
|
|
|
2011-11-29 01:50:23 +00:00
|
|
|
ifndef CFG_DISABLE_MANAGE_SUBMODULES
|
2011-11-01 01:19:40 +00:00
|
|
|
# This is a pretty expensive operation but I don't see any way to avoid it
|
2011-11-26 04:00:48 +00:00
|
|
|
NEED_GIT_RECONFIG=$(shell cd "$(CFG_SRC_DIR)" && "$(CFG_GIT)" submodule status | grep -c '^\(+\|-\)')
|
2011-11-29 01:50:23 +00:00
|
|
|
else
|
|
|
|
NEED_GIT_RECONFIG=0
|
|
|
|
endif
|
2011-11-01 01:19:40 +00:00
|
|
|
|
|
|
|
ifeq ($(NEED_GIT_RECONFIG),0)
|
|
|
|
else
|
|
|
|
# If the submodules have changed then always execute config.mk
|
|
|
|
.PHONY: config.mk
|
|
|
|
endif
|
|
|
|
|
2011-05-14 00:00:43 +00:00
|
|
|
config.mk: $(S)configure $(S)Makefile.in $(S)src/snapshots.txt
|
2011-03-25 17:29:45 +00:00
|
|
|
@$(call E, cfg: reconfiguring)
|
2011-06-30 20:41:20 +00:00
|
|
|
$(Q)$(S)configure $(CFG_CONFIGURE_ARGS)
|
2011-03-25 17:29:45 +00:00
|
|
|
|
|
|
|
|
2011-03-21 18:23:19 +00:00
|
|
|
######################################################################
|
2011-06-25 19:23:27 +00:00
|
|
|
# Primary-target makefiles
|
2011-03-21 18:23:19 +00:00
|
|
|
######################################################################
|
|
|
|
|
2011-10-02 03:12:08 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/target.mk
|
|
|
|
include $(CFG_SRC_DIR)/mk/host.mk
|
2011-07-21 18:58:01 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/stage0.mk
|
2011-05-01 20:18:52 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/rt.mk
|
|
|
|
include $(CFG_SRC_DIR)/mk/rustllvm.mk
|
|
|
|
include $(CFG_SRC_DIR)/mk/autodep.mk
|
2011-10-03 00:28:59 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/tools.mk
|
2011-06-25 19:23:27 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/docs.mk
|
2011-11-01 00:34:31 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/llvm.mk
|
2011-06-25 19:23:27 +00:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Secondary makefiles, conditionalized for speed
|
|
|
|
######################################################################
|
|
|
|
|
2011-06-30 20:41:20 +00:00
|
|
|
ifneq ($(strip $(findstring dist,$(MAKECMDGOALS)) \
|
|
|
|
$(findstring check,$(MAKECMDGOALS)) \
|
|
|
|
$(findstring test,$(MAKECMDGOALS)) \
|
2011-07-13 22:44:09 +00:00
|
|
|
$(findstring tidy,$(MAKECMDGOALS)) \
|
2011-06-30 20:41:20 +00:00
|
|
|
$(findstring clean,$(MAKECMDGOALS))),)
|
|
|
|
CFG_INFO := $(info cfg: including dist rules)
|
2011-06-25 19:23:27 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/dist.mk
|
|
|
|
endif
|
|
|
|
|
2011-06-30 20:41:20 +00:00
|
|
|
ifneq ($(strip $(findstring snap,$(MAKECMDGOALS)) \
|
|
|
|
$(findstring clean,$(MAKECMDGOALS))),)
|
|
|
|
CFG_INFO := $(info cfg: including snap rules)
|
2011-06-25 19:23:27 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/snap.mk
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(findstring reformat,$(MAKECMDGOALS)),)
|
2011-06-30 20:41:20 +00:00
|
|
|
CFG_INFO := $(info cfg: including reformat rules)
|
2011-06-25 19:23:27 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/pp.mk
|
|
|
|
endif
|
|
|
|
|
2011-06-30 20:41:20 +00:00
|
|
|
ifneq ($(strip $(findstring check,$(MAKECMDGOALS)) \
|
|
|
|
$(findstring test,$(MAKECMDGOALS)) \
|
2011-09-13 22:06:21 +00:00
|
|
|
$(findstring perf,$(MAKECMDGOALS)) \
|
2011-06-30 20:41:20 +00:00
|
|
|
$(findstring tidy,$(MAKECMDGOALS))),)
|
|
|
|
CFG_INFO := $(info cfg: including test rules)
|
2011-06-25 19:23:27 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/tests.mk
|
|
|
|
endif
|
|
|
|
|
2011-09-13 22:06:21 +00:00
|
|
|
ifneq ($(findstring perf,$(MAKECMDGOALS)),)
|
|
|
|
CFG_INFO := $(info cfg: including perf rules)
|
|
|
|
include $(CFG_SRC_DIR)/mk/perf.mk
|
|
|
|
endif
|
|
|
|
|
2011-06-25 19:23:27 +00:00
|
|
|
ifneq ($(findstring clean,$(MAKECMDGOALS)),)
|
2011-06-30 20:41:20 +00:00
|
|
|
CFG_INFO := $(info cfg: including clean rules)
|
2011-06-25 19:23:27 +00:00
|
|
|
include $(CFG_SRC_DIR)/mk/clean.mk
|
2011-07-21 18:58:01 +00:00
|
|
|
endif
|
2011-10-01 02:00:19 +00:00
|
|
|
|
|
|
|
ifneq ($(findstring install,$(MAKECMDGOALS)),)
|
|
|
|
CFG_INFO := $(info cfg: including install rules)
|
|
|
|
include $(CFG_SRC_DIR)/mk/install.mk
|
2011-10-12 19:10:21 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
|
|
|
|
$(findstring TAGS.vi,$(MAKECMDGOALS))),)
|
|
|
|
CFG_INFO := $(info cfg: including ctags rules)
|
|
|
|
include $(CFG_SRC_DIR)/mk/ctags.mk
|
|
|
|
endif
|