]> git.lizzy.rs Git - rust.git/blob - mk/platform.mk
Unignore u128 test for stage 0,1
[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     endif
88     ifeq ($(origin $(1)),default)
89       $$(info cfg: using $(1)=$(CFG_$(1)) (CFG_$(1)))
90       $(1)=$(CFG_$(1))
91     endif
92   endif
93 endef
94
95 $(foreach cvar,CC CXX CPP CFLAGS CXXFLAGS CPPFLAGS, \
96   $(eval $(call SET_FROM_CFG,$(cvar))))
97
98 CFG_RLIB_GLOB=lib$(1)-*.rlib
99
100 include $(wildcard $(CFG_SRC_DIR)mk/cfg/*.mk)
101
102 define ADD_INSTALLED_OBJECTS
103   INSTALLED_OBJECTS_$(1) += $$(CFG_INSTALLED_OBJECTS_$(1))
104   REQUIRED_OBJECTS_$(1) += $$(CFG_THIRD_PARTY_OBJECTS_$(1))
105 endef
106
107 $(foreach target,$(CFG_TARGET), \
108   $(eval $(call ADD_INSTALLED_OBJECTS,$(target))))
109
110 define DEFINE_LINKER
111   ifndef LINK_$(1)
112     LINK_$(1) := $$(CC_$(1))
113   endif
114 endef
115
116 $(foreach target,$(CFG_TARGET), \
117   $(eval $(call DEFINE_LINKER,$(target))))
118
119 define ADD_JEMALLOC_DEP
120   ifndef CFG_DISABLE_JEMALLOC_$(1)
121     ifndef CFG_DISABLE_JEMALLOC
122       RUST_DEPS_std_T_$(1) += alloc_jemalloc
123       TARGET_CRATES_$(1) += alloc_jemalloc
124     endif
125   endif
126 endef
127
128 $(foreach target,$(CFG_TARGET), \
129   $(eval $(call ADD_JEMALLOC_DEP,$(target))))
130
131 # The -Qunused-arguments sidesteps spurious warnings from clang
132 define FILTER_FLAGS
133   ifeq ($$(CFG_USING_CLANG),1)
134     ifneq ($(findstring clang,$$(shell $(CC_$(1)) -v)),)
135       CFG_GCCISH_CFLAGS_$(1) += -Qunused-arguments
136       CFG_GCCISH_CXXFLAGS_$(1) += -Qunused-arguments
137     endif
138   endif
139 endef
140
141 $(foreach target,$(CFG_TARGET), \
142   $(eval $(call FILTER_FLAGS,$(target))))
143
144 # Configure various macros to pass gcc or cl.exe style arguments
145 define CC_MACROS
146   CFG_CC_INCLUDE_$(1)=-I $$(1)
147   ifeq ($$(findstring msvc,$(1)),msvc)
148     CFG_CC_OUTPUT_$(1)=-Fo:$$(1)
149     CFG_CREATE_ARCHIVE_$(1)='$$(AR_$(1))' -OUT:$$(1)
150   else
151     CFG_CC_OUTPUT_$(1)=-o $$(1)
152     CFG_CREATE_ARCHIVE_$(1)=$$(AR_$(1)) crus $$(1)
153   endif
154 endef
155
156 $(foreach target,$(CFG_TARGET), \
157   $(eval $(call CC_MACROS,$(target))))
158
159
160 ifeq ($(CFG_CCACHE_CPP2),1)
161   CCACHE_CPP2=1
162   export CCACHE_CPP
163 endif
164
165 ifdef CFG_CCACHE_BASEDIR
166   CCACHE_BASEDIR=$(CFG_CCACHE_BASEDIR)
167   export CCACHE_BASEDIR
168 endif
169
170 FIND_COMPILER = $(strip $(1:ccache=))
171
172 define CFG_MAKE_TOOLCHAIN
173   # Prepend the tools with their prefix if cross compiling
174   ifneq ($(CFG_BUILD),$(1))
175     ifneq ($$(findstring msvc,$(1)),msvc)
176        CC_$(1)=$(CROSS_PREFIX_$(1))$(CC_$(1))
177        CXX_$(1)=$(CROSS_PREFIX_$(1))$(CXX_$(1))
178        CPP_$(1)=$(CROSS_PREFIX_$(1))$(CPP_$(1))
179        AR_$(1)=$(CROSS_PREFIX_$(1))$(AR_$(1))
180        LINK_$(1)=$(CROSS_PREFIX_$(1))$(LINK_$(1))
181        RUSTC_CROSS_FLAGS_$(1)=-C linker=$$(call FIND_COMPILER,$$(LINK_$(1))) \
182            -C ar=$$(call FIND_COMPILER,$$(AR_$(1))) $(RUSTC_CROSS_FLAGS_$(1))
183
184        RUSTC_FLAGS_$(1)=$$(RUSTC_CROSS_FLAGS_$(1)) $(RUSTC_FLAGS_$(1))
185     endif
186   endif
187
188   CFG_COMPILE_C_$(1) = '$$(call FIND_COMPILER,$$(CC_$(1)))' \
189         $$(CFLAGS) \
190         $$(CFG_GCCISH_CFLAGS) \
191         $$(CFG_GCCISH_CFLAGS_$(1)) \
192         -c $$(call CFG_CC_OUTPUT_$(1),$$(1)) $$(2)
193   CFG_LINK_C_$(1) = $$(CC_$(1)) \
194         $$(LDFLAGS) \
195         $$(CFG_GCCISH_LINK_FLAGS) -o $$(1) \
196         $$(CFG_GCCISH_LINK_FLAGS_$(1)) \
197         $$(CFG_GCCISH_DEF_FLAG_$(1))$$(3) $$(2) \
198         $$(call CFG_INSTALL_NAME_$(1),$$(4))
199   CFG_COMPILE_CXX_$(1) = '$$(call FIND_COMPILER,$$(CXX_$(1)))' \
200         $$(CXXFLAGS) \
201         $$(CFG_GCCISH_CFLAGS) \
202         $$(CFG_GCCISH_CXXFLAGS) \
203         $$(CFG_GCCISH_CFLAGS_$(1)) \
204         $$(CFG_GCCISH_CXXFLAGS_$(1)) \
205         -c $$(call CFG_CC_OUTPUT_$(1),$$(1)) $$(2)
206   CFG_LINK_CXX_$(1) = $$(CXX_$(1)) \
207         $$(LDFLAGS) \
208         $$(CFG_GCCISH_LINK_FLAGS) -o $$(1) \
209         $$(CFG_GCCISH_LINK_FLAGS_$(1)) \
210         $$(CFG_GCCISH_DEF_FLAG_$(1))$$(3) $$(2) \
211         $$(call CFG_INSTALL_NAME_$(1),$$(4))
212
213   ifeq ($$(findstring $(HOST_$(1)),arm aarch64 mips mipsel powerpc),)
214
215   # On Bitrig, we need the relocation model to be PIC for everything
216   ifeq (,$(filter $(OSTYPE_$(1)),bitrig))
217     LLVM_MC_RELOCATION_MODEL="pic"
218   else
219     LLVM_MC_RELOCATION_MODEL="default"
220   endif
221
222   # LLVM changed this flag in 3.9
223   ifdef CFG_LLVM_MC_HAS_RELOCATION_MODEL
224     LLVM_MC_RELOC_FLAG := -relocation-model=$$(LLVM_MC_RELOCATION_MODEL)
225   else
226     LLVM_MC_RELOC_FLAG := -position-independent
227   endif
228
229   # We're using llvm-mc as our assembler because it supports
230   # .cfi pseudo-ops on mac
231   CFG_ASSEMBLE_$(1)=$$(CPP_$(1)) -E $$(2) | \
232                     $$(LLVM_MC_$$(CFG_BUILD)) \
233                     -assemble \
234                     $$(LLVM_MC_RELOC_FLAG) \
235                     -filetype=obj \
236                     -triple=$(1) \
237                     -o=$$(1)
238   else
239
240   # For the ARM, AARCH64, MIPS and POWER crosses, use the toolchain assembler
241   # FIXME: We should be able to use the LLVM assembler
242   CFG_ASSEMBLE_$(1)=$$(CC_$(1)) $$(CFG_GCCISH_CFLAGS_$(1)) \
243                    $$(2) -c -o $$(1)
244
245   endif
246
247 endef
248
249 $(foreach target,$(CFG_TARGET), \
250   $(eval $(call CFG_MAKE_TOOLCHAIN,$(target))))