We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2852fea commit ab17f44Copy full SHA for ab17f44
Makefile.in
@@ -37,6 +37,7 @@
37
# (may require `CFG_ENABLE_VALGRIND`)
38
# * `NO_REBUILD=1` - Don't rebootstrap when testing std
39
# (and possibly other crates)
40
+# * `NO_MKFILE_DEPS=1` - Don rebuild for modified .mk files
41
# * `SAVE_TEMPS=1` - Use `--save-temps` flag on all `rustc` invocations
42
# * `ASM_COMMENTS=1` - Use `-Z asm-comments`
43
# * `TIME_PASSES=1` - Use `-Z time-passes`
mk/main.mk
@@ -12,7 +12,11 @@
12
# and include all of the .d files in one fell swoop.
13
ALL_OBJ_FILES :=
14
15
+ifneq ($(NO_MAKEFILE_DEPS),)
16
+MKFILE_DEPS :=
17
+else
18
MKFILE_DEPS := config.stamp $(call rwildcard,$(CFG_SRC_DIR)mk/,*)
19
+endif
20
NON_BUILD_HOST = $(filter-out $(CFG_BUILD),$(CFG_HOST))
21
NON_BUILD_TARGET = $(filter-out $(CFG_BUILD),$(CFG_TARGET))
22
0 commit comments