]> git.lizzy.rs Git - rust.git/blob - mk/platform.mk
Rollup merge of #31348 - alexcrichton:shuffle-tiers, r=steveklabnik
[rust.git] / mk / platform.mk
1 # Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 # file at the top-level directory of this distribution and at
3 # http://rust-lang.org/COPYRIGHT.
4 #
5 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 # option. This file may not be copied, modified, or distributed
9 # except according to those terms.
10
11
12 # Create variables HOST_<triple> containing the host part
13 # of each target triple.  For example, the triple i686-darwin-macos
14 # would create a variable HOST_i686-darwin-macos with the value
15 # i386.
16 define DEF_HOST_VAR
17   HOST_$(1) = $(patsubst i%86,i386,$(word 1,$(subst -, ,$(1))))
18 endef
19 $(foreach t,$(CFG_TARGET),$(eval $(call DEF_HOST_VAR,$(t))))
20 $(foreach t,$(CFG_TARGET),$(info cfg: host for $(t) is $(HOST_$(t))))
21
22 # Ditto for OSTYPE
23 define DEF_OSTYPE_VAR
24   OSTYPE_$(1) = $(subst $(firstword $(subst -, ,$(1)))-,,$(1))
25 endef
26 $(foreach t,$(CFG_TARGET),$(eval $(call DEF_OSTYPE_VAR,$(t))))
27 $(foreach t,$(CFG_TARGET),$(info cfg: os for $(t) is $(OSTYPE_$(t))))
28
29 # On Darwin, we need to run dsymutil so the debugging information ends
30 # up in the right place.  On other platforms, it automatically gets
31 # embedded into the executable, so use a no-op command.
32 CFG_DSYMUTIL := true
33
34 # Hack: not sure how to test if a file exists in make other than this
35 OS_SUPP = $(patsubst %,--suppressions=%, \
36       $(wildcard $(CFG_SRC_DIR)src/etc/$(CFG_OSTYPE).supp*))
37
38 ifdef CFG_DISABLE_OPTIMIZE_CXX
39   $(info cfg: disabling C++ optimization (CFG_DISABLE_OPTIMIZE_CXX))
40   CFG_GCCISH_CFLAGS += -O0
41 else
42   CFG_GCCISH_CFLAGS += -O2
43 endif
44
45 # The soname thing is for supporting a statically linked jemalloc.
46 # see https://blog.mozilla.org/jseward/2012/06/05/valgrind-now-supports-jemalloc-builds-directly/
47 ifdef CFG_VALGRIND
48   CFG_VALGRIND += --error-exitcode=100 \
49                   --fair-sched=try \
50                   --quiet \
51                   --soname-synonyms=somalloc=NONE \
52                   --suppressions=$(CFG_SRC_DIR)src/etc/x86.supp \
53                   $(OS_SUPP)
54   ifdef CFG_ENABLE_HELGRIND
55     CFG_VALGRIND += --tool=helgrind
56   else
57     CFG_VALGRIND += --tool=memcheck \
58                     --leak-check=full
59   endif
60 endif
61
62 # If we actually want to run Valgrind on a given platform, set this variable
63 define DEF_GOOD_VALGRIND
64   ifeq ($(OSTYPE_$(1)),unknown-linux-gnu)
65     GOOD_VALGRIND_$(1) = 1
66   endif
67   ifneq (,$(filter $(OSTYPE_$(1)),apple-darwin freebsd))
68     ifeq ($(HOST_$(1)),x86_64)
69       GOOD_VALGRIND_$(1) = 1
70     endif
71   endif
72   ifdef GOOD_VALGRIND_$(t)
73     $$(info cfg: have good valgrind for $(t))
74   else
75     $$(info cfg: no good valgrind for $(t))
76   endif
77 endef
78 $(foreach t,$(CFG_TARGET),$(eval $(call DEF_GOOD_VALGRIND,$(t))))
79
80 AR := ar
81
82 define SET_FROM_CFG
83   ifdef CFG_$(1)
84     ifeq ($(origin $(1)),undefined)
85       $$(info cfg: using $(1)=$$(CFG_$(1)) (CFG_$(1)))
86       $(1)=$$(CFG_$(1))
87     else ifeq ($(origin $(1)),default)
88       $$(info cfg: using $(1)=$$(CFG_$(1)) (CFG_$(1)))
89       $(1)=$$(CFG_$(1))
90     endif
91   endif
92 endef
93
94 $(foreach cvar,CC CXX CPP CFLAGS CXXFLAGS CPPFLAGS, \
95   $(eval $(call SET_FROM_CFG,$(cvar))))
96
97 CFG_RLIB_GLOB=lib$(1)-*.rlib
98
99 include $(wildcard $(CFG_SRC_DIR)mk/cfg/*.mk)
100
101 define ADD_INSTALLED_OBJECTS
102   INSTALLED_OBJECTS_$(1) += $$(CFG_INSTALLED_OBJECTS_$(1))
103   ifdef CFG_THIRD_PARTY_OBJECTS_$(1)
104     REQUIRED_OBJECTS_$(1) += $$(CFG_THIRD_PARTY_OBJECTS_$(1))
105   endif
106   INSTALLED_OBJECTS_$(1) += $$(call CFG_STATIC_LIB_NAME_$(1),compiler-rt)
107   REQUIRED_OBJECTS_$(1) += $$(call CFG_STATIC_LIB_NAME_$(1),compiler-rt)
108 endef
109
110 $(foreach target,$(CFG_TARGET), \
111   $(eval $(call ADD_INSTALLED_OBJECTS,$(target))))
112
113 define DEFINE_LINKER
114   ifndef LINK_$(1)
115     LINK_$(1) := $$(CC_$(1))
116   endif
117 endef
118
119 $(foreach target,$(CFG_TARGET), \
120   $(eval $(call DEFINE_LINKER,$(target))))
121
122 # The -Qunused-arguments sidesteps spurious warnings from clang
123 define FILTER_FLAGS
124   ifeq ($$(CFG_USING_CLANG),1)
125     ifneq ($(findstring clang,$$(shell $(CC_$(1)) -v)),)
126       CFG_GCCISH_CFLAGS_$(1) += -Qunused-arguments
127       CFG_GCCISH_CXXFLAGS_$(1) += -Qunused-arguments
128     endif
129   endif
130 endef
131
132 $(foreach target,$(CFG_TARGET), \
133   $(eval $(call FILTER_FLAGS,$(target))))
134
135 # Configure various macros to pass gcc or cl.exe style arguments
136 define CC_MACROS
137   CFG_CC_INCLUDE_$(1)=-I $$(1)
138   ifeq ($$(findstring msvc,$(1)),msvc)
139     CFG_CC_OUTPUT_$(1)=-Fo:$$(1)
140     CFG_CREATE_ARCHIVE_$(1)=$$(AR_$(1)) -OUT:$$(1)
141   else
142     CFG_CC_OUTPUT_$(1)=-o $$(1)
143     CFG_CREATE_ARCHIVE_$(1)=$$(AR_$(1)) crus $$(1)
144   endif
145 endef
146
147 $(foreach target,$(CFG_TARGET), \
148   $(eval $(call CC_MACROS,$(target))))
149
150
151 ifeq ($(CFG_CCACHE_CPP2),1)
152   CCACHE_CPP2=1
153   export CCACHE_CPP
154 endif
155
156 ifdef CFG_CCACHE_BASEDIR
157   CCACHE_BASEDIR=$(CFG_CCACHE_BASEDIR)
158   export CCACHE_BASEDIR
159 endif
160
161 FIND_COMPILER = $(word 1,$(1:ccache=))
162
163 define CFG_MAKE_TOOLCHAIN
164   # Prepend the tools with their prefix if cross compiling
165   ifneq ($(CFG_BUILD),$(1))
166     ifneq ($$(findstring msvc,$(1)),msvc)
167       CC_$(1)=$(CROSS_PREFIX_$(1))$(CC_$(1))
168       CXX_$(1)=$(CROSS_PREFIX_$(1))$(CXX_$(1))
169       CPP_$(1)=$(CROSS_PREFIX_$(1))$(CPP_$(1))
170       AR_$(1)=$(CROSS_PREFIX_$(1))$(AR_$(1))
171       LINK_$(1)=$(CROSS_PREFIX_$(1))$(LINK_$(1))
172       RUSTC_CROSS_FLAGS_$(1)=-C linker=$$(call FIND_COMPILER,$$(LINK_$(1))) \
173         -C ar=$$(call FIND_COMPILER,$$(AR_$(1))) $(RUSTC_CROSS_FLAGS_$(1))
174
175       RUSTC_FLAGS_$(1)=$$(RUSTC_CROSS_FLAGS_$(1)) $(RUSTC_FLAGS_$(1))
176     endif
177   endif
178
179   CFG_COMPILE_C_$(1) = $$(CC_$(1)) \
180         $$(CFLAGS) \
181         $$(CFG_GCCISH_CFLAGS) \
182         $$(CFG_GCCISH_CFLAGS_$(1)) \
183         -c $$(call CFG_CC_OUTPUT_$(1),$$(1)) $$(2)
184   CFG_LINK_C_$(1) = $$(CC_$(1)) \
185         $$(LDFLAGS) \
186         $$(CFG_GCCISH_LINK_FLAGS) -o $$(1) \
187         $$(CFG_GCCISH_LINK_FLAGS_$(1)) \
188         $$(CFG_GCCISH_DEF_FLAG_$(1))$$(3) $$(2) \
189         $$(call CFG_INSTALL_NAME_$(1),$$(4))
190   CFG_COMPILE_CXX_$(1) = $$(CXX_$(1)) \
191         $$(CXXFLAGS) \
192         $$(CFG_GCCISH_CFLAGS) \
193         $$(CFG_GCCISH_CXXFLAGS) \
194         $$(CFG_GCCISH_CFLAGS_$(1)) \
195         $$(CFG_GCCISH_CXXFLAGS_$(1)) \
196         -c $$(call CFG_CC_OUTPUT_$(1),$$(1)) $$(2)
197   CFG_LINK_CXX_$(1) = $$(CXX_$(1)) \
198         $$(LDFLAGS) \
199         $$(CFG_GCCISH_LINK_FLAGS) -o $$(1) \
200         $$(CFG_GCCISH_LINK_FLAGS_$(1)) \
201         $$(CFG_GCCISH_DEF_FLAG_$(1))$$(3) $$(2) \
202         $$(call CFG_INSTALL_NAME_$(1),$$(4))
203
204   ifeq ($$(findstring $(HOST_$(1)),arm aarch64 mips mipsel powerpc),)
205
206   # On Bitrig, we need the relocation model to be PIC for everything
207   ifeq (,$(filter $(OSTYPE_$(1)),bitrig))
208     LLVM_MC_RELOCATION_MODEL="pic"
209   else
210     LLVM_MC_RELOCATION_MODEL="default"
211   endif
212
213   # We're using llvm-mc as our assembler because it supports
214   # .cfi pseudo-ops on mac
215   CFG_ASSEMBLE_$(1)=$$(CPP_$(1)) -E $$(2) | \
216                     $$(LLVM_MC_$$(CFG_BUILD)) \
217                     -assemble \
218                     -relocation-model=$$(LLVM_MC_RELOCATION_MODEL) \
219                     -filetype=obj \
220                     -triple=$(1) \
221                     -o=$$(1)
222   else
223
224   # For the ARM, AARCH64, MIPS and POWER crosses, use the toolchain assembler
225   # FIXME: We should be able to use the LLVM assembler
226   CFG_ASSEMBLE_$(1)=$$(CC_$(1)) $$(CFG_GCCISH_CFLAGS_$(1)) \
227                    $$(2) -c -o $$(1)
228
229   endif
230
231 endef
232
233 $(foreach target,$(CFG_TARGET), \
234   $(eval $(call CFG_MAKE_TOOLCHAIN,$(target))))