File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed 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