File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: e3b1f3c443c048913e2d573fcc5a9c2be3484a78
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 2852fea61e51752a0a7f6c2aeb8fe798a2890c4e
4
+ refs/heads/snap-stage3: ab17f445fe999bf7edf22d09b16ac7b7fd1155be
5
5
refs/heads/try: a97642026c18a624ff6ea01075dd9550f8ed07ff
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change 37
37
# (may require `CFG_ENABLE_VALGRIND`)
38
38
# * `NO_REBUILD=1` - Don't rebootstrap when testing std
39
39
# (and possibly other crates)
40
+ # * `NO_MKFILE_DEPS=1` - Don rebuild for modified .mk files
40
41
# * `SAVE_TEMPS=1` - Use `--save-temps` flag on all `rustc` invocations
41
42
# * `ASM_COMMENTS=1` - Use `-Z asm-comments`
42
43
# * `TIME_PASSES=1` - Use `-Z time-passes`
Original file line number Diff line number Diff line change 12
12
# and include all of the .d files in one fell swoop.
13
13
ALL_OBJ_FILES :=
14
14
15
+ ifneq ($(NO_MAKEFILE_DEPS ) ,)
16
+ MKFILE_DEPS :=
17
+ else
15
18
MKFILE_DEPS := config.stamp $(call rwildcard,$(CFG_SRC_DIR ) mk/,* )
19
+ endif
16
20
NON_BUILD_HOST = $(filter-out $(CFG_BUILD ) ,$(CFG_HOST ) )
17
21
NON_BUILD_TARGET = $(filter-out $(CFG_BUILD ) ,$(CFG_TARGET ) )
18
22
You can’t perform that action at this time.
0 commit comments