]> git.lizzy.rs Git - rust.git/blob - Makefile.in
Auto merge of #31920 - jseyfried:fix_spurious_privacy_error, r=nikomatsakis
[rust.git] / Makefile.in
1 # Copyright 2012 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 # <help> \(^o^)/
12 #
13 # Greetings, adventurer! The Rust Build System is at your service.
14 #
15 # Whether you want a genuine copy of `rustc`, access to the latest and
16 # most authoritative Rust documentation, or even to investigate the
17 # most intimate workings of the compiler itself, you've come to the
18 # right place. Let's see what's on the menu.
19 #
20 # First, start with one of these build targets:
21 #
22 #   * all - The default. Build a complete, bootstrapped compiler.
23 #           `rustc` will be in `${target-triple}/stage2/bin/`. Run it
24 #           directly from the build directory if you like. This also
25 #           comes with docs in `doc/`.
26 #
27 #   * check - Run the complete test suite
28 #
29 #   * clean - Clean the build repository. It is advised to run this
30 #             command if you want to build Rust again, after an update
31 #             of the git repository.
32 #
33 #   * install - Install Rust. Note that installation is not necessary
34 #               to use the compiler.
35 #
36 #   * uninstall - Uninstall the binaries
37 #
38 # For tips on working with The Rust Build System, just:
39 #
40 #     run `make tips`
41 #
42 # Otherwise
43 #
44 #     run `make`
45 #
46 # </help>
47 #
48 # <tips>
49 #
50 # # The Rust Build System Tip Line
51 #
52 # There are a bazillion different targets you might want to build. Here
53 # are a few ideas.
54 #
55 #   * docs - Build gobs of HTML documentation and put it into `doc/`
56 #   * check-$(crate) - Test a crate, e.g. `check-std`
57 #   * check-ref - Run the language reference tests
58 #   * check-docs - Test the documentation examples
59 #   * check-stage$(stage)-$(crate) - Test a crate in a specific stage
60 #   * check-stage$(stage)-{rpass,rfail,cfail,rmake,...} - Run tests in src/test/
61 #   * check-stage1-T-$(target)-H-$(host) - Run cross-compiled-tests
62 #   * tidy-basic - show file / line stats
63 #   * tidy-errors - show the highest rustc error code
64 #   * tidy-features - show the status of language and lib features
65 #   * rustc-stage$(stage) - Only build up to a specific stage
66 #
67 # Then mix in some of these environment variables to harness the
68 # ultimate power of The Rust Build System.
69 #
70 #   * `VERBOSE=1` - Print all commands. Use this to see what's going on.
71 #   * `RUSTFLAGS=...` - Add compiler flags to all `rustc` invocations
72 #   * `JEMALLOC_FLAGS=...` - Pass flags to jemalloc's configure script
73 #
74 #   * `TESTNAME=...` - Specify the name of tests to run
75 #   * `CHECK_IGNORED=1` - Run normally-ignored tests
76 #   * `PLEASE_BENCH=1` - Run crate benchmarks (enable `--bench` flag)
77 #
78 #   * `CFG_ENABLE_VALGRIND=1` - Run tests under valgrind
79 #   * `VALGRIND_COMPILE=1` - Run the compiler itself under valgrind
80 #                            (requires `CFG_ENABLE_VALGRIND`)
81 #
82 #   * `NO_REBUILD=1` - Don't rebootstrap when testing std
83 #                      (and possibly other crates)
84 #   * `NO_MKFILE_DEPS=1` - Don't rebuild for modified .mk files
85 #
86 #   * `SAVE_TEMPS=1` - Use `--save-temps` flag on all `rustc` invocations
87 #   * `ASM_COMMENTS=1` - Use `-Z asm-comments`
88 #   * `TIME_PASSES=1` - Use `-Z time-passes`
89 #   * `TIME_LLVM_PASSES=1` - Use `-Z time-llvm-passes`
90 #   * `TRACE=1` - Use `-Z trace`
91 #
92 # # Rust recipes for build system success
93 #
94 #     // Modifying libstd? Use this command to run unit tests just on your change
95 #     make check-stage1-std NO_REBUILD=1 NO_BENCH=1
96 #
97 #     // Added a run-pass test? Use this to test running your test
98 #     make check-stage1-rpass TESTNAME=my-shiny-new-test
99 #
100 #     // Having trouble figuring out which test is failing? Turn off parallel tests
101 #     make check-stage1-std RUST_TEST_THREADS=1
102 #
103 #     // To make debug!() and other logging calls visible, reconfigure:
104 #     ./configure --enable-debug-assertions
105 #     make ....
106 #
107 # If you really feel like getting your hands dirty, then:
108 #
109 #     run `make nitty-gritty`
110 #
111 # </tips>
112 #
113 # <nitty-gritty>
114 #
115 # # The Rust Build System
116 #
117 # Gosh I wish there was something useful here (TODO).
118 #
119 # # An (old) explanation of how the build is structured:
120 #
121 # *Note: Hey, like, this is probably inaccurate, and is definitely
122 # an outdated and insufficient explanation of the remarkable
123 # Rust Build System.*
124 #
125 # There are multiple build stages (0-3) needed to verify that the
126 # compiler is properly self-hosting. Each stage is divided between
127 # 'host' artifacts and 'target' artifacts, where the stageN host
128 # compiler builds artifacts for 1 or more stageN target architectures.
129 # Once the stageN target compiler has been built for the host
130 # architecture it is promoted (copied) to a stageN+1 host artifact.
131 #
132 # The stage3 host compiler is a compiler that successfully builds
133 # itself and should (in theory) be bitwise identical to the stage2
134 # host compiler. The process is bootstrapped using a stage0 host
135 # compiler downloaded from a previous snapshot.
136 #
137 # At no time should stageN artifacts be interacting with artifacts
138 # from other stages. For consistency, we use the 'promotion' logic
139 # for all artifacts, even those that don't make sense on non-host
140 # architectures.
141 #
142 # The directory layout for a stage is intended to match the layout
143 # of the installed compiler, and looks like the following:
144 #
145 # stageN - this is the system root, corresponding to, e.g. /usr
146 #   bin - binaries compiled for the host
147 #   lib - libraries used by the host compiler
148 #     rustlib - rustc's own place to organize libraries
149 #       $(target) - target-specific artifacts
150 #         bin - binaries for target architectures
151 #         lib - libraries for target architectures
152 #
153 # A note about host libraries:
154 #
155 # The only libraries that get promoted to stageN/lib are those needed
156 # by rustc. In general, rust programs, even those compiled for the
157 # host architecture will use libraries from the target
158 # directories. This gives rust some freedom to experiment with how
159 # libraries are managed and versioned without polluting the common
160 # areas of the filesystem.
161 #
162 # General rust binaries may still live in the host bin directory; they
163 # will just link against the libraries in the target lib directory.
164 #
165 # Admittedly this is a little convoluted.
166 #
167 # If you find yourself working on the make infrastructure itself, and trying to
168 # find the value of a given variable after expansion, you can use:
169 #
170 # make print-VARIABLE_NAME
171 #
172 # To extract it
173 #
174 # </nitty-gritty>
175 #
176
177 ######################################################################
178 # Primary rules
179 ######################################################################
180
181 # Issue #9531: If you change the order of any of the following (or add
182 # new definitions), make sure definitions always precede their uses,
183 # especially for the dependency lists of recipes.
184
185 # First, load the variables exported by the configure script
186 include config.mk
187
188 # Just a few macros used everywhere
189 include $(CFG_SRC_DIR)mk/util.mk
190 # Reconfiguring when the makefiles or submodules change
191 include $(CFG_SRC_DIR)mk/reconfig.mk
192 # All crates and their dependencies
193 include $(CFG_SRC_DIR)mk/crates.mk
194 # Various bits of setup, common macros, and top-level rules
195 include $(CFG_SRC_DIR)mk/main.mk
196 # C and assembly components that are not LLVM
197 include $(CFG_SRC_DIR)mk/rt.mk
198 # Rules for crates in the target directories
199 include $(CFG_SRC_DIR)mk/target.mk
200 # Rules for crates in the host directories
201 include $(CFG_SRC_DIR)mk/host.mk
202 # Special rules for bootstrapping stage0
203 include $(CFG_SRC_DIR)mk/stage0.mk
204 # Rust-specific LLVM extensions
205 include $(CFG_SRC_DIR)mk/rustllvm.mk
206 # Documentation
207 include $(CFG_SRC_DIR)mk/docs.mk
208 # LLVM
209 include $(CFG_SRC_DIR)mk/llvm.mk
210 # Rules for installing debugger scripts
211 include $(CFG_SRC_DIR)mk/debuggers.mk
212
213 ######################################################################
214 # Secondary makefiles, conditionalized for speed
215 ######################################################################
216
217 # Binary snapshots
218 ifneq ($(strip $(findstring snap,$(MAKECMDGOALS))   \
219                $(findstring clean,$(MAKECMDGOALS))),)
220   CFG_INFO := $(info cfg: including snap rules)
221   include $(CFG_SRC_DIR)mk/snap.mk
222 endif
223
224 # The test suite
225 ifneq ($(strip $(findstring check,$(MAKECMDGOALS)) \
226                $(findstring test,$(MAKECMDGOALS))  \
227                $(findstring tidy,$(MAKECMDGOALS))),)
228   CFG_INFO := $(info cfg: including test rules)
229   include $(CFG_SRC_DIR)mk/tests.mk
230   include $(CFG_SRC_DIR)mk/grammar.mk
231 endif
232
233 # Copy all the distributables to another directory for binary install
234 ifneq ($(strip $(findstring prepare,$(MAKECMDGOALS)) \
235                $(findstring dist,$(MAKECMDGOALS)) \
236                $(findstring install,$(MAKECMDGOALS))),)
237   CFG_INFO := $(info cfg: including prepare rules)
238   include $(CFG_SRC_DIR)mk/prepare.mk
239 endif
240
241 # Source and binary distribution artifacts
242 ifneq ($(strip $(findstring dist,$(MAKECMDGOALS)) \
243                $(findstring install,$(MAKECMDGOALS)) \
244                $(findstring clean,$(MAKECMDGOALS))),)
245   CFG_INFO := $(info cfg: including dist rules)
246   include $(CFG_SRC_DIR)mk/dist.mk
247 endif
248
249 # (Unix) Installation from the build directory
250 ifneq ($(findstring install,$(MAKECMDGOALS)),)
251   CFG_INFO := $(info cfg: including install rules)
252   include $(CFG_SRC_DIR)mk/install.mk
253 endif
254
255 # Cleaning
256 ifneq ($(findstring clean,$(MAKECMDGOALS)),)
257   CFG_INFO := $(info cfg: including clean rules)
258   include $(CFG_SRC_DIR)mk/clean.mk
259 endif
260
261 # CTAGS building
262 ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
263                $(findstring TAGS.vi,$(MAKECMDGOALS))),)
264   CFG_INFO := $(info cfg: including ctags rules)
265   include $(CFG_SRC_DIR)mk/ctags.mk
266 endif